Hey, what is the maximum query count you can fetch from a table. Is it over 10k?
✅ 1
n
Nurul
10/19/2022, 10:43 AM
Hello @Kenny Tran 👋
This should be dependent on the database that you are using and also the memory that is available for the database for computation. It could happen that querying too much data in a single query could lead to an out-of-memory error.
k
Kenny Tran
10/19/2022, 10:49 AM
Okay, thanks for clarifying
🙏 1
m
Marek Urbanowicz
10/19/2022, 11:15 AM
@Kenny Tran just an advise - whenever there is an option the result can be huge, you should always limit/paginate etc. It will help you to avoid some crazy performance issue or OOMs at worst