mirror of
https://github.com/YGGverse/aquatic.git
synced 2026-03-31 17:55:36 +00:00
aquatic_common, udp, udp load test: improve cpu pinning
This commit is contained in:
parent
91a62ab73a
commit
aa332ab296
9 changed files with 142 additions and 78 deletions
4
Cargo.lock
generated
4
Cargo.lock
generated
|
|
@ -77,6 +77,7 @@ dependencies = [
|
||||||
"ahash 0.7.6",
|
"ahash 0.7.6",
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"arc-swap",
|
"arc-swap",
|
||||||
|
"core_affinity",
|
||||||
"hashbrown 0.11.2",
|
"hashbrown 0.11.2",
|
||||||
"hex",
|
"hex",
|
||||||
"indexmap-amortized",
|
"indexmap-amortized",
|
||||||
|
|
@ -166,7 +167,6 @@ dependencies = [
|
||||||
"aquatic_common",
|
"aquatic_common",
|
||||||
"aquatic_udp_protocol",
|
"aquatic_udp_protocol",
|
||||||
"cfg-if",
|
"cfg-if",
|
||||||
"core_affinity",
|
|
||||||
"crossbeam-channel",
|
"crossbeam-channel",
|
||||||
"futures-lite",
|
"futures-lite",
|
||||||
"glommio",
|
"glommio",
|
||||||
|
|
@ -206,8 +206,8 @@ version = "0.1.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"aquatic_cli_helpers",
|
"aquatic_cli_helpers",
|
||||||
|
"aquatic_common",
|
||||||
"aquatic_udp_protocol",
|
"aquatic_udp_protocol",
|
||||||
"core_affinity",
|
|
||||||
"crossbeam-channel",
|
"crossbeam-channel",
|
||||||
"hashbrown 0.11.2",
|
"hashbrown 0.11.2",
|
||||||
"mimalloc",
|
"mimalloc",
|
||||||
|
|
|
||||||
|
|
@ -14,6 +14,7 @@ name = "aquatic_common"
|
||||||
ahash = "0.7"
|
ahash = "0.7"
|
||||||
anyhow = "1"
|
anyhow = "1"
|
||||||
arc-swap = "1"
|
arc-swap = "1"
|
||||||
|
core_affinity = "0.5"
|
||||||
hashbrown = "0.11.2"
|
hashbrown = "0.11.2"
|
||||||
hex = "0.4"
|
hex = "0.4"
|
||||||
indexmap-amortized = "1"
|
indexmap-amortized = "1"
|
||||||
|
|
|
||||||
|
|
@ -1,17 +1,89 @@
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
|
|
||||||
#[derive(Clone, Debug, Serialize, Deserialize)]
|
#[derive(Clone, Debug, Serialize, Deserialize)]
|
||||||
#[serde(default)]
|
#[serde(rename_all = "lowercase")]
|
||||||
|
pub enum CpuPinningMode {
|
||||||
|
Ascending,
|
||||||
|
Descending,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Default for CpuPinningMode {
|
||||||
|
fn default() -> Self {
|
||||||
|
Self::Ascending
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Clone, Debug, Serialize, Deserialize)]
|
||||||
pub struct CpuPinningConfig {
|
pub struct CpuPinningConfig {
|
||||||
pub active: bool,
|
pub active: bool,
|
||||||
|
pub mode: CpuPinningMode,
|
||||||
pub offset: usize,
|
pub offset: usize,
|
||||||
|
pub multiple: usize,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Default for CpuPinningConfig {
|
impl Default for CpuPinningConfig {
|
||||||
fn default() -> Self {
|
fn default() -> Self {
|
||||||
Self {
|
Self {
|
||||||
active: false,
|
active: false,
|
||||||
|
mode: Default::default(),
|
||||||
offset: 0,
|
offset: 0,
|
||||||
|
multiple: 1,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl CpuPinningConfig {
|
||||||
|
pub fn default_for_load_test() -> Self {
|
||||||
|
Self {
|
||||||
|
mode: CpuPinningMode::Descending,
|
||||||
|
..Default::default()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Clone, Copy, Debug)]
|
||||||
|
pub enum WorkerIndex {
|
||||||
|
SocketWorker(usize),
|
||||||
|
RequestWorker(usize),
|
||||||
|
Other,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl WorkerIndex {
|
||||||
|
pub fn get_cpu_index(self, config: &CpuPinningConfig, socket_workers: usize) -> usize {
|
||||||
|
let index = match self {
|
||||||
|
Self::Other => config.offset,
|
||||||
|
Self::SocketWorker(index) => config.multiple * (config.offset + 1 + index),
|
||||||
|
Self::RequestWorker(index) => {
|
||||||
|
config.multiple * (config.offset + 1 + socket_workers + index)
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
let index = match config.mode {
|
||||||
|
CpuPinningMode::Ascending => index,
|
||||||
|
CpuPinningMode::Descending => {
|
||||||
|
let max = core_affinity::get_core_ids()
|
||||||
|
.map(|ids| ids.iter().map(|id| id.id).max())
|
||||||
|
.flatten()
|
||||||
|
.unwrap_or(0);
|
||||||
|
|
||||||
|
max - index
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
::log::info!("Calculated CPU pin index {} for {:?}", index, self);
|
||||||
|
|
||||||
|
index
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn pin_current_if_configured_to(
|
||||||
|
config: &CpuPinningConfig,
|
||||||
|
socket_workers: usize,
|
||||||
|
worker_index: WorkerIndex,
|
||||||
|
) {
|
||||||
|
if config.active {
|
||||||
|
core_affinity::set_for_current(core_affinity::CoreId {
|
||||||
|
id: worker_index.get_cpu_index(config, socket_workers),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,6 @@ aquatic_cli_helpers = "0.1.0"
|
||||||
aquatic_common = "0.1.0"
|
aquatic_common = "0.1.0"
|
||||||
aquatic_udp_protocol = "0.1.0"
|
aquatic_udp_protocol = "0.1.0"
|
||||||
cfg-if = "1"
|
cfg-if = "1"
|
||||||
core_affinity = "0.5"
|
|
||||||
hex = "0.4"
|
hex = "0.4"
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
mimalloc = { version = "0.1", default-features = false }
|
mimalloc = { version = "0.1", default-features = false }
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
use std::sync::{atomic::AtomicUsize, Arc};
|
use std::sync::{atomic::AtomicUsize, Arc};
|
||||||
|
|
||||||
use aquatic_common::access_list::update_access_list;
|
use aquatic_common::access_list::update_access_list;
|
||||||
|
use aquatic_common::cpu_pinning::{pin_current_if_configured_to, WorkerIndex};
|
||||||
use aquatic_common::privileges::drop_privileges_after_socket_binding;
|
use aquatic_common::privileges::drop_privileges_after_socket_binding;
|
||||||
use glommio::channels::channel_mesh::MeshBuilder;
|
use glommio::channels::channel_mesh::MeshBuilder;
|
||||||
use glommio::prelude::*;
|
use glommio::prelude::*;
|
||||||
|
|
@ -18,11 +19,11 @@ pub mod network;
|
||||||
pub const SHARED_CHANNEL_SIZE: usize = 4096;
|
pub const SHARED_CHANNEL_SIZE: usize = 4096;
|
||||||
|
|
||||||
pub fn run(config: Config) -> ::anyhow::Result<()> {
|
pub fn run(config: Config) -> ::anyhow::Result<()> {
|
||||||
if config.cpu_pinning.active {
|
pin_current_if_configured_to(
|
||||||
core_affinity::set_for_current(core_affinity::CoreId {
|
&config.cpu_pinning,
|
||||||
id: config.cpu_pinning.offset,
|
config.socket_workers,
|
||||||
});
|
WorkerIndex::Other,
|
||||||
}
|
);
|
||||||
|
|
||||||
let state = State::default();
|
let state = State::default();
|
||||||
|
|
||||||
|
|
@ -50,11 +51,11 @@ pub fn run(config: Config) -> ::anyhow::Result<()> {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn run_inner(config: Config, state: State) -> anyhow::Result<()> {
|
pub fn run_inner(config: Config, state: State) -> anyhow::Result<()> {
|
||||||
if config.cpu_pinning.active {
|
pin_current_if_configured_to(
|
||||||
core_affinity::set_for_current(core_affinity::CoreId {
|
&config.cpu_pinning,
|
||||||
id: config.cpu_pinning.offset,
|
config.socket_workers,
|
||||||
});
|
WorkerIndex::Other,
|
||||||
}
|
);
|
||||||
|
|
||||||
let num_peers = config.socket_workers + config.request_workers;
|
let num_peers = config.socket_workers + config.request_workers;
|
||||||
|
|
||||||
|
|
@ -75,7 +76,10 @@ pub fn run_inner(config: Config, state: State) -> anyhow::Result<()> {
|
||||||
let mut builder = LocalExecutorBuilder::default();
|
let mut builder = LocalExecutorBuilder::default();
|
||||||
|
|
||||||
if config.cpu_pinning.active {
|
if config.cpu_pinning.active {
|
||||||
builder = builder.pin_to_cpu(config.cpu_pinning.offset + 1 + i);
|
builder = builder.pin_to_cpu(
|
||||||
|
WorkerIndex::SocketWorker(i)
|
||||||
|
.get_cpu_index(&config.cpu_pinning, config.socket_workers),
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
let executor = builder.spawn(|| async move {
|
let executor = builder.spawn(|| async move {
|
||||||
|
|
@ -101,7 +105,10 @@ pub fn run_inner(config: Config, state: State) -> anyhow::Result<()> {
|
||||||
let mut builder = LocalExecutorBuilder::default();
|
let mut builder = LocalExecutorBuilder::default();
|
||||||
|
|
||||||
if config.cpu_pinning.active {
|
if config.cpu_pinning.active {
|
||||||
builder = builder.pin_to_cpu(config.cpu_pinning.offset + 1 + config.socket_workers + i);
|
builder = builder.pin_to_cpu(
|
||||||
|
WorkerIndex::RequestWorker(i)
|
||||||
|
.get_cpu_index(&config.cpu_pinning, config.socket_workers),
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
let executor = builder.spawn(|| async move {
|
let executor = builder.spawn(|| async move {
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,7 @@ use std::thread::Builder;
|
||||||
use std::time::Duration;
|
use std::time::Duration;
|
||||||
|
|
||||||
use anyhow::Context;
|
use anyhow::Context;
|
||||||
|
use aquatic_common::cpu_pinning::{pin_current_if_configured_to, WorkerIndex};
|
||||||
use aquatic_common::privileges::drop_privileges_after_socket_binding;
|
use aquatic_common::privileges::drop_privileges_after_socket_binding;
|
||||||
use crossbeam_channel::unbounded;
|
use crossbeam_channel::unbounded;
|
||||||
|
|
||||||
|
|
@ -20,11 +21,11 @@ pub mod tasks;
|
||||||
use common::State;
|
use common::State;
|
||||||
|
|
||||||
pub fn run(config: Config) -> ::anyhow::Result<()> {
|
pub fn run(config: Config) -> ::anyhow::Result<()> {
|
||||||
if config.cpu_pinning.active {
|
pin_current_if_configured_to(
|
||||||
core_affinity::set_for_current(core_affinity::CoreId {
|
&config.cpu_pinning,
|
||||||
id: config.cpu_pinning.offset,
|
config.socket_workers,
|
||||||
});
|
WorkerIndex::Other,
|
||||||
}
|
);
|
||||||
|
|
||||||
let state = State::default();
|
let state = State::default();
|
||||||
|
|
||||||
|
|
@ -52,11 +53,11 @@ pub fn run(config: Config) -> ::anyhow::Result<()> {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn run_inner(config: Config, state: State) -> ::anyhow::Result<()> {
|
pub fn run_inner(config: Config, state: State) -> ::anyhow::Result<()> {
|
||||||
if config.cpu_pinning.active {
|
pin_current_if_configured_to(
|
||||||
core_affinity::set_for_current(core_affinity::CoreId {
|
&config.cpu_pinning,
|
||||||
id: config.cpu_pinning.offset,
|
config.socket_workers,
|
||||||
});
|
WorkerIndex::Other,
|
||||||
}
|
);
|
||||||
|
|
||||||
let num_bound_sockets = Arc::new(AtomicUsize::new(0));
|
let num_bound_sockets = Arc::new(AtomicUsize::new(0));
|
||||||
|
|
||||||
|
|
@ -72,11 +73,11 @@ pub fn run_inner(config: Config, state: State) -> ::anyhow::Result<()> {
|
||||||
Builder::new()
|
Builder::new()
|
||||||
.name(format!("request-{:02}", i + 1))
|
.name(format!("request-{:02}", i + 1))
|
||||||
.spawn(move || {
|
.spawn(move || {
|
||||||
if config.cpu_pinning.active {
|
pin_current_if_configured_to(
|
||||||
core_affinity::set_for_current(core_affinity::CoreId {
|
&config.cpu_pinning,
|
||||||
id: config.cpu_pinning.offset + 1 + i,
|
config.socket_workers,
|
||||||
});
|
WorkerIndex::RequestWorker(i),
|
||||||
}
|
);
|
||||||
|
|
||||||
handlers::run_request_worker(state, config, request_receiver, response_sender)
|
handlers::run_request_worker(state, config, request_receiver, response_sender)
|
||||||
})
|
})
|
||||||
|
|
@ -93,11 +94,11 @@ pub fn run_inner(config: Config, state: State) -> ::anyhow::Result<()> {
|
||||||
Builder::new()
|
Builder::new()
|
||||||
.name(format!("socket-{:02}", i + 1))
|
.name(format!("socket-{:02}", i + 1))
|
||||||
.spawn(move || {
|
.spawn(move || {
|
||||||
if config.cpu_pinning.active {
|
pin_current_if_configured_to(
|
||||||
core_affinity::set_for_current(core_affinity::CoreId {
|
&config.cpu_pinning,
|
||||||
id: config.cpu_pinning.offset + 1 + config.request_workers + i,
|
config.socket_workers,
|
||||||
});
|
WorkerIndex::SocketWorker(i),
|
||||||
}
|
);
|
||||||
|
|
||||||
network::run_socket_worker(
|
network::run_socket_worker(
|
||||||
state,
|
state,
|
||||||
|
|
@ -118,11 +119,11 @@ pub fn run_inner(config: Config, state: State) -> ::anyhow::Result<()> {
|
||||||
Builder::new()
|
Builder::new()
|
||||||
.name("statistics-collector".to_string())
|
.name("statistics-collector".to_string())
|
||||||
.spawn(move || {
|
.spawn(move || {
|
||||||
if config.cpu_pinning.active {
|
pin_current_if_configured_to(
|
||||||
core_affinity::set_for_current(core_affinity::CoreId {
|
&config.cpu_pinning,
|
||||||
id: config.cpu_pinning.offset,
|
config.socket_workers,
|
||||||
});
|
WorkerIndex::Other,
|
||||||
}
|
);
|
||||||
|
|
||||||
loop {
|
loop {
|
||||||
::std::thread::sleep(Duration::from_secs(config.statistics.interval));
|
::std::thread::sleep(Duration::from_secs(config.statistics.interval));
|
||||||
|
|
|
||||||
|
|
@ -12,8 +12,8 @@ name = "aquatic_udp_load_test"
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = "1"
|
anyhow = "1"
|
||||||
aquatic_cli_helpers = "0.1.0"
|
aquatic_cli_helpers = "0.1.0"
|
||||||
|
aquatic_common = "0.1.0"
|
||||||
aquatic_udp_protocol = "0.1.0"
|
aquatic_udp_protocol = "0.1.0"
|
||||||
core_affinity = "0.5"
|
|
||||||
crossbeam-channel = "0.5"
|
crossbeam-channel = "0.5"
|
||||||
hashbrown = "0.11.2"
|
hashbrown = "0.11.2"
|
||||||
mimalloc = { version = "0.1", default-features = false }
|
mimalloc = { version = "0.1", default-features = false }
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
use std::net::SocketAddr;
|
use std::net::SocketAddr;
|
||||||
use std::sync::{atomic::AtomicUsize, Arc};
|
use std::sync::{atomic::AtomicUsize, Arc};
|
||||||
|
|
||||||
|
use aquatic_common::cpu_pinning::CpuPinningConfig;
|
||||||
use hashbrown::HashMap;
|
use hashbrown::HashMap;
|
||||||
use parking_lot::Mutex;
|
use parking_lot::Mutex;
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
|
|
@ -27,7 +28,7 @@ pub struct Config {
|
||||||
pub duration: usize,
|
pub duration: usize,
|
||||||
pub network: NetworkConfig,
|
pub network: NetworkConfig,
|
||||||
pub handler: HandlerConfig,
|
pub handler: HandlerConfig,
|
||||||
pub core_affinity: CoreAffinityConfig,
|
pub cpu_pinning: CpuPinningConfig,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Clone, Debug, Serialize, Deserialize)]
|
#[derive(Clone, Debug, Serialize, Deserialize)]
|
||||||
|
|
@ -97,13 +98,6 @@ pub struct HandlerConfig {
|
||||||
pub additional_request_factor: f64,
|
pub additional_request_factor: f64,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Clone, Debug, Serialize, Deserialize)]
|
|
||||||
#[serde(default)]
|
|
||||||
pub struct CoreAffinityConfig {
|
|
||||||
/// Set core affinities, descending from last core
|
|
||||||
pub set_affinities: bool,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl Default for Config {
|
impl Default for Config {
|
||||||
fn default() -> Self {
|
fn default() -> Self {
|
||||||
Self {
|
Self {
|
||||||
|
|
@ -113,7 +107,7 @@ impl Default for Config {
|
||||||
duration: 0,
|
duration: 0,
|
||||||
network: NetworkConfig::default(),
|
network: NetworkConfig::default(),
|
||||||
handler: HandlerConfig::default(),
|
handler: HandlerConfig::default(),
|
||||||
core_affinity: CoreAffinityConfig::default(),
|
cpu_pinning: CpuPinningConfig::default_for_load_test(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -192,11 +186,3 @@ pub struct SocketWorkerLocalStatistics {
|
||||||
pub responses_scrape: usize,
|
pub responses_scrape: usize,
|
||||||
pub responses_error: usize,
|
pub responses_error: usize,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Default for CoreAffinityConfig {
|
|
||||||
fn default() -> Self {
|
|
||||||
Self {
|
|
||||||
set_affinities: false,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,7 @@ use std::sync::{atomic::Ordering, Arc};
|
||||||
use std::thread;
|
use std::thread;
|
||||||
use std::time::{Duration, Instant};
|
use std::time::{Duration, Instant};
|
||||||
|
|
||||||
|
use aquatic_common::cpu_pinning::{pin_current_if_configured_to, WorkerIndex};
|
||||||
use crossbeam_channel::unbounded;
|
use crossbeam_channel::unbounded;
|
||||||
use hashbrown::HashMap;
|
use hashbrown::HashMap;
|
||||||
use parking_lot::Mutex;
|
use parking_lot::Mutex;
|
||||||
|
|
@ -33,15 +34,6 @@ pub fn main() {
|
||||||
impl aquatic_cli_helpers::Config for Config {}
|
impl aquatic_cli_helpers::Config for Config {}
|
||||||
|
|
||||||
fn run(config: Config) -> ::anyhow::Result<()> {
|
fn run(config: Config) -> ::anyhow::Result<()> {
|
||||||
let affinity_max = core_affinity::get_core_ids()
|
|
||||||
.map(|ids| ids.iter().map(|id| id.id).max())
|
|
||||||
.flatten()
|
|
||||||
.unwrap_or(0);
|
|
||||||
|
|
||||||
if config.core_affinity.set_affinities {
|
|
||||||
core_affinity::set_for_current(core_affinity::CoreId { id: affinity_max });
|
|
||||||
}
|
|
||||||
|
|
||||||
if config.handler.weight_announce + config.handler.weight_connect + config.handler.weight_scrape
|
if config.handler.weight_announce + config.handler.weight_connect + config.handler.weight_scrape
|
||||||
== 0
|
== 0
|
||||||
{
|
{
|
||||||
|
|
@ -50,6 +42,12 @@ fn run(config: Config) -> ::anyhow::Result<()> {
|
||||||
|
|
||||||
println!("Starting client with config: {:#?}", config);
|
println!("Starting client with config: {:#?}", config);
|
||||||
|
|
||||||
|
pin_current_if_configured_to(
|
||||||
|
&config.cpu_pinning,
|
||||||
|
config.num_socket_workers as usize,
|
||||||
|
WorkerIndex::Other,
|
||||||
|
);
|
||||||
|
|
||||||
let mut info_hashes = Vec::with_capacity(config.handler.number_of_torrents);
|
let mut info_hashes = Vec::with_capacity(config.handler.number_of_torrents);
|
||||||
|
|
||||||
for _ in 0..config.handler.number_of_torrents {
|
for _ in 0..config.handler.number_of_torrents {
|
||||||
|
|
@ -101,11 +99,11 @@ fn run(config: Config) -> ::anyhow::Result<()> {
|
||||||
let state = state.clone();
|
let state = state.clone();
|
||||||
|
|
||||||
thread::spawn(move || {
|
thread::spawn(move || {
|
||||||
if config.core_affinity.set_affinities {
|
pin_current_if_configured_to(
|
||||||
core_affinity::set_for_current(core_affinity::CoreId {
|
&config.cpu_pinning,
|
||||||
id: affinity_max - 1 - i as usize,
|
config.num_socket_workers as usize,
|
||||||
});
|
WorkerIndex::SocketWorker(i as usize),
|
||||||
}
|
);
|
||||||
|
|
||||||
run_socket_thread(state, response_sender, receiver, &config, addr, thread_id)
|
run_socket_thread(state, response_sender, receiver, &config, addr, thread_id)
|
||||||
});
|
});
|
||||||
|
|
@ -118,11 +116,11 @@ fn run(config: Config) -> ::anyhow::Result<()> {
|
||||||
let response_receiver = response_receiver.clone();
|
let response_receiver = response_receiver.clone();
|
||||||
|
|
||||||
thread::spawn(move || {
|
thread::spawn(move || {
|
||||||
if config.core_affinity.set_affinities {
|
pin_current_if_configured_to(
|
||||||
core_affinity::set_for_current(core_affinity::CoreId {
|
&config.cpu_pinning,
|
||||||
id: affinity_max - config.num_socket_workers as usize - 1 - i as usize,
|
config.num_socket_workers as usize,
|
||||||
});
|
WorkerIndex::RequestWorker(i as usize),
|
||||||
}
|
);
|
||||||
run_handler_thread(&config, state, pareto, request_senders, response_receiver)
|
run_handler_thread(&config, state, pareto, request_senders, response_receiver)
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue