diff --git a/include/dsn/dist/replication/replication.codes.h b/include/dsn/dist/replication/replication.codes.h index 692b62d774..82824f583d 100644 --- a/include/dsn/dist/replication/replication.codes.h +++ b/include/dsn/dist/replication/replication.codes.h @@ -36,6 +36,7 @@ DEFINE_THREAD_POOL_CODE(THREAD_POOL_REPLICATION_LONG) DEFINE_THREAD_POOL_CODE(THREAD_POOL_COMPACT) DEFINE_THREAD_POOL_CODE(THREAD_POOL_INGESTION) DEFINE_THREAD_POOL_CODE(THREAD_POOL_SLOG) +DEFINE_THREAD_POOL_CODE(THREAD_POOL_PLOG) #define DEFINE_STORAGE_WRITE_RPC_CODE(x, allow_batch, is_idempotent) \ DEFINE_STORAGE_RPC_CODE( \ @@ -182,13 +183,16 @@ MAKE_EVENT_CODE(LPC_BACKGROUND_BULK_LOAD, TASK_PRIORITY_COMMON) MAKE_EVENT_CODE(LPC_REPLICATION_LONG_LOW, TASK_PRIORITY_LOW) MAKE_EVENT_CODE(LPC_REPLICATION_LONG_COMMON, TASK_PRIORITY_COMMON) MAKE_EVENT_CODE(LPC_REPLICATION_LONG_HIGH, TASK_PRIORITY_HIGH) -MAKE_EVENT_CODE_AIO(LPC_WRITE_REPLICATION_LOG_PRIVATE, TASK_PRIORITY_COMMON) #undef CURRENT_THREAD_POOL #define CURRENT_THREAD_POOL THREAD_POOL_SLOG MAKE_EVENT_CODE_AIO(LPC_WRITE_REPLICATION_LOG_SHARED, TASK_PRIORITY_HIGH) #undef CURRENT_THREAD_POOL +#define CURRENT_THREAD_POOL THREAD_POOL_PLOG +MAKE_EVENT_CODE_AIO(LPC_WRITE_REPLICATION_LOG_PRIVATE, TASK_PRIORITY_COMMON) +#undef CURRENT_THREAD_POOL + // bulk load ingestion request namespace dsn { namespace apps { diff --git a/src/failure_detector/test/config-test.ini b/src/failure_detector/test/config-test.ini index 1c7d57ed3e..40cef5a490 100644 --- a/src/failure_detector/test/config-test.ini +++ b/src/failure_detector/test/config-test.ini @@ -12,7 +12,7 @@ run = true ports = count = 1 delay_seconds = 1 -pools = THREAD_POOL_DEFAULT, THREAD_POOL_DLOCK, THREAD_POOL_REPLICATION, THREAD_POOL_REPLICATION_LONG, THREAD_POOL_FDS_SERVICE,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT, THREAD_POOL_DLOCK, THREAD_POOL_REPLICATION, THREAD_POOL_REPLICATION_LONG, THREAD_POOL_FDS_SERVICE,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.server] type = test @@ -20,7 +20,7 @@ arguments = ports = 20101 run = false count = 0 -pools = THREAD_POOL_DEFAULT, THREAD_POOL_REPLICATION,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT, THREAD_POOL_REPLICATION,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.test_worker] type = worker @@ -99,10 +99,6 @@ worker_count = 8 [threadpool.THREAD_POOL_DLOCK] partitioned = true -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [zookeeper] hosts_list = localhost:12181 timeout_ms = 30000 diff --git a/src/failure_detector/test/config-whitelist-test-failed.ini b/src/failure_detector/test/config-whitelist-test-failed.ini index cbcf39a072..b0a53edbb6 100644 --- a/src/failure_detector/test/config-whitelist-test-failed.ini +++ b/src/failure_detector/test/config-whitelist-test-failed.ini @@ -12,7 +12,7 @@ run = true ports = count = 1 delay_seconds = 1 -pools = THREAD_POOL_DEFAULT, THREAD_POOL_DLOCK, THREAD_POOL_REPLICATION, THREAD_POOL_REPLICATION_LONG, THREAD_POOL_FDS_SERVICE,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT, THREAD_POOL_DLOCK, THREAD_POOL_REPLICATION, THREAD_POOL_REPLICATION_LONG, THREAD_POOL_FDS_SERVICE,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.server] type = test @@ -20,7 +20,7 @@ arguments = ports = 20101 run = false count = 0 -pools = THREAD_POOL_DEFAULT, THREAD_POOL_REPLICATION,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT, THREAD_POOL_REPLICATION,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.test_worker] type = worker diff --git a/src/failure_detector/test/config-whitelist-test.ini b/src/failure_detector/test/config-whitelist-test.ini index 4977ae7ebf..838db107c4 100644 --- a/src/failure_detector/test/config-whitelist-test.ini +++ b/src/failure_detector/test/config-whitelist-test.ini @@ -12,7 +12,7 @@ run = true ports = count = 1 delay_seconds = 1 -pools = THREAD_POOL_DEFAULT, THREAD_POOL_DLOCK, THREAD_POOL_REPLICATION, THREAD_POOL_REPLICATION_LONG, THREAD_POOL_FDS_SERVICE,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT, THREAD_POOL_DLOCK, THREAD_POOL_REPLICATION, THREAD_POOL_REPLICATION_LONG, THREAD_POOL_FDS_SERVICE,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.server] type = test @@ -20,7 +20,7 @@ arguments = ports = 20101 run = false count = 0 -pools = THREAD_POOL_DEFAULT, THREAD_POOL_REPLICATION,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT, THREAD_POOL_REPLICATION,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.test_worker] type = worker diff --git a/src/replica/backup/test/config-test.ini b/src/replica/backup/test/config-test.ini index d5dfb340e1..2b464048fc 100644 --- a/src/replica/backup/test/config-test.ini +++ b/src/replica/backup/test/config-test.ini @@ -3,7 +3,7 @@ run = true [apps.replica] type = replica -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_SLOG,THREAD_POOL_PLOG [core] tool = nativerun diff --git a/src/replica/bulk_load/test/config-test.ini b/src/replica/bulk_load/test/config-test.ini index 0d0019d373..c0566d14c4 100644 --- a/src/replica/bulk_load/test/config-test.ini +++ b/src/replica/bulk_load/test/config-test.ini @@ -10,7 +10,7 @@ type = replica run = true count = 1 ports = 54321 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_LOCAL_SERVICE,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_LOCAL_SERVICE,THREAD_POOL_SLOG,THREAD_POOL_PLOG [core] ;tool = simulator diff --git a/src/replica/duplication/test/config-test.ini b/src/replica/duplication/test/config-test.ini index 637e16a7cb..9c85141c70 100644 --- a/src/replica/duplication/test/config-test.ini +++ b/src/replica/duplication/test/config-test.ini @@ -3,7 +3,7 @@ run = true [apps.replica] type = replica -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_SLOG,THREAD_POOL_PLOG [core] tool = nativerun @@ -19,10 +19,6 @@ worker_count = 2 name = default partitioned = false -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] name = replica partitioned = true diff --git a/src/replica/mutation_log.cpp b/src/replica/mutation_log.cpp index 574972c7a9..2916aff3c5 100644 --- a/src/replica/mutation_log.cpp +++ b/src/replica/mutation_log.cpp @@ -440,7 +440,7 @@ void mutation_log_private::commit_pending_mutations(log_file_ptr &lf, _plock.unlock(); } }, - 0); + get_gpid().thread_hash()); } /////////////////////////////////////////////////////////////// diff --git a/src/replica/split/test/config-test.ini b/src/replica/split/test/config-test.ini index 64949591a2..087ffbcc16 100644 --- a/src/replica/split/test/config-test.ini +++ b/src/replica/split/test/config-test.ini @@ -10,7 +10,7 @@ type = replica run = true count = 1 ports = 54321 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_SLOG,THREAD_POOL_PLOG [core] ;tool = simulator @@ -49,10 +49,6 @@ partitioned = false worker_priority = THREAD_xPRIORITY_NORMAL worker_count = 2 -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] name = replica partitioned = true diff --git a/src/replica/storage/simple_kv/config.ini b/src/replica/storage/simple_kv/config.ini index eb6d2fe35e..33ba84ced0 100644 --- a/src/replica/storage/simple_kv/config.ini +++ b/src/replica/storage/simple_kv/config.ini @@ -20,7 +20,7 @@ arguments = ports = 34801 run = true count = 3 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.client] type = client @@ -63,10 +63,6 @@ name = default partitioned = false worker_priority = THREAD_xPRIORITY_LOWEST -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] name = replication partitioned = true diff --git a/src/replica/storage/simple_kv/test/case-000.ini b/src/replica/storage/simple_kv/test/case-000.ini index 6d6f505372..44e50eb56a 100644 --- a/src/replica/storage/simple_kv/test/case-000.ini +++ b/src/replica/storage/simple_kv/test/case-000.ini @@ -22,7 +22,7 @@ arguments = ports = 34801 run = true count = 3 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.c] type = client @@ -70,10 +70,6 @@ worker_priority = THREAD_xPRIORITY_LOWEST partitioned = false worker_priority = THREAD_xPRIORITY_LOWEST -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] partitioned = true worker_priority = THREAD_xPRIORITY_LOWEST diff --git a/src/replica/storage/simple_kv/test/case-001.ini b/src/replica/storage/simple_kv/test/case-001.ini index ba424b8531..3b1a93dbcd 100644 --- a/src/replica/storage/simple_kv/test/case-001.ini +++ b/src/replica/storage/simple_kv/test/case-001.ini @@ -22,7 +22,7 @@ arguments = ports = 34801 run = true count = 3 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.c] type = client @@ -70,10 +70,6 @@ worker_priority = THREAD_xPRIORITY_LOWEST partitioned = false worker_priority = THREAD_xPRIORITY_LOWEST -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] partitioned = true worker_priority = THREAD_xPRIORITY_LOWEST diff --git a/src/replica/storage/simple_kv/test/case-002.ini b/src/replica/storage/simple_kv/test/case-002.ini index 664c78083a..7aba6a4789 100644 --- a/src/replica/storage/simple_kv/test/case-002.ini +++ b/src/replica/storage/simple_kv/test/case-002.ini @@ -22,7 +22,7 @@ arguments = ports = 34801 run = true count = 3 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.c] type = client @@ -70,10 +70,6 @@ worker_priority = THREAD_xPRIORITY_LOWEST partitioned = false worker_priority = THREAD_xPRIORITY_LOWEST -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] partitioned = true worker_priority = THREAD_xPRIORITY_LOWEST diff --git a/src/replica/storage/simple_kv/test/case-003.ini b/src/replica/storage/simple_kv/test/case-003.ini index a3229e47b0..43fea7403c 100644 --- a/src/replica/storage/simple_kv/test/case-003.ini +++ b/src/replica/storage/simple_kv/test/case-003.ini @@ -22,7 +22,7 @@ arguments = ports = 34801 run = true count = 3 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.c] type = client @@ -70,10 +70,6 @@ worker_priority = THREAD_xPRIORITY_LOWEST partitioned = false worker_priority = THREAD_xPRIORITY_LOWEST -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] partitioned = true worker_priority = THREAD_xPRIORITY_LOWEST diff --git a/src/replica/storage/simple_kv/test/case-004.ini b/src/replica/storage/simple_kv/test/case-004.ini index dad6b2953d..4ea79ea483 100644 --- a/src/replica/storage/simple_kv/test/case-004.ini +++ b/src/replica/storage/simple_kv/test/case-004.ini @@ -22,7 +22,7 @@ arguments = ports = 34801 run = true count = 3 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.c] type = client @@ -70,10 +70,6 @@ worker_priority = THREAD_xPRIORITY_LOWEST partitioned = false worker_priority = THREAD_xPRIORITY_LOWEST -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] partitioned = true worker_priority = THREAD_xPRIORITY_LOWEST diff --git a/src/replica/storage/simple_kv/test/case-005.ini b/src/replica/storage/simple_kv/test/case-005.ini index 9bdbcfa312..5d699b32ca 100644 --- a/src/replica/storage/simple_kv/test/case-005.ini +++ b/src/replica/storage/simple_kv/test/case-005.ini @@ -22,7 +22,7 @@ arguments = ports = 34801 run = true count = 3 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.c] type = client @@ -70,10 +70,6 @@ worker_priority = THREAD_xPRIORITY_LOWEST partitioned = false worker_priority = THREAD_xPRIORITY_LOWEST -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] partitioned = true worker_priority = THREAD_xPRIORITY_LOWEST diff --git a/src/replica/storage/simple_kv/test/case-006.ini b/src/replica/storage/simple_kv/test/case-006.ini index dbef0cd863..4f23bde4ed 100644 --- a/src/replica/storage/simple_kv/test/case-006.ini +++ b/src/replica/storage/simple_kv/test/case-006.ini @@ -22,7 +22,7 @@ arguments = ports = 34801 run = true count = 3 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.c] type = client @@ -71,10 +71,6 @@ worker_priority = THREAD_xPRIORITY_LOWEST partitioned = false worker_priority = THREAD_xPRIORITY_LOWEST -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] partitioned = true worker_priority = THREAD_xPRIORITY_LOWEST diff --git a/src/replica/storage/simple_kv/test/case-100.ini b/src/replica/storage/simple_kv/test/case-100.ini index 96f9001c86..8657edd7ef 100644 --- a/src/replica/storage/simple_kv/test/case-100.ini +++ b/src/replica/storage/simple_kv/test/case-100.ini @@ -22,7 +22,7 @@ arguments = ports = 34801 run = true count = 3 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.c] type = client @@ -71,10 +71,6 @@ worker_priority = THREAD_xPRIORITY_LOWEST partitioned = false worker_priority = THREAD_xPRIORITY_LOWEST -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] partitioned = true worker_priority = THREAD_xPRIORITY_LOWEST diff --git a/src/replica/storage/simple_kv/test/case-101.ini b/src/replica/storage/simple_kv/test/case-101.ini index 96f9001c86..8657edd7ef 100644 --- a/src/replica/storage/simple_kv/test/case-101.ini +++ b/src/replica/storage/simple_kv/test/case-101.ini @@ -22,7 +22,7 @@ arguments = ports = 34801 run = true count = 3 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.c] type = client @@ -71,10 +71,6 @@ worker_priority = THREAD_xPRIORITY_LOWEST partitioned = false worker_priority = THREAD_xPRIORITY_LOWEST -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] partitioned = true worker_priority = THREAD_xPRIORITY_LOWEST diff --git a/src/replica/storage/simple_kv/test/case-102.ini b/src/replica/storage/simple_kv/test/case-102.ini index 9719f243f2..1c9233fc76 100644 --- a/src/replica/storage/simple_kv/test/case-102.ini +++ b/src/replica/storage/simple_kv/test/case-102.ini @@ -22,7 +22,7 @@ arguments = ports = 34801 run = true count = 3 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.c] type = client @@ -71,10 +71,6 @@ worker_priority = THREAD_xPRIORITY_LOWEST partitioned = false worker_priority = THREAD_xPRIORITY_LOWEST -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] partitioned = true worker_priority = THREAD_xPRIORITY_LOWEST diff --git a/src/replica/storage/simple_kv/test/case-103.ini b/src/replica/storage/simple_kv/test/case-103.ini index f5a1cd9bf6..edc012b61a 100644 --- a/src/replica/storage/simple_kv/test/case-103.ini +++ b/src/replica/storage/simple_kv/test/case-103.ini @@ -22,7 +22,7 @@ arguments = ports = 34801 run = true count = 3 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.c] type = client @@ -71,10 +71,6 @@ worker_priority = THREAD_xPRIORITY_LOWEST partitioned = false worker_priority = THREAD_xPRIORITY_LOWEST -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] partitioned = true worker_priority = THREAD_xPRIORITY_LOWEST diff --git a/src/replica/storage/simple_kv/test/case-104.ini b/src/replica/storage/simple_kv/test/case-104.ini index 96f9001c86..8657edd7ef 100644 --- a/src/replica/storage/simple_kv/test/case-104.ini +++ b/src/replica/storage/simple_kv/test/case-104.ini @@ -22,7 +22,7 @@ arguments = ports = 34801 run = true count = 3 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.c] type = client @@ -71,10 +71,6 @@ worker_priority = THREAD_xPRIORITY_LOWEST partitioned = false worker_priority = THREAD_xPRIORITY_LOWEST -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] partitioned = true worker_priority = THREAD_xPRIORITY_LOWEST diff --git a/src/replica/storage/simple_kv/test/case-105.ini b/src/replica/storage/simple_kv/test/case-105.ini index 96f9001c86..8657edd7ef 100644 --- a/src/replica/storage/simple_kv/test/case-105.ini +++ b/src/replica/storage/simple_kv/test/case-105.ini @@ -22,7 +22,7 @@ arguments = ports = 34801 run = true count = 3 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.c] type = client @@ -71,10 +71,6 @@ worker_priority = THREAD_xPRIORITY_LOWEST partitioned = false worker_priority = THREAD_xPRIORITY_LOWEST -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] partitioned = true worker_priority = THREAD_xPRIORITY_LOWEST diff --git a/src/replica/storage/simple_kv/test/case-106.ini b/src/replica/storage/simple_kv/test/case-106.ini index 96f9001c86..8657edd7ef 100644 --- a/src/replica/storage/simple_kv/test/case-106.ini +++ b/src/replica/storage/simple_kv/test/case-106.ini @@ -22,7 +22,7 @@ arguments = ports = 34801 run = true count = 3 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.c] type = client @@ -71,10 +71,6 @@ worker_priority = THREAD_xPRIORITY_LOWEST partitioned = false worker_priority = THREAD_xPRIORITY_LOWEST -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] partitioned = true worker_priority = THREAD_xPRIORITY_LOWEST diff --git a/src/replica/storage/simple_kv/test/case-107.ini b/src/replica/storage/simple_kv/test/case-107.ini index 96f9001c86..8657edd7ef 100644 --- a/src/replica/storage/simple_kv/test/case-107.ini +++ b/src/replica/storage/simple_kv/test/case-107.ini @@ -22,7 +22,7 @@ arguments = ports = 34801 run = true count = 3 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.c] type = client @@ -71,10 +71,6 @@ worker_priority = THREAD_xPRIORITY_LOWEST partitioned = false worker_priority = THREAD_xPRIORITY_LOWEST -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] partitioned = true worker_priority = THREAD_xPRIORITY_LOWEST diff --git a/src/replica/storage/simple_kv/test/case-108.ini b/src/replica/storage/simple_kv/test/case-108.ini index 96f9001c86..8657edd7ef 100644 --- a/src/replica/storage/simple_kv/test/case-108.ini +++ b/src/replica/storage/simple_kv/test/case-108.ini @@ -22,7 +22,7 @@ arguments = ports = 34801 run = true count = 3 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.c] type = client @@ -71,10 +71,6 @@ worker_priority = THREAD_xPRIORITY_LOWEST partitioned = false worker_priority = THREAD_xPRIORITY_LOWEST -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] partitioned = true worker_priority = THREAD_xPRIORITY_LOWEST diff --git a/src/replica/storage/simple_kv/test/case-109.ini b/src/replica/storage/simple_kv/test/case-109.ini index c99f76ba80..71e09be95f 100644 --- a/src/replica/storage/simple_kv/test/case-109.ini +++ b/src/replica/storage/simple_kv/test/case-109.ini @@ -22,7 +22,7 @@ arguments = ports = 34801 run = true count = 3 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.c] type = client @@ -71,10 +71,6 @@ worker_priority = THREAD_xPRIORITY_LOWEST partitioned = false worker_priority = THREAD_xPRIORITY_LOWEST -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] partitioned = true worker_priority = THREAD_xPRIORITY_LOWEST diff --git a/src/replica/storage/simple_kv/test/case-200.ini b/src/replica/storage/simple_kv/test/case-200.ini index 96f9001c86..8657edd7ef 100644 --- a/src/replica/storage/simple_kv/test/case-200.ini +++ b/src/replica/storage/simple_kv/test/case-200.ini @@ -22,7 +22,7 @@ arguments = ports = 34801 run = true count = 3 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.c] type = client @@ -71,10 +71,6 @@ worker_priority = THREAD_xPRIORITY_LOWEST partitioned = false worker_priority = THREAD_xPRIORITY_LOWEST -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] partitioned = true worker_priority = THREAD_xPRIORITY_LOWEST diff --git a/src/replica/storage/simple_kv/test/case-201.ini b/src/replica/storage/simple_kv/test/case-201.ini index 96f9001c86..8657edd7ef 100644 --- a/src/replica/storage/simple_kv/test/case-201.ini +++ b/src/replica/storage/simple_kv/test/case-201.ini @@ -22,7 +22,7 @@ arguments = ports = 34801 run = true count = 3 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.c] type = client @@ -71,10 +71,6 @@ worker_priority = THREAD_xPRIORITY_LOWEST partitioned = false worker_priority = THREAD_xPRIORITY_LOWEST -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] partitioned = true worker_priority = THREAD_xPRIORITY_LOWEST diff --git a/src/replica/storage/simple_kv/test/case-202-0.ini b/src/replica/storage/simple_kv/test/case-202-0.ini index 452c4a226b..04f7155bbc 100644 --- a/src/replica/storage/simple_kv/test/case-202-0.ini +++ b/src/replica/storage/simple_kv/test/case-202-0.ini @@ -22,7 +22,7 @@ arguments = ports = 34801 run = true count = 3 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.c] type = client @@ -71,10 +71,6 @@ worker_priority = THREAD_xPRIORITY_LOWEST partitioned = false worker_priority = THREAD_xPRIORITY_LOWEST -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] partitioned = true worker_priority = THREAD_xPRIORITY_LOWEST diff --git a/src/replica/storage/simple_kv/test/case-202-1.ini b/src/replica/storage/simple_kv/test/case-202-1.ini index 452c4a226b..04f7155bbc 100644 --- a/src/replica/storage/simple_kv/test/case-202-1.ini +++ b/src/replica/storage/simple_kv/test/case-202-1.ini @@ -22,7 +22,7 @@ arguments = ports = 34801 run = true count = 3 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.c] type = client @@ -71,10 +71,6 @@ worker_priority = THREAD_xPRIORITY_LOWEST partitioned = false worker_priority = THREAD_xPRIORITY_LOWEST -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] partitioned = true worker_priority = THREAD_xPRIORITY_LOWEST diff --git a/src/replica/storage/simple_kv/test/case-203-0.ini b/src/replica/storage/simple_kv/test/case-203-0.ini index 5bd2690822..97ef5e10c8 100644 --- a/src/replica/storage/simple_kv/test/case-203-0.ini +++ b/src/replica/storage/simple_kv/test/case-203-0.ini @@ -22,7 +22,7 @@ arguments = ports = 34801 run = true count = 3 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.c] type = client @@ -71,10 +71,6 @@ worker_priority = THREAD_xPRIORITY_LOWEST partitioned = false worker_priority = THREAD_xPRIORITY_LOWEST -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] partitioned = true worker_priority = THREAD_xPRIORITY_LOWEST diff --git a/src/replica/storage/simple_kv/test/case-203-1.ini b/src/replica/storage/simple_kv/test/case-203-1.ini index 5bd2690822..97ef5e10c8 100644 --- a/src/replica/storage/simple_kv/test/case-203-1.ini +++ b/src/replica/storage/simple_kv/test/case-203-1.ini @@ -22,7 +22,7 @@ arguments = ports = 34801 run = true count = 3 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.c] type = client @@ -71,10 +71,6 @@ worker_priority = THREAD_xPRIORITY_LOWEST partitioned = false worker_priority = THREAD_xPRIORITY_LOWEST -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] partitioned = true worker_priority = THREAD_xPRIORITY_LOWEST diff --git a/src/replica/storage/simple_kv/test/case-204.ini b/src/replica/storage/simple_kv/test/case-204.ini index 18b72046de..a33fa57279 100644 --- a/src/replica/storage/simple_kv/test/case-204.ini +++ b/src/replica/storage/simple_kv/test/case-204.ini @@ -22,7 +22,7 @@ arguments = ports = 34801 run = true count = 3 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.c] type = client @@ -71,10 +71,6 @@ worker_priority = THREAD_xPRIORITY_LOWEST partitioned = false worker_priority = THREAD_xPRIORITY_LOWEST -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] partitioned = true worker_priority = THREAD_xPRIORITY_LOWEST diff --git a/src/replica/storage/simple_kv/test/case-205.ini b/src/replica/storage/simple_kv/test/case-205.ini index 18b72046de..a33fa57279 100644 --- a/src/replica/storage/simple_kv/test/case-205.ini +++ b/src/replica/storage/simple_kv/test/case-205.ini @@ -22,7 +22,7 @@ arguments = ports = 34801 run = true count = 3 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.c] type = client @@ -71,10 +71,6 @@ worker_priority = THREAD_xPRIORITY_LOWEST partitioned = false worker_priority = THREAD_xPRIORITY_LOWEST -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] partitioned = true worker_priority = THREAD_xPRIORITY_LOWEST diff --git a/src/replica/storage/simple_kv/test/case-206.ini b/src/replica/storage/simple_kv/test/case-206.ini index 18b72046de..a33fa57279 100644 --- a/src/replica/storage/simple_kv/test/case-206.ini +++ b/src/replica/storage/simple_kv/test/case-206.ini @@ -22,7 +22,7 @@ arguments = ports = 34801 run = true count = 3 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.c] type = client @@ -71,10 +71,6 @@ worker_priority = THREAD_xPRIORITY_LOWEST partitioned = false worker_priority = THREAD_xPRIORITY_LOWEST -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] partitioned = true worker_priority = THREAD_xPRIORITY_LOWEST diff --git a/src/replica/storage/simple_kv/test/case-207.ini b/src/replica/storage/simple_kv/test/case-207.ini index 18b72046de..a33fa57279 100644 --- a/src/replica/storage/simple_kv/test/case-207.ini +++ b/src/replica/storage/simple_kv/test/case-207.ini @@ -22,7 +22,7 @@ arguments = ports = 34801 run = true count = 3 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.c] type = client @@ -71,10 +71,6 @@ worker_priority = THREAD_xPRIORITY_LOWEST partitioned = false worker_priority = THREAD_xPRIORITY_LOWEST -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] partitioned = true worker_priority = THREAD_xPRIORITY_LOWEST diff --git a/src/replica/storage/simple_kv/test/case-208.ini b/src/replica/storage/simple_kv/test/case-208.ini index 18b72046de..a33fa57279 100644 --- a/src/replica/storage/simple_kv/test/case-208.ini +++ b/src/replica/storage/simple_kv/test/case-208.ini @@ -22,7 +22,7 @@ arguments = ports = 34801 run = true count = 3 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.c] type = client @@ -71,10 +71,6 @@ worker_priority = THREAD_xPRIORITY_LOWEST partitioned = false worker_priority = THREAD_xPRIORITY_LOWEST -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] partitioned = true worker_priority = THREAD_xPRIORITY_LOWEST diff --git a/src/replica/storage/simple_kv/test/case-209.ini b/src/replica/storage/simple_kv/test/case-209.ini index 18b72046de..a33fa57279 100644 --- a/src/replica/storage/simple_kv/test/case-209.ini +++ b/src/replica/storage/simple_kv/test/case-209.ini @@ -22,7 +22,7 @@ arguments = ports = 34801 run = true count = 3 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.c] type = client @@ -71,10 +71,6 @@ worker_priority = THREAD_xPRIORITY_LOWEST partitioned = false worker_priority = THREAD_xPRIORITY_LOWEST -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] partitioned = true worker_priority = THREAD_xPRIORITY_LOWEST diff --git a/src/replica/storage/simple_kv/test/case-210.ini b/src/replica/storage/simple_kv/test/case-210.ini index da8d3e9ea0..c757146252 100644 --- a/src/replica/storage/simple_kv/test/case-210.ini +++ b/src/replica/storage/simple_kv/test/case-210.ini @@ -22,7 +22,7 @@ arguments = ports = 34801 run = true count = 3 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.c] type = client @@ -71,10 +71,6 @@ worker_priority = THREAD_xPRIORITY_LOWEST partitioned = false worker_priority = THREAD_xPRIORITY_LOWEST -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] partitioned = true worker_priority = THREAD_xPRIORITY_LOWEST diff --git a/src/replica/storage/simple_kv/test/case-211.ini b/src/replica/storage/simple_kv/test/case-211.ini index da8d3e9ea0..c757146252 100644 --- a/src/replica/storage/simple_kv/test/case-211.ini +++ b/src/replica/storage/simple_kv/test/case-211.ini @@ -22,7 +22,7 @@ arguments = ports = 34801 run = true count = 3 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.c] type = client @@ -71,10 +71,6 @@ worker_priority = THREAD_xPRIORITY_LOWEST partitioned = false worker_priority = THREAD_xPRIORITY_LOWEST -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] partitioned = true worker_priority = THREAD_xPRIORITY_LOWEST diff --git a/src/replica/storage/simple_kv/test/case-212.ini b/src/replica/storage/simple_kv/test/case-212.ini index da8d3e9ea0..c757146252 100644 --- a/src/replica/storage/simple_kv/test/case-212.ini +++ b/src/replica/storage/simple_kv/test/case-212.ini @@ -22,7 +22,7 @@ arguments = ports = 34801 run = true count = 3 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.c] type = client @@ -71,10 +71,6 @@ worker_priority = THREAD_xPRIORITY_LOWEST partitioned = false worker_priority = THREAD_xPRIORITY_LOWEST -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] partitioned = true worker_priority = THREAD_xPRIORITY_LOWEST diff --git a/src/replica/storage/simple_kv/test/case-213.ini b/src/replica/storage/simple_kv/test/case-213.ini index c1ff031c64..d6b90e39e4 100644 --- a/src/replica/storage/simple_kv/test/case-213.ini +++ b/src/replica/storage/simple_kv/test/case-213.ini @@ -22,7 +22,7 @@ arguments = ports = 34801 run = true count = 3 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.c] type = client @@ -71,10 +71,6 @@ worker_priority = THREAD_xPRIORITY_LOWEST partitioned = false worker_priority = THREAD_xPRIORITY_LOWEST -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] partitioned = true worker_priority = THREAD_xPRIORITY_LOWEST diff --git a/src/replica/storage/simple_kv/test/case-214.ini b/src/replica/storage/simple_kv/test/case-214.ini index 18b72046de..a33fa57279 100644 --- a/src/replica/storage/simple_kv/test/case-214.ini +++ b/src/replica/storage/simple_kv/test/case-214.ini @@ -22,7 +22,7 @@ arguments = ports = 34801 run = true count = 3 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.c] type = client @@ -71,10 +71,6 @@ worker_priority = THREAD_xPRIORITY_LOWEST partitioned = false worker_priority = THREAD_xPRIORITY_LOWEST -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] partitioned = true worker_priority = THREAD_xPRIORITY_LOWEST diff --git a/src/replica/storage/simple_kv/test/case-215.ini b/src/replica/storage/simple_kv/test/case-215.ini index 18b72046de..a33fa57279 100644 --- a/src/replica/storage/simple_kv/test/case-215.ini +++ b/src/replica/storage/simple_kv/test/case-215.ini @@ -22,7 +22,7 @@ arguments = ports = 34801 run = true count = 3 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.c] type = client @@ -71,10 +71,6 @@ worker_priority = THREAD_xPRIORITY_LOWEST partitioned = false worker_priority = THREAD_xPRIORITY_LOWEST -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] partitioned = true worker_priority = THREAD_xPRIORITY_LOWEST diff --git a/src/replica/storage/simple_kv/test/case-216.ini b/src/replica/storage/simple_kv/test/case-216.ini index 18b72046de..a33fa57279 100644 --- a/src/replica/storage/simple_kv/test/case-216.ini +++ b/src/replica/storage/simple_kv/test/case-216.ini @@ -22,7 +22,7 @@ arguments = ports = 34801 run = true count = 3 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.c] type = client @@ -71,10 +71,6 @@ worker_priority = THREAD_xPRIORITY_LOWEST partitioned = false worker_priority = THREAD_xPRIORITY_LOWEST -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] partitioned = true worker_priority = THREAD_xPRIORITY_LOWEST diff --git a/src/replica/storage/simple_kv/test/case-300-0.ini b/src/replica/storage/simple_kv/test/case-300-0.ini index 96f9001c86..8657edd7ef 100644 --- a/src/replica/storage/simple_kv/test/case-300-0.ini +++ b/src/replica/storage/simple_kv/test/case-300-0.ini @@ -22,7 +22,7 @@ arguments = ports = 34801 run = true count = 3 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.c] type = client @@ -71,10 +71,6 @@ worker_priority = THREAD_xPRIORITY_LOWEST partitioned = false worker_priority = THREAD_xPRIORITY_LOWEST -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] partitioned = true worker_priority = THREAD_xPRIORITY_LOWEST diff --git a/src/replica/storage/simple_kv/test/case-300-1.ini b/src/replica/storage/simple_kv/test/case-300-1.ini index 96f9001c86..8657edd7ef 100644 --- a/src/replica/storage/simple_kv/test/case-300-1.ini +++ b/src/replica/storage/simple_kv/test/case-300-1.ini @@ -22,7 +22,7 @@ arguments = ports = 34801 run = true count = 3 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.c] type = client @@ -71,10 +71,6 @@ worker_priority = THREAD_xPRIORITY_LOWEST partitioned = false worker_priority = THREAD_xPRIORITY_LOWEST -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] partitioned = true worker_priority = THREAD_xPRIORITY_LOWEST diff --git a/src/replica/storage/simple_kv/test/case-300-2.ini b/src/replica/storage/simple_kv/test/case-300-2.ini index 96f9001c86..8657edd7ef 100644 --- a/src/replica/storage/simple_kv/test/case-300-2.ini +++ b/src/replica/storage/simple_kv/test/case-300-2.ini @@ -22,7 +22,7 @@ arguments = ports = 34801 run = true count = 3 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.c] type = client @@ -71,10 +71,6 @@ worker_priority = THREAD_xPRIORITY_LOWEST partitioned = false worker_priority = THREAD_xPRIORITY_LOWEST -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] partitioned = true worker_priority = THREAD_xPRIORITY_LOWEST diff --git a/src/replica/storage/simple_kv/test/case-301.ini b/src/replica/storage/simple_kv/test/case-301.ini index 96f9001c86..8657edd7ef 100644 --- a/src/replica/storage/simple_kv/test/case-301.ini +++ b/src/replica/storage/simple_kv/test/case-301.ini @@ -22,7 +22,7 @@ arguments = ports = 34801 run = true count = 3 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.c] type = client @@ -71,10 +71,6 @@ worker_priority = THREAD_xPRIORITY_LOWEST partitioned = false worker_priority = THREAD_xPRIORITY_LOWEST -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] partitioned = true worker_priority = THREAD_xPRIORITY_LOWEST diff --git a/src/replica/storage/simple_kv/test/case-302.ini b/src/replica/storage/simple_kv/test/case-302.ini index f0e812c66a..49a5d898b0 100644 --- a/src/replica/storage/simple_kv/test/case-302.ini +++ b/src/replica/storage/simple_kv/test/case-302.ini @@ -22,7 +22,7 @@ arguments = ports = 34801 run = true count = 3 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.c] type = client @@ -71,10 +71,6 @@ worker_priority = THREAD_xPRIORITY_LOWEST partitioned = false worker_priority = THREAD_xPRIORITY_LOWEST -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] partitioned = true worker_priority = THREAD_xPRIORITY_LOWEST diff --git a/src/replica/storage/simple_kv/test/case-303.ini b/src/replica/storage/simple_kv/test/case-303.ini index 3311a8a02f..1f34fcd9e2 100644 --- a/src/replica/storage/simple_kv/test/case-303.ini +++ b/src/replica/storage/simple_kv/test/case-303.ini @@ -22,7 +22,7 @@ arguments = ports = 34801 run = true count = 3 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.c] type = client @@ -71,10 +71,6 @@ worker_priority = THREAD_xPRIORITY_LOWEST partitioned = false worker_priority = THREAD_xPRIORITY_LOWEST -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] partitioned = true worker_priority = THREAD_xPRIORITY_LOWEST diff --git a/src/replica/storage/simple_kv/test/case-304.ini b/src/replica/storage/simple_kv/test/case-304.ini index 96f9001c86..8657edd7ef 100644 --- a/src/replica/storage/simple_kv/test/case-304.ini +++ b/src/replica/storage/simple_kv/test/case-304.ini @@ -22,7 +22,7 @@ arguments = ports = 34801 run = true count = 3 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.c] type = client @@ -71,10 +71,6 @@ worker_priority = THREAD_xPRIORITY_LOWEST partitioned = false worker_priority = THREAD_xPRIORITY_LOWEST -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] partitioned = true worker_priority = THREAD_xPRIORITY_LOWEST diff --git a/src/replica/storage/simple_kv/test/case-305.ini b/src/replica/storage/simple_kv/test/case-305.ini index 3311a8a02f..1f34fcd9e2 100644 --- a/src/replica/storage/simple_kv/test/case-305.ini +++ b/src/replica/storage/simple_kv/test/case-305.ini @@ -22,7 +22,7 @@ arguments = ports = 34801 run = true count = 3 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.c] type = client @@ -71,10 +71,6 @@ worker_priority = THREAD_xPRIORITY_LOWEST partitioned = false worker_priority = THREAD_xPRIORITY_LOWEST -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] partitioned = true worker_priority = THREAD_xPRIORITY_LOWEST diff --git a/src/replica/storage/simple_kv/test/case-306.ini b/src/replica/storage/simple_kv/test/case-306.ini index 96f9001c86..8657edd7ef 100644 --- a/src/replica/storage/simple_kv/test/case-306.ini +++ b/src/replica/storage/simple_kv/test/case-306.ini @@ -22,7 +22,7 @@ arguments = ports = 34801 run = true count = 3 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.c] type = client @@ -71,10 +71,6 @@ worker_priority = THREAD_xPRIORITY_LOWEST partitioned = false worker_priority = THREAD_xPRIORITY_LOWEST -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] partitioned = true worker_priority = THREAD_xPRIORITY_LOWEST diff --git a/src/replica/storage/simple_kv/test/case-307.ini b/src/replica/storage/simple_kv/test/case-307.ini index 96f9001c86..8657edd7ef 100644 --- a/src/replica/storage/simple_kv/test/case-307.ini +++ b/src/replica/storage/simple_kv/test/case-307.ini @@ -22,7 +22,7 @@ arguments = ports = 34801 run = true count = 3 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.c] type = client @@ -71,10 +71,6 @@ worker_priority = THREAD_xPRIORITY_LOWEST partitioned = false worker_priority = THREAD_xPRIORITY_LOWEST -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] partitioned = true worker_priority = THREAD_xPRIORITY_LOWEST diff --git a/src/replica/storage/simple_kv/test/case-400.ini b/src/replica/storage/simple_kv/test/case-400.ini index 96f9001c86..8657edd7ef 100644 --- a/src/replica/storage/simple_kv/test/case-400.ini +++ b/src/replica/storage/simple_kv/test/case-400.ini @@ -22,7 +22,7 @@ arguments = ports = 34801 run = true count = 3 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.c] type = client @@ -71,10 +71,6 @@ worker_priority = THREAD_xPRIORITY_LOWEST partitioned = false worker_priority = THREAD_xPRIORITY_LOWEST -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] partitioned = true worker_priority = THREAD_xPRIORITY_LOWEST diff --git a/src/replica/storage/simple_kv/test/case-401.ini b/src/replica/storage/simple_kv/test/case-401.ini index 96f9001c86..8657edd7ef 100644 --- a/src/replica/storage/simple_kv/test/case-401.ini +++ b/src/replica/storage/simple_kv/test/case-401.ini @@ -22,7 +22,7 @@ arguments = ports = 34801 run = true count = 3 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.c] type = client @@ -71,10 +71,6 @@ worker_priority = THREAD_xPRIORITY_LOWEST partitioned = false worker_priority = THREAD_xPRIORITY_LOWEST -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] partitioned = true worker_priority = THREAD_xPRIORITY_LOWEST diff --git a/src/replica/storage/simple_kv/test/case-402.ini b/src/replica/storage/simple_kv/test/case-402.ini index 96f9001c86..8657edd7ef 100644 --- a/src/replica/storage/simple_kv/test/case-402.ini +++ b/src/replica/storage/simple_kv/test/case-402.ini @@ -22,7 +22,7 @@ arguments = ports = 34801 run = true count = 3 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.c] type = client @@ -71,10 +71,6 @@ worker_priority = THREAD_xPRIORITY_LOWEST partitioned = false worker_priority = THREAD_xPRIORITY_LOWEST -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] partitioned = true worker_priority = THREAD_xPRIORITY_LOWEST diff --git a/src/replica/storage/simple_kv/test/case-600.ini b/src/replica/storage/simple_kv/test/case-600.ini index dbef0cd863..4f23bde4ed 100644 --- a/src/replica/storage/simple_kv/test/case-600.ini +++ b/src/replica/storage/simple_kv/test/case-600.ini @@ -22,7 +22,7 @@ arguments = ports = 34801 run = true count = 3 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.c] type = client @@ -71,10 +71,6 @@ worker_priority = THREAD_xPRIORITY_LOWEST partitioned = false worker_priority = THREAD_xPRIORITY_LOWEST -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] partitioned = true worker_priority = THREAD_xPRIORITY_LOWEST diff --git a/src/replica/storage/simple_kv/test/case-601.ini b/src/replica/storage/simple_kv/test/case-601.ini index fb7571a2f5..548c257061 100644 --- a/src/replica/storage/simple_kv/test/case-601.ini +++ b/src/replica/storage/simple_kv/test/case-601.ini @@ -22,7 +22,7 @@ arguments = ports = 34801 run = true count = 3 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.c] type = client @@ -71,10 +71,6 @@ worker_priority = THREAD_xPRIORITY_LOWEST partitioned = false worker_priority = THREAD_xPRIORITY_LOWEST -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] partitioned = true worker_priority = THREAD_xPRIORITY_LOWEST diff --git a/src/replica/storage/simple_kv/test/case-602.ini b/src/replica/storage/simple_kv/test/case-602.ini index dbef0cd863..4f23bde4ed 100644 --- a/src/replica/storage/simple_kv/test/case-602.ini +++ b/src/replica/storage/simple_kv/test/case-602.ini @@ -22,7 +22,7 @@ arguments = ports = 34801 run = true count = 3 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.c] type = client @@ -71,10 +71,6 @@ worker_priority = THREAD_xPRIORITY_LOWEST partitioned = false worker_priority = THREAD_xPRIORITY_LOWEST -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] partitioned = true worker_priority = THREAD_xPRIORITY_LOWEST diff --git a/src/replica/storage/simple_kv/test/case-603.ini b/src/replica/storage/simple_kv/test/case-603.ini index 6f8c5329b8..29e23ec134 100644 --- a/src/replica/storage/simple_kv/test/case-603.ini +++ b/src/replica/storage/simple_kv/test/case-603.ini @@ -22,7 +22,7 @@ arguments = ports = 34801 run = true count = 3 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.c] type = client @@ -71,10 +71,6 @@ worker_priority = THREAD_xPRIORITY_LOWEST partitioned = false worker_priority = THREAD_xPRIORITY_LOWEST -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] partitioned = true worker_priority = THREAD_xPRIORITY_LOWEST diff --git a/src/replica/storage/simple_kv/test/config.ini b/src/replica/storage/simple_kv/test/config.ini index 158db7de54..a5bf5abd94 100644 --- a/src/replica/storage/simple_kv/test/config.ini +++ b/src/replica/storage/simple_kv/test/config.ini @@ -28,7 +28,7 @@ arguments = ports = 34801 run = true count = 3 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_FD,THREAD_POOL_LOCAL_APP,THREAD_POOL_SLOG,THREAD_POOL_PLOG hosted_app_type_name = simple_kv hosted_app_arguments = @@ -85,10 +85,6 @@ name = default partitioned = false worker_priority = THREAD_xPRIORITY_LOWEST -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] name = replication partitioned = true diff --git a/src/replica/test/config-test.ini b/src/replica/test/config-test.ini index 64949591a2..087ffbcc16 100644 --- a/src/replica/test/config-test.ini +++ b/src/replica/test/config-test.ini @@ -10,7 +10,7 @@ type = replica run = true count = 1 ports = 54321 -pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT,THREAD_POOL_REPLICATION_LONG,THREAD_POOL_REPLICATION,THREAD_POOL_SLOG,THREAD_POOL_PLOG [core] ;tool = simulator @@ -49,10 +49,6 @@ partitioned = false worker_priority = THREAD_xPRIORITY_NORMAL worker_count = 2 -[threadpool.THREAD_POOL_SLOG] - name = slog - worker_count = 1 - [threadpool.THREAD_POOL_REPLICATION] name = replica partitioned = true diff --git a/src/zookeeper/test/config-test.ini b/src/zookeeper/test/config-test.ini index 462874a24a..38ede0c257 100644 --- a/src/zookeeper/test/config-test.ini +++ b/src/zookeeper/test/config-test.ini @@ -12,7 +12,7 @@ run = true ports = count = 1 delay_seconds = 1 -pools = THREAD_POOL_DEFAULT, THREAD_POOL_DLOCK, THREAD_POOL_REPLICATION, THREAD_POOL_REPLICATION_LONG,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT, THREAD_POOL_DLOCK, THREAD_POOL_REPLICATION, THREAD_POOL_REPLICATION_LONG,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.server] type = test @@ -20,7 +20,7 @@ arguments = ports = 20101 run = false count = 0 -pools = THREAD_POOL_DEFAULT, THREAD_POOL_REPLICATION,THREAD_POOL_SLOG +pools = THREAD_POOL_DEFAULT, THREAD_POOL_REPLICATION,THREAD_POOL_SLOG,THREAD_POOL_PLOG [apps.add_server] type = adder