aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/server/shared_threading_service.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'searchcore/src/vespa/searchcore/proton/server/shared_threading_service.cpp')
-rw-r--r--searchcore/src/vespa/searchcore/proton/server/shared_threading_service.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/searchcore/src/vespa/searchcore/proton/server/shared_threading_service.cpp b/searchcore/src/vespa/searchcore/proton/server/shared_threading_service.cpp
index 26c296fdb90..45b5ec2ef48 100644
--- a/searchcore/src/vespa/searchcore/proton/server/shared_threading_service.cpp
+++ b/searchcore/src/vespa/searchcore/proton/server/shared_threading_service.cpp
@@ -2,7 +2,6 @@
#include "shared_threading_service.h"
#include <vespa/vespalib/util/blockingthreadstackexecutor.h>
-#include <vespa/vespalib/util/threadstackexecutor.h>
#include <vespa/vespalib/util/cpu_usage.h>
#include <vespa/vespalib/util/sequencedtaskexecutor.h>
#include <vespa/vespalib/util/invokeserviceimpl.h>
@@ -21,9 +20,6 @@ SharedThreadingService::SharedThreadingService(const SharedThreadingServiceConfi
FNET_Transport& transport,
storage::spi::BucketExecutor& bucket_executor)
: _transport(transport),
- _warmup(std::make_unique<vespalib::ThreadStackExecutor>(cfg.warmup_threads(),
- CpuUsage::wrap(proton_warmup_executor, CpuUsage::Category::COMPACT),
- cfg.shared_task_limit())),
_shared(std::make_shared<vespalib::BlockingThreadStackExecutor>(cfg.shared_threads(),
cfg.shared_task_limit(), vespalib::be_nice(proton_shared_executor, cfg.feeding_niceness()))),
_field_writer(),
@@ -51,7 +47,6 @@ SharedThreadingService::~SharedThreadingService() = default;
void
SharedThreadingService::sync_all_executors() {
- _warmup->sync();
_shared->sync();
if (_field_writer) {
_field_writer->sync_all();