All Questions
2 questions
0
votes
1
answer
2k
views
speeding up query with sqlAlchemy and asyncio in Python
I'm new to python and i am trying to do a task that requires to query a mysql table of 50 millions records join with another table to match the data and finally group by to determine the count of ...
27
votes
3
answers
5k
views
How to handle SQLAlchemy Connections in ProcessPool?
I have a reactor that fetches messages from a RabbitMQ broker and triggers worker methods to process these messages in a process pool, something like this:
This is implemented using python asyncio, ...