Hello,
I'm having some performance issues with Ecto, i have a table which can have a bit more data, up to 64k per row, and it seems queries take a bit too long, like for 7000 rows it takes about 150 seconds, while connecting to the same db and giving the same query in psycopg2(python) takes only about 8-9 seconds.
I've tried different queries from the simple MyApp.Repo.all to selecting individual columns and also different table layouts, like having the data split in multiple columns or all in one column and it seems the main thing that affects speed, is the overall amount of data retrieved.
Anyone has any advice or tips for speeding queries with Ecto?
Thanks