diff --git a/include/dsn/internal/task.h b/include/dsn/internal/task.h index 52349642a3..ae9fb255c5 100644 --- a/include/dsn/internal/task.h +++ b/include/dsn/internal/task.h @@ -292,8 +292,7 @@ class rpc_request_task : public task, public transient_object rpc_request_task(message_ex* request, rpc_handler_info* h, service_node* node); ~rpc_request_task(); - message_ex* get_request() const - { return _request; } + message_ex* get_request() const { return _request; } void enqueue() override; diff --git a/src/apps/echo.csharp/config.ini b/src/apps/echo.csharp/config.ini index e7e3dde3ed..6ce956e924 100644 --- a/src/apps/echo.csharp/config.ini +++ b/src/apps/echo.csharp/config.ini @@ -54,7 +54,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_call_header_format_name = dsn rpc_timeout_milliseconds = 5000 perf_test_rounds = 10000 diff --git a/src/apps/echo/config.ini b/src/apps/echo/config.ini index 4c5d19de89..c4598ee991 100644 --- a/src/apps/echo/config.ini +++ b/src/apps/echo/config.ini @@ -224,8 +224,6 @@ message_crc_required = false ; whether the task can be executed inlined with the caller task allow_inline = false -; whether the rpc task can be executed in network threads directly -fast_execution_in_network_thread = false ; is_profile = true @@ -273,8 +271,6 @@ is_trace = false ; whether the task can be executed inlined with the caller task allow_inline = false -; whether the rpc task can be executed in network threads directly -fast_execution_in_network_thread = false ; thread pool to execute the task pool_code = @@ -296,8 +292,6 @@ rpc_timeout_milliseconds = 5000 ; whether the task can be executed inlined with the caller task allow_inline = false -; whether the rpc task can be executed in network threads directly -fast_execution_in_network_thread = false ; thread pool to execute the task pool_code = @@ -319,8 +313,6 @@ rpc_timeout_milliseconds = 5000 ; whether the task can be executed inlined with the caller task allow_inline = false -; whether the rpc task can be executed in network threads directly -fast_execution_in_network_thread = false ; thread pool to execute the task pool_code = @@ -342,8 +334,6 @@ rpc_timeout_milliseconds = 5000 ; whether the task can be executed inlined with the caller task allow_inline = false -; whether the rpc task can be executed in network threads directly -fast_execution_in_network_thread = false ; thread pool to execute the task pool_code = @@ -365,8 +355,6 @@ rpc_timeout_milliseconds = 5000 ; whether the task can be executed inlined with the caller task allow_inline = false -; whether the rpc task can be executed in network threads directly -fast_execution_in_network_thread = false ; thread pool to execute the task pool_code = @@ -388,8 +376,6 @@ rpc_timeout_milliseconds = 5000 ; whether the task can be executed inlined with the caller task allow_inline = false -; whether the rpc task can be executed in network threads directly -fast_execution_in_network_thread = false ; thread pool to execute the task pool_code = @@ -411,8 +397,6 @@ rpc_timeout_milliseconds = 5000 ; whether the task can be executed inlined with the caller task allow_inline = false -; whether the rpc task can be executed in network threads directly -fast_execution_in_network_thread = false ; thread pool to execute the task pool_code = @@ -434,8 +418,6 @@ rpc_timeout_milliseconds = 5000 ; whether the task can be executed inlined with the caller task allow_inline = false -; whether the rpc task can be executed in network threads directly -fast_execution_in_network_thread = false ; thread pool to execute the task pool_code = @@ -457,8 +439,6 @@ rpc_timeout_milliseconds = 5000 ; whether the task can be executed inlined with the caller task allow_inline = false -; whether the rpc task can be executed in network threads directly -fast_execution_in_network_thread = false ; is_profile = false @@ -486,8 +466,6 @@ rpc_timeout_milliseconds = 5000 ; whether the task can be executed inlined with the caller task allow_inline = false -; whether the rpc task can be executed in network threads directly -fast_execution_in_network_thread = false ; thread pool to execute the task pool_code = @@ -509,8 +487,6 @@ rpc_timeout_milliseconds = 5000 ; whether the task can be executed inlined with the caller task allow_inline = false -; whether the rpc task can be executed in network threads directly -fast_execution_in_network_thread = false ; thread pool to execute the task pool_code = @@ -532,8 +508,6 @@ rpc_timeout_milliseconds = 5000 ; whether the task can be executed inlined with the caller task allow_inline = false -; whether the rpc task can be executed in network threads directly -fast_execution_in_network_thread = false ; byte size of each rpc request test perf_test_payload_bytes = @@ -561,8 +535,6 @@ rpc_timeout_milliseconds = 5000 ; whether the task can be executed inlined with the caller task allow_inline = false -; whether the rpc task can be executed in network threads directly -fast_execution_in_network_thread = false ; thread pool to execute the task pool_code = @@ -584,8 +556,6 @@ rpc_timeout_milliseconds = 5000 ; whether the task can be executed inlined with the caller task allow_inline = false -; whether the rpc task can be executed in network threads directly -fast_execution_in_network_thread = false ; thread pool to execute the task pool_code = @@ -607,8 +577,6 @@ rpc_timeout_milliseconds = 5000 ; whether the task can be executed inlined with the caller task allow_inline = false -; whether the rpc task can be executed in network threads directly -fast_execution_in_network_thread = false ; thread pool to execute the task pool_code = @@ -630,8 +598,6 @@ rpc_timeout_milliseconds = 5000 ; whether the task can be executed inlined with the caller task allow_inline = false -; whether the rpc task can be executed in network threads directly -fast_execution_in_network_thread = false ; thread pool to execute the task pool_code = @@ -653,8 +619,6 @@ rpc_timeout_milliseconds = 5000 ; whether the task can be executed inlined with the caller task allow_inline = false -; whether the rpc task can be executed in network threads directly -fast_execution_in_network_thread = false ; thread pool to execute the task pool_code = diff --git a/src/apps/nfs_test/config.ini b/src/apps/nfs_test/config.ini index 416d553b7b..9cb9164355 100644 --- a/src/apps/nfs_test/config.ini +++ b/src/apps/nfs_test/config.ini @@ -61,7 +61,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/apps/skv.dll/config.ini b/src/apps/skv.dll/config.ini index 1a61985c97..4081ddbb7f 100644 --- a/src/apps/skv.dll/config.ini +++ b/src/apps/skv.dll/config.ini @@ -104,7 +104,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/apps/skv/config-docker.ini b/src/apps/skv/config-docker.ini index cf6b198321..bfa654c4e8 100644 --- a/src/apps/skv/config-docker.ini +++ b/src/apps/skv/config-docker.ini @@ -121,7 +121,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/apps/skv/config-zk.ini b/src/apps/skv/config-zk.ini index 73e1bd37f1..11e4c0272f 100644 --- a/src/apps/skv/config-zk.ini +++ b/src/apps/skv/config-zk.ini @@ -113,7 +113,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/apps/skv/config.ini b/src/apps/skv/config.ini index 8d3ae2c672..3f2fb7b5ff 100644 --- a/src/apps/skv/config.ini +++ b/src/apps/skv/config.ini @@ -107,7 +107,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 rpc_message_delay_ms_min = 1 diff --git a/src/apps/skv/config.l1.ini b/src/apps/skv/config.l1.ini index 27516a2f64..8b14931ce8 100644 --- a/src/apps/skv/config.l1.ini +++ b/src/apps/skv/config.l1.ini @@ -84,7 +84,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/apps/skv/perf-config.ini b/src/apps/skv/perf-config.ini index 904f9b6d22..03de590853 100644 --- a/src/apps/skv/perf-config.ini +++ b/src/apps/skv/perf-config.ini @@ -115,7 +115,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/apps/skv/vconfig.ini b/src/apps/skv/vconfig.ini index 381267f044..22cacbe157 100644 --- a/src/apps/skv/vconfig.ini +++ b/src/apps/skv/vconfig.ini @@ -103,7 +103,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/core/core/task.cpp b/src/core/core/task.cpp index b750e82a7e..4d65719739 100644 --- a/src/core/core/task.cpp +++ b/src/core/core/task.cpp @@ -462,10 +462,12 @@ void task::enqueue(task_worker_pool* pool) { tools::node_scoper ns(_node); exec_internal(); + return; } else { exec_internal(); + return; } //if (_spec->type == TASK_TYPE_COMPUTE) @@ -474,12 +476,13 @@ void task::enqueue(task_worker_pool* pool) // { // tools::node_scoper ns(_node); // exec_internal(); + // return; // } // else // { // exec_internal(); + // return; // } - // return; //} //// io tasks only inlined in io threads @@ -540,7 +543,8 @@ rpc_request_task::rpc_request_task(message_ex* request, rpc_handler_info* h, ser : task(dsn_task_code_t(h->code), // it is possible that request->local_rpc_code != h->code when it is handled in frameworks nullptr, [](void*) { dassert(false, "rpc request task cannot be cancelled"); }, - static_cast(request->header->client.hash), node), + static_cast(request->header->client.hash), + node), _request(request), _handler(h), _enqueue_ts_ns(0) diff --git a/src/core/perf.tests/config-test.ini b/src/core/perf.tests/config-test.ini index 4b83680491..a486ff55a4 100644 --- a/src/core/perf.tests/config-test.ini +++ b/src/core/perf.tests/config-test.ini @@ -59,7 +59,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/core/tests/config-test-corrupt-message.ini b/src/core/tests/config-test-corrupt-message.ini index 474d1cd5a0..a5ee720c8c 100644 --- a/src/core/tests/config-test-corrupt-message.ini +++ b/src/core/tests/config-test-corrupt-message.ini @@ -61,7 +61,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 1000 diff --git a/src/core/tests/config-test-fastrun.ini b/src/core/tests/config-test-fastrun.ini index 252ead7351..8f3ac924b1 100644 --- a/src/core/tests/config-test-fastrun.ini +++ b/src/core/tests/config-test-fastrun.ini @@ -51,7 +51,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 1000 diff --git a/src/core/tests/config-test-posix-aio.ini b/src/core/tests/config-test-posix-aio.ini index 44a8aec0eb..bec00bd1f3 100644 --- a/src/core/tests/config-test-posix-aio.ini +++ b/src/core/tests/config-test-posix-aio.ini @@ -48,7 +48,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 1000 diff --git a/src/core/tests/config-test-sim.ini b/src/core/tests/config-test-sim.ini index 84d3a40dc5..6ee2f42da2 100644 --- a/src/core/tests/config-test-sim.ini +++ b/src/core/tests/config-test-sim.ini @@ -67,7 +67,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 1000 diff --git a/src/core/tests/config-test.ini b/src/core/tests/config-test.ini index 61dffc96fa..f0cc663c33 100644 --- a/src/core/tests/config-test.ini +++ b/src/core/tests/config-test.ini @@ -77,7 +77,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 1000 diff --git a/src/dist/app_daemon/config.ini b/src/dist/app_daemon/config.ini index 8da00edc11..1dd5e21a25 100644 --- a/src/dist/app_daemon/config.ini +++ b/src/dist/app_daemon/config.ini @@ -106,7 +106,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/dist/cluster_scheduler/docker/config.ini b/src/dist/cluster_scheduler/docker/config.ini index 02d8197dcb..a2ff52f3cc 100644 --- a/src/dist/cluster_scheduler/docker/config.ini +++ b/src/dist/cluster_scheduler/docker/config.ini @@ -67,7 +67,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/dist/cluster_scheduler/kubernetes/config.ini b/src/dist/cluster_scheduler/kubernetes/config.ini index 02d8197dcb..a2ff52f3cc 100644 --- a/src/dist/cluster_scheduler/kubernetes/config.ini +++ b/src/dist/cluster_scheduler/kubernetes/config.ini @@ -67,7 +67,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/dist/deployment_service/config.ini b/src/dist/deployment_service/config.ini index c8b24f30ad..a202f55f23 100644 --- a/src/dist/deployment_service/config.ini +++ b/src/dist/deployment_service/config.ini @@ -91,7 +91,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_call_header_format_name = dsn rpc_timeout_milliseconds = 5000 perf_test_rounds = 10000 diff --git a/src/dist/replication/ddl_client/config.ini b/src/dist/replication/ddl_client/config.ini index b9c57309e5..e54fbe622b 100644 --- a/src/dist/replication/ddl_client/config.ini +++ b/src/dist/replication/ddl_client/config.ini @@ -65,7 +65,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_call_header_format_name = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/dist/replication/test/meta_test/unit_test/config-test.ini b/src/dist/replication/test/meta_test/unit_test/config-test.ini index 82c515521f..5568254ca1 100644 --- a/src/dist/replication/test/meta_test/unit_test/config-test.ini +++ b/src/dist/replication/test/meta_test/unit_test/config-test.ini @@ -49,7 +49,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/dist/replication/test/simple_kv/case-000.ini b/src/dist/replication/test/simple_kv/case-000.ini index ea87738493..542996d2ed 100644 --- a/src/dist/replication/test/simple_kv/case-000.ini +++ b/src/dist/replication/test/simple_kv/case-000.ini @@ -92,7 +92,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/dist/replication/test/simple_kv/case-001.ini b/src/dist/replication/test/simple_kv/case-001.ini index bc59368830..1cdd943a6e 100644 --- a/src/dist/replication/test/simple_kv/case-001.ini +++ b/src/dist/replication/test/simple_kv/case-001.ini @@ -92,7 +92,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/dist/replication/test/simple_kv/case-002.ini b/src/dist/replication/test/simple_kv/case-002.ini index 3c958d6252..610d697c5a 100644 --- a/src/dist/replication/test/simple_kv/case-002.ini +++ b/src/dist/replication/test/simple_kv/case-002.ini @@ -92,7 +92,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/dist/replication/test/simple_kv/case-003.ini b/src/dist/replication/test/simple_kv/case-003.ini index f6e9cc5885..11f174b220 100644 --- a/src/dist/replication/test/simple_kv/case-003.ini +++ b/src/dist/replication/test/simple_kv/case-003.ini @@ -92,7 +92,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/dist/replication/test/simple_kv/case-004.ini b/src/dist/replication/test/simple_kv/case-004.ini index 31a5c78547..2011e24e1a 100644 --- a/src/dist/replication/test/simple_kv/case-004.ini +++ b/src/dist/replication/test/simple_kv/case-004.ini @@ -92,7 +92,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/dist/replication/test/simple_kv/case-005.ini b/src/dist/replication/test/simple_kv/case-005.ini index 9bf4cc6191..da0e067703 100644 --- a/src/dist/replication/test/simple_kv/case-005.ini +++ b/src/dist/replication/test/simple_kv/case-005.ini @@ -92,7 +92,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/dist/replication/test/simple_kv/case-100.ini b/src/dist/replication/test/simple_kv/case-100.ini index ea87738493..542996d2ed 100644 --- a/src/dist/replication/test/simple_kv/case-100.ini +++ b/src/dist/replication/test/simple_kv/case-100.ini @@ -92,7 +92,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/dist/replication/test/simple_kv/case-101.ini b/src/dist/replication/test/simple_kv/case-101.ini index ea87738493..542996d2ed 100644 --- a/src/dist/replication/test/simple_kv/case-101.ini +++ b/src/dist/replication/test/simple_kv/case-101.ini @@ -92,7 +92,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/dist/replication/test/simple_kv/case-102.ini b/src/dist/replication/test/simple_kv/case-102.ini index d3e09af152..53ec6b6cfd 100644 --- a/src/dist/replication/test/simple_kv/case-102.ini +++ b/src/dist/replication/test/simple_kv/case-102.ini @@ -92,7 +92,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/dist/replication/test/simple_kv/case-103.ini b/src/dist/replication/test/simple_kv/case-103.ini index 2d00be71ef..3419c819cd 100644 --- a/src/dist/replication/test/simple_kv/case-103.ini +++ b/src/dist/replication/test/simple_kv/case-103.ini @@ -92,7 +92,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/dist/replication/test/simple_kv/case-104.ini b/src/dist/replication/test/simple_kv/case-104.ini index ea87738493..542996d2ed 100644 --- a/src/dist/replication/test/simple_kv/case-104.ini +++ b/src/dist/replication/test/simple_kv/case-104.ini @@ -92,7 +92,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/dist/replication/test/simple_kv/case-105.ini b/src/dist/replication/test/simple_kv/case-105.ini index ea87738493..542996d2ed 100644 --- a/src/dist/replication/test/simple_kv/case-105.ini +++ b/src/dist/replication/test/simple_kv/case-105.ini @@ -92,7 +92,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/dist/replication/test/simple_kv/case-106.ini b/src/dist/replication/test/simple_kv/case-106.ini index ea87738493..542996d2ed 100644 --- a/src/dist/replication/test/simple_kv/case-106.ini +++ b/src/dist/replication/test/simple_kv/case-106.ini @@ -92,7 +92,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/dist/replication/test/simple_kv/case-107.ini b/src/dist/replication/test/simple_kv/case-107.ini index ea87738493..542996d2ed 100644 --- a/src/dist/replication/test/simple_kv/case-107.ini +++ b/src/dist/replication/test/simple_kv/case-107.ini @@ -92,7 +92,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/dist/replication/test/simple_kv/case-108.ini b/src/dist/replication/test/simple_kv/case-108.ini index ea87738493..542996d2ed 100644 --- a/src/dist/replication/test/simple_kv/case-108.ini +++ b/src/dist/replication/test/simple_kv/case-108.ini @@ -92,7 +92,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/dist/replication/test/simple_kv/case-200.ini b/src/dist/replication/test/simple_kv/case-200.ini index ea87738493..542996d2ed 100644 --- a/src/dist/replication/test/simple_kv/case-200.ini +++ b/src/dist/replication/test/simple_kv/case-200.ini @@ -92,7 +92,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/dist/replication/test/simple_kv/case-201.ini b/src/dist/replication/test/simple_kv/case-201.ini index ea87738493..542996d2ed 100644 --- a/src/dist/replication/test/simple_kv/case-201.ini +++ b/src/dist/replication/test/simple_kv/case-201.ini @@ -92,7 +92,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/dist/replication/test/simple_kv/case-202-0.ini b/src/dist/replication/test/simple_kv/case-202-0.ini index 67a341b9ba..5c9a23a072 100644 --- a/src/dist/replication/test/simple_kv/case-202-0.ini +++ b/src/dist/replication/test/simple_kv/case-202-0.ini @@ -92,7 +92,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/dist/replication/test/simple_kv/case-202-1.ini b/src/dist/replication/test/simple_kv/case-202-1.ini index 67a341b9ba..5c9a23a072 100644 --- a/src/dist/replication/test/simple_kv/case-202-1.ini +++ b/src/dist/replication/test/simple_kv/case-202-1.ini @@ -92,7 +92,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/dist/replication/test/simple_kv/case-203-0.ini b/src/dist/replication/test/simple_kv/case-203-0.ini index 261c11ea96..971a5d5cef 100644 --- a/src/dist/replication/test/simple_kv/case-203-0.ini +++ b/src/dist/replication/test/simple_kv/case-203-0.ini @@ -92,7 +92,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/dist/replication/test/simple_kv/case-203-1.ini b/src/dist/replication/test/simple_kv/case-203-1.ini index 261c11ea96..971a5d5cef 100644 --- a/src/dist/replication/test/simple_kv/case-203-1.ini +++ b/src/dist/replication/test/simple_kv/case-203-1.ini @@ -92,7 +92,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/dist/replication/test/simple_kv/case-204.ini b/src/dist/replication/test/simple_kv/case-204.ini index 5a2a26f6ea..9e7f6eb3a3 100644 --- a/src/dist/replication/test/simple_kv/case-204.ini +++ b/src/dist/replication/test/simple_kv/case-204.ini @@ -92,7 +92,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/dist/replication/test/simple_kv/case-205.ini b/src/dist/replication/test/simple_kv/case-205.ini index 5a2a26f6ea..9e7f6eb3a3 100644 --- a/src/dist/replication/test/simple_kv/case-205.ini +++ b/src/dist/replication/test/simple_kv/case-205.ini @@ -92,7 +92,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/dist/replication/test/simple_kv/case-206.ini b/src/dist/replication/test/simple_kv/case-206.ini index 5a2a26f6ea..9e7f6eb3a3 100644 --- a/src/dist/replication/test/simple_kv/case-206.ini +++ b/src/dist/replication/test/simple_kv/case-206.ini @@ -92,7 +92,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/dist/replication/test/simple_kv/case-207.ini b/src/dist/replication/test/simple_kv/case-207.ini index 5a2a26f6ea..9e7f6eb3a3 100644 --- a/src/dist/replication/test/simple_kv/case-207.ini +++ b/src/dist/replication/test/simple_kv/case-207.ini @@ -92,7 +92,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/dist/replication/test/simple_kv/case-208.ini b/src/dist/replication/test/simple_kv/case-208.ini index 5a2a26f6ea..9e7f6eb3a3 100644 --- a/src/dist/replication/test/simple_kv/case-208.ini +++ b/src/dist/replication/test/simple_kv/case-208.ini @@ -92,7 +92,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/dist/replication/test/simple_kv/case-209.ini b/src/dist/replication/test/simple_kv/case-209.ini index 5a2a26f6ea..9e7f6eb3a3 100644 --- a/src/dist/replication/test/simple_kv/case-209.ini +++ b/src/dist/replication/test/simple_kv/case-209.ini @@ -92,7 +92,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/dist/replication/test/simple_kv/case-210.ini b/src/dist/replication/test/simple_kv/case-210.ini index 48face270c..e24f5fe1f2 100644 --- a/src/dist/replication/test/simple_kv/case-210.ini +++ b/src/dist/replication/test/simple_kv/case-210.ini @@ -92,7 +92,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/dist/replication/test/simple_kv/case-211.ini b/src/dist/replication/test/simple_kv/case-211.ini index 48face270c..e24f5fe1f2 100644 --- a/src/dist/replication/test/simple_kv/case-211.ini +++ b/src/dist/replication/test/simple_kv/case-211.ini @@ -92,7 +92,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/dist/replication/test/simple_kv/case-212.ini b/src/dist/replication/test/simple_kv/case-212.ini index 48face270c..e24f5fe1f2 100644 --- a/src/dist/replication/test/simple_kv/case-212.ini +++ b/src/dist/replication/test/simple_kv/case-212.ini @@ -92,7 +92,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/dist/replication/test/simple_kv/case-213.ini b/src/dist/replication/test/simple_kv/case-213.ini index 642de98422..1e3ed335af 100644 --- a/src/dist/replication/test/simple_kv/case-213.ini +++ b/src/dist/replication/test/simple_kv/case-213.ini @@ -92,7 +92,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/dist/replication/test/simple_kv/case-214.ini b/src/dist/replication/test/simple_kv/case-214.ini index 5a2a26f6ea..9e7f6eb3a3 100644 --- a/src/dist/replication/test/simple_kv/case-214.ini +++ b/src/dist/replication/test/simple_kv/case-214.ini @@ -92,7 +92,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/dist/replication/test/simple_kv/case-215.ini b/src/dist/replication/test/simple_kv/case-215.ini index 5a2a26f6ea..9e7f6eb3a3 100644 --- a/src/dist/replication/test/simple_kv/case-215.ini +++ b/src/dist/replication/test/simple_kv/case-215.ini @@ -92,7 +92,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/dist/replication/test/simple_kv/case-216.ini b/src/dist/replication/test/simple_kv/case-216.ini index 5a2a26f6ea..9e7f6eb3a3 100644 --- a/src/dist/replication/test/simple_kv/case-216.ini +++ b/src/dist/replication/test/simple_kv/case-216.ini @@ -92,7 +92,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/dist/replication/test/simple_kv/case-300-0.ini b/src/dist/replication/test/simple_kv/case-300-0.ini index ea87738493..542996d2ed 100644 --- a/src/dist/replication/test/simple_kv/case-300-0.ini +++ b/src/dist/replication/test/simple_kv/case-300-0.ini @@ -92,7 +92,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/dist/replication/test/simple_kv/case-300-1.ini b/src/dist/replication/test/simple_kv/case-300-1.ini index ea87738493..542996d2ed 100644 --- a/src/dist/replication/test/simple_kv/case-300-1.ini +++ b/src/dist/replication/test/simple_kv/case-300-1.ini @@ -92,7 +92,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/dist/replication/test/simple_kv/case-300-2.ini b/src/dist/replication/test/simple_kv/case-300-2.ini index ea87738493..542996d2ed 100644 --- a/src/dist/replication/test/simple_kv/case-300-2.ini +++ b/src/dist/replication/test/simple_kv/case-300-2.ini @@ -92,7 +92,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/dist/replication/test/simple_kv/case-301.ini b/src/dist/replication/test/simple_kv/case-301.ini index ea87738493..542996d2ed 100644 --- a/src/dist/replication/test/simple_kv/case-301.ini +++ b/src/dist/replication/test/simple_kv/case-301.ini @@ -92,7 +92,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/dist/replication/test/simple_kv/case-302.ini b/src/dist/replication/test/simple_kv/case-302.ini index add85a7e6c..929921253a 100644 --- a/src/dist/replication/test/simple_kv/case-302.ini +++ b/src/dist/replication/test/simple_kv/case-302.ini @@ -92,7 +92,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/dist/replication/test/simple_kv/case-303.ini b/src/dist/replication/test/simple_kv/case-303.ini index 87b316a5ed..e2d40ab674 100644 --- a/src/dist/replication/test/simple_kv/case-303.ini +++ b/src/dist/replication/test/simple_kv/case-303.ini @@ -92,7 +92,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/dist/replication/test/simple_kv/case-304.ini b/src/dist/replication/test/simple_kv/case-304.ini index ea87738493..542996d2ed 100644 --- a/src/dist/replication/test/simple_kv/case-304.ini +++ b/src/dist/replication/test/simple_kv/case-304.ini @@ -92,7 +92,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/dist/replication/test/simple_kv/case-305.ini b/src/dist/replication/test/simple_kv/case-305.ini index 87b316a5ed..e2d40ab674 100644 --- a/src/dist/replication/test/simple_kv/case-305.ini +++ b/src/dist/replication/test/simple_kv/case-305.ini @@ -92,7 +92,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/dist/replication/test/simple_kv/case-306.ini b/src/dist/replication/test/simple_kv/case-306.ini index ea87738493..542996d2ed 100644 --- a/src/dist/replication/test/simple_kv/case-306.ini +++ b/src/dist/replication/test/simple_kv/case-306.ini @@ -92,7 +92,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/dist/replication/test/simple_kv/case-307.ini b/src/dist/replication/test/simple_kv/case-307.ini index ea87738493..542996d2ed 100644 --- a/src/dist/replication/test/simple_kv/case-307.ini +++ b/src/dist/replication/test/simple_kv/case-307.ini @@ -92,7 +92,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/dist/replication/test/simple_kv/case-400.ini b/src/dist/replication/test/simple_kv/case-400.ini index ea87738493..542996d2ed 100644 --- a/src/dist/replication/test/simple_kv/case-400.ini +++ b/src/dist/replication/test/simple_kv/case-400.ini @@ -92,7 +92,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/dist/replication/test/simple_kv/case-401.ini b/src/dist/replication/test/simple_kv/case-401.ini index ea87738493..542996d2ed 100644 --- a/src/dist/replication/test/simple_kv/case-401.ini +++ b/src/dist/replication/test/simple_kv/case-401.ini @@ -92,7 +92,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/dist/replication/test/simple_kv/case-402.ini b/src/dist/replication/test/simple_kv/case-402.ini index ea87738493..542996d2ed 100644 --- a/src/dist/replication/test/simple_kv/case-402.ini +++ b/src/dist/replication/test/simple_kv/case-402.ini @@ -92,7 +92,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/dist/replication/test/simple_kv/config.ini b/src/dist/replication/test/simple_kv/config.ini index 504be22e8e..26e683917d 100644 --- a/src/dist/replication/test/simple_kv/config.ini +++ b/src/dist/replication/test/simple_kv/config.ini @@ -105,7 +105,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/tests/dsn/config-test.ini b/src/tests/dsn/config-test.ini index 1b45b75931..c5381da0cc 100644 --- a/src/tests/dsn/config-test.ini +++ b/src/tests/dsn/config-test.ini @@ -84,7 +84,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/tools/cli/config.ini b/src/tools/cli/config.ini index 7245476b1e..16542061a8 100644 --- a/src/tools/cli/config.ini +++ b/src/tools/cli/config.ini @@ -34,7 +34,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/tools/repli/config.ini b/src/tools/repli/config.ini index 8d4ed0f4f0..ef3fc8b809 100644 --- a/src/tools/repli/config.ini +++ b/src/tools/repli/config.ini @@ -43,7 +43,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/src/tools/svchost/config.ini b/src/tools/svchost/config.ini index 7245476b1e..16542061a8 100644 --- a/src/tools/svchost/config.ini +++ b/src/tools/svchost/config.ini @@ -34,7 +34,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_message_header_format = dsn rpc_timeout_milliseconds = 5000 diff --git a/tutorial/counter.test/config.ini b/tutorial/counter.test/config.ini index bfbd6c513e..32453e5423 100644 --- a/tutorial/counter.test/config.ini +++ b/tutorial/counter.test/config.ini @@ -75,7 +75,6 @@ is_trace = true is_profile = true allow_inline = false rpc_call_channel = RPC_CHANNEL_TCP -fast_execution_in_network_thread = false rpc_call_header_format_name = dsn rpc_timeout_milliseconds = 5000 perf_test_rounds = 10000