Increase slow start time in test to make valgrind tests pass

pull/2833/head
Marco Slot 2019-07-08 06:04:13 +02:00
parent b09ee85408
commit 70434bc716
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ SELECT create_distributed_table('test','x');
INSERT INTO test VALUES (1,2); INSERT INTO test VALUES (1,2);
INSERT INTO test VALUES (3,2); INSERT INTO test VALUES (3,2);
-- Set a very high slow start to avoid opening parallel connections -- Set a very high slow start to avoid opening parallel connections
SET citus.executor_slow_start_interval TO '1s'; SET citus.executor_slow_start_interval TO '60s';
SET citus.max_adaptive_executor_pool_size TO 2; SET citus.max_adaptive_executor_pool_size TO 2;
SET citus.task_executor_type TO 'adaptive'; SET citus.task_executor_type TO 'adaptive';
BEGIN; BEGIN;

View File

@ -11,7 +11,7 @@ INSERT INTO test VALUES (1,2);
INSERT INTO test VALUES (3,2); INSERT INTO test VALUES (3,2);
-- Set a very high slow start to avoid opening parallel connections -- Set a very high slow start to avoid opening parallel connections
SET citus.executor_slow_start_interval TO '1s'; SET citus.executor_slow_start_interval TO '60s';
SET citus.max_adaptive_executor_pool_size TO 2; SET citus.max_adaptive_executor_pool_size TO 2;
SET citus.task_executor_type TO 'adaptive'; SET citus.task_executor_type TO 'adaptive';