We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95bc11a commit b23d046Copy full SHA for b23d046
query/src/test/java/tech/ydb/query/impl/ResourcePoolTest.java
@@ -96,7 +96,7 @@ private Status selectWithPool(String poolName) {
96
private Status createResourcePool(String poolName) {
97
String createPool = "CREATE RESOURCE POOL " + poolName + " WITH ("
98
+ "CONCURRENT_QUERY_LIMIT=10,"
99
- + "QUEUE_SIZE=1000,"
+ + "QUEUE_SIZE=\"-1\","
100
+ "DATABASE_LOAD_CPU_THRESHOLD=20);";
101
return retryCtx.supplyResult(s -> s.createQuery(createPool, TxMode.NONE).execute()).join().getStatus();
102
}
0 commit comments