Concurrent query limitations.

Copper Contributor

Hi there,

I'm currently using kusto and concurrently running more than 25 queries. Aftre starting to querying more I receive message related to change the number of concurrent queries, then after reviewing the documentation I run this portion of code:

 
.alter-merge workload_group default ```
{
  "RequestRateLimitPolicies": [
    {
      "IsEnabled": true,
      "Scope": "WorkloadGroup",
      "LimitKind": "ConcurrentRequests",
      "Properties": {
        "MaxConcurrentRequests": 100
      }
    }
  ]
}```

But the MaxConcurrentRequests still maintains it's original value: 25. Does some body knows why?.

Thanks

0 Replies