sergiodebcn
sergiodebcn

Reputation: 310

Limit server resources for a query in RethinkDB

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

Answers (1)

mlucy
mlucy

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

Related Questions