View the original community article here
Last Tested: Jan 21, 2020
If we have a situation where it seems like we might be hitting the per-user query limit and have access to logs, we can grep for throttled
to see if we are. For example:
$ grep 'throttled' log_file.log 2020-01-06 00:26:19.772 +0000 [INFO|1d30d6|query_manager] :: slug 00bcfe100583e2b495bec55464304c1e is throttled. Count = 15, Max = 15 2020-01-06 00:26:19.803 +0000 [INFO|1d30cc|query_manager] :: slug b343a792f53ed9566c50ea4234e8d152 is throttled. Count = 15, Max = 15 2020-01-06 00:26:19.807 +0000 [INFO|1d30d4|query_manager] :: slug a9dab41e28cee63a1906bc913bee6a76 is throttled. Count = 15, Max = 15
This will give us a helpful thread ID that we can further grep on for our investigation.
This content is subject to limited support.