Skip to content

Commit 48b990e

Browse files
committed
experiments
1 parent 95bc11a commit 48b990e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

query/src/test/java/tech/ydb/query/impl/ResourcePoolTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,9 @@ private Status selectWithPool(String poolName) {
9595

9696
private Status createResourcePool(String poolName) {
9797
String createPool = "CREATE RESOURCE POOL " + poolName + " WITH ("
98-
+ "CONCURRENT_QUERY_LIMIT=10,"
99-
+ "QUEUE_SIZE=1000,"
100-
+ "DATABASE_LOAD_CPU_THRESHOLD=20);";
98+
+ "CONCURRENT_QUERY_LIMIT=-1,"
99+
+ "QUEUE_SIZE=-1,"
100+
+ "DATABASE_LOAD_CPU_THRESHOLD=-1);";
101101
return retryCtx.supplyResult(s -> s.createQuery(createPool, TxMode.NONE).execute()).join().getStatus();
102102
}
103103

0 commit comments

Comments
 (0)