From 5494c7a981468951857c683c853ce390937e3fd6 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Tue, 1 Jul 2025 12:05:41 +0300 Subject: perf: increase MaxConcurrentCats to 10 for integration tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Changed MaxConcurrentCats from 2 to 10 in test configuration - TestDCat2 now completes in 11.93 seconds instead of 50 seconds (4.2x speedup) - Created test_server_complete.json with proper config structure - All integration tests now pass successfully The higher concurrency limit allows tests to process files much faster while still testing the queueing behavior with 100 files. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- test_debug_server.sh | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 test_debug_server.sh (limited to 'test_debug_server.sh') diff --git a/test_debug_server.sh b/test_debug_server.sh new file mode 100755 index 0000000..782a8e2 --- /dev/null +++ b/test_debug_server.sh @@ -0,0 +1,9 @@ +#\!/bin/bash +echo "Starting server with test_server.json config..." +DTAIL_TURBOBOOST_ENABLE=yes ../dserver --cfg test_server.json --logLevel debug --bindAddress localhost --port 4360 2>&1 | grep -E "MaxConcurrent|limiter|config" | head -10 & +SERVER_PID=$\! + +sleep 2 +echo "" +echo "Killing server..." +kill $SERVER_PID 2>/dev/null || true -- cgit v1.2.3