Reputation: 310
I want to run a heavy query and somehow limit the resources it uses, so it never affects other client's queries.
Is it possible?
Upvotes: 1
Views: 38
Reputation: 5289
This is currently not possible. You could use sharding to make the query not affect other queries that are reading totally different data, but there's no way right now to prioritize between different queries operating on the same data.
Upvotes: 1