-
Notifications
You must be signed in to change notification settings - Fork 124
/
local_worker.rs
675 lines (632 loc) · 31.1 KB
/
local_worker.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
// Copyright 2024 The NativeLink Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
use std::pin::Pin;
use std::process::Stdio;
use std::str;
use std::sync::atomic::{AtomicU64, Ordering};
use std::sync::{Arc, Weak};
use std::time::Duration;
use futures::future::BoxFuture;
use futures::stream::FuturesUnordered;
use futures::{select, Future, FutureExt, StreamExt, TryFutureExt};
use nativelink_config::cas_server::LocalWorkerConfig;
use nativelink_error::{make_err, make_input_err, Code, Error, ResultExt};
use nativelink_metric::{MetricsComponent, RootMetricsComponent};
use nativelink_proto::com::github::trace_machina::nativelink::remote_execution::update_for_worker::Update;
use nativelink_proto::com::github::trace_machina::nativelink::remote_execution::worker_api_client::WorkerApiClient;
use nativelink_proto::com::github::trace_machina::nativelink::remote_execution::{
execute_result, ExecuteResult, KeepAliveRequest, UpdateForWorker,
};
use nativelink_store::fast_slow_store::FastSlowStore;
use nativelink_util::action_messages::{ActionResult, ActionStage};
use nativelink_util::common::fs;
use nativelink_util::digest_hasher::{DigestHasherFunc, ACTIVE_HASHER_FUNC};
use nativelink_util::metrics_utils::{AsyncCounterWrapper, CounterWithTime};
use nativelink_util::origin_context::ActiveOriginContext;
use nativelink_util::store_trait::Store;
use nativelink_util::{spawn, tls_utils};
use tokio::process;
use tokio::sync::mpsc;
use tokio::time::sleep;
use tokio_stream::wrappers::UnboundedReceiverStream;
use tonic::Streaming;
use tracing::{event, info_span, instrument, Level};
use crate::running_actions_manager::{
ExecutionConfiguration, Metrics as RunningActionManagerMetrics, RunningAction,
RunningActionsManager, RunningActionsManagerArgs, RunningActionsManagerImpl,
};
use crate::worker_api_client_wrapper::{WorkerApiClientTrait, WorkerApiClientWrapper};
use crate::worker_utils::make_supported_properties;
/// Amount of time to wait if we have actions in transit before we try to
/// consider an error to have occurred.
const ACTIONS_IN_TRANSIT_TIMEOUT_S: f32 = 10.;
/// If we loose connection to the worker api server we will wait this many seconds
/// before trying to connect.
const CONNECTION_RETRY_DELAY_S: f32 = 0.5;
/// Default endpoint timeout. If this value gets modified the documentation in
/// `cas_server.rs` must also be updated.
const DEFAULT_ENDPOINT_TIMEOUT_S: f32 = 5.;
/// Default maximum amount of time a task is allowed to run for.
/// If this value gets modified the documentation in `cas_server.rs` must also be updated.
const DEFAULT_MAX_ACTION_TIMEOUT: Duration = Duration::from_secs(1200); // 20 mins.
struct LocalWorkerImpl<'a, T: WorkerApiClientTrait, U: RunningActionsManager> {
config: &'a LocalWorkerConfig,
// According to the tonic documentation it is a cheap operation to clone this.
grpc_client: T,
worker_id: String,
running_actions_manager: Arc<U>,
// Number of actions that have been received in `Update::StartAction`, but
// not yet processed by running_actions_manager's spawn. This number should
// always be zero if there are no actions running and no actions being waited
// on by the scheduler.
actions_in_transit: Arc<AtomicU64>,
metrics: Arc<Metrics>,
}
async fn preconditions_met(precondition_script: Option<String>) -> Result<(), Error> {
let Some(precondition_script) = &precondition_script else {
// No script means we are always ok to proceed.
return Ok(());
};
// TODO: Might want to pass some information about the command to the
// script, but at this point it's not even been downloaded yet,
// so that's not currently possible. Perhaps we'll move this in
// future to pass useful information through? Or perhaps we'll
// have a pre-condition and a pre-execute script instead, although
// arguably entrypoint already gives us that.
let precondition_process = process::Command::new(precondition_script)
.kill_on_drop(true)
.stdin(Stdio::null())
.stdout(Stdio::piped())
.stderr(Stdio::null())
.env_clear()
.spawn()
.err_tip(|| format!("Could not execute precondition command {precondition_script:?}"))?;
let output = precondition_process.wait_with_output().await?;
if output.status.code() == Some(0) {
Ok(())
} else {
Err(make_err!(
Code::ResourceExhausted,
"Preconditions script returned status {} - {}",
output.status,
str::from_utf8(&output.stdout).unwrap_or("")
))
}
}
impl<'a, T: WorkerApiClientTrait, U: RunningActionsManager> LocalWorkerImpl<'a, T, U> {
fn new(
config: &'a LocalWorkerConfig,
grpc_client: T,
worker_id: String,
running_actions_manager: Arc<U>,
metrics: Arc<Metrics>,
) -> Self {
Self {
config,
grpc_client,
worker_id,
running_actions_manager,
// Number of actions that have been received in `Update::StartAction`, but
// not yet processed by running_actions_manager's spawn. This number should
// always be zero if there are no actions running and no actions being waited
// on by the scheduler.
actions_in_transit: Arc::new(AtomicU64::new(0)),
metrics,
}
}
/// Starts a background spawn/thread that will send a message to the server every `timeout / 2`.
async fn start_keep_alive(&self) -> Result<(), Error> {
// According to tonic's documentation this call should be cheap and is the same stream.
let mut grpc_client = self.grpc_client.clone();
loop {
let timeout = self
.config
.worker_api_endpoint
.timeout
.unwrap_or(DEFAULT_ENDPOINT_TIMEOUT_S);
// We always send 2 keep alive requests per timeout. Http2 should manage most of our
// timeout issues, this is a secondary check to ensure we can still send data.
sleep(Duration::from_secs_f32(timeout / 2.)).await;
if let Err(e) = grpc_client
.keep_alive(KeepAliveRequest {
worker_id: self.worker_id.clone(),
})
.await
{
return Err(make_err!(
Code::Internal,
"Failed to send KeepAlive in LocalWorker : {:?}",
e
));
}
}
}
async fn run(
&mut self,
update_for_worker_stream: Streaming<UpdateForWorker>,
) -> Result<(), Error> {
// This big block of logic is designed to help simplify upstream components. Upstream
// components can write standard futures that return a `Result<(), Error>` and this block
// will forward the error up to the client and disconnect from the scheduler.
// It is a common use case that an item sent through update_for_worker_stream will always
// have a response but the response will be triggered through a callback to the scheduler.
// This can be quite tricky to manage, so what we have done here is given access to a
// `futures` variable which because this is in a single thread as well as a channel that you
// send a future into that makes it into the `futures` variable.
// This means that if you want to perform an action based on the result of the future
// you use the `.map()` method and the new action will always come to live in this spawn,
// giving mutable access to stuff in this struct.
// NOTE: If you ever return from this function it will disconnect from the scheduler.
let mut futures = FuturesUnordered::new();
futures.push(self.start_keep_alive().boxed());
let (add_future_channel, add_future_rx) = mpsc::unbounded_channel();
let mut add_future_rx = UnboundedReceiverStream::new(add_future_rx).fuse();
let mut update_for_worker_stream = update_for_worker_stream.fuse();
loop {
select! {
maybe_update = update_for_worker_stream.next() => {
match maybe_update
.err_tip(|| "UpdateForWorker stream closed early")?
.err_tip(|| "Got error in UpdateForWorker stream")?
.update
.err_tip(|| "Expected update to exist in UpdateForWorker")?
{
Update::ConnectionResult(_) => {
return Err(make_input_err!(
"Got ConnectionResult in LocalWorker::run which should never happen"
));
}
// TODO(allada) We should possibly do something with this notification.
Update::Disconnect(()) => {
self.metrics.disconnects_received.inc();
}
Update::KeepAlive(()) => {
self.metrics.keep_alives_received.inc();
}
Update::KillOperationRequest(kill_operation_request) => {
let operation_id_res = kill_operation_request
.operation_id
.as_str()
.try_into();
let operation_id = match operation_id_res {
Ok(operation_id) => operation_id,
Err(err) => {
event!(
Level::ERROR,
?kill_operation_request,
?err,
"Failed to convert string to operation_id"
);
continue;
}
};
if let Err(err) = self.running_actions_manager.kill_operation(&operation_id).await {
event!(
Level::ERROR,
?operation_id,
?err,
"Failed to send kill request for operation"
);
};
}
Update::StartAction(start_execute) => {
self.metrics.start_actions_received.inc();
let execute_request = start_execute.execute_request.as_ref();
let operation_id = start_execute.operation_id.clone();
let maybe_instance_name = execute_request.map(|v| v.instance_name.clone());
let action_digest = execute_request.and_then(|v| v.action_digest.clone());
let digest_hasher = execute_request
.ok_or(make_input_err!("Expected execute_request to be set"))
.and_then(|v| DigestHasherFunc::try_from(v.digest_function))
.err_tip(|| "In LocalWorkerImpl::new()")?;
let start_action_fut = {
let precondition_script_cfg = self.config.experimental_precondition_script.clone();
let actions_in_transit = self.actions_in_transit.clone();
let worker_id = self.worker_id.clone();
let running_actions_manager = self.running_actions_manager.clone();
self.metrics.clone().wrap(move |metrics| async move {
metrics.preconditions.wrap(preconditions_met(precondition_script_cfg))
.and_then(|_| running_actions_manager.create_and_add_action(worker_id, start_execute))
.map(move |r| {
// Now that we either failed or registered our action, we can
// consider the action to no longer be in transit.
actions_in_transit.fetch_sub(1, Ordering::Release);
r
})
.and_then(|action| {
event!(
Level::INFO,
operation_id = ?action.get_operation_id(),
"Received request to run action"
);
action
.clone()
.prepare_action()
.and_then(RunningAction::execute)
.and_then(RunningAction::upload_results)
.and_then(RunningAction::get_finished_result)
// Note: We need ensure we run cleanup even if one of the other steps fail.
.then(|result| async move {
if let Err(e) = action.cleanup().await {
return Result::<ActionResult, Error>::Err(e).merge(result);
}
result
})
}).await
})
};
let make_publish_future = {
let mut grpc_client = self.grpc_client.clone();
let worker_id = self.worker_id.clone();
let running_actions_manager = self.running_actions_manager.clone();
move |res: Result<ActionResult, Error>| async move {
let instance_name = maybe_instance_name
.err_tip(|| "`instance_name` could not be resolved; this is likely an internal error in local_worker.")?;
match res {
Ok(mut action_result) => {
// Save in the action cache before notifying the scheduler that we've completed.
if let Some(digest_info) = action_digest.clone().and_then(|action_digest| action_digest.try_into().ok()) {
if let Err(err) = running_actions_manager.cache_action_result(digest_info, &mut action_result, digest_hasher).await {
event!(
Level::ERROR,
?err,
?action_digest,
"Error saving action in store",
);
}
}
let action_stage = ActionStage::Completed(action_result);
grpc_client.execution_response(
ExecuteResult{
worker_id,
instance_name,
operation_id,
result: Some(execute_result::Result::ExecuteResponse(action_stage.into())),
}
)
.await
.err_tip(|| "Error while calling execution_response")?;
},
Err(e) => {
grpc_client.execution_response(ExecuteResult{
worker_id,
instance_name,
operation_id,
result: Some(execute_result::Result::InternalError(e.into())),
}).await.err_tip(|| "Error calling execution_response with error")?;
},
}
Ok(())
}
};
self.actions_in_transit.fetch_add(1, Ordering::Release);
let futures_ref = &futures;
let add_future_channel = add_future_channel.clone();
let mut ctx = ActiveOriginContext::fork().err_tip(|| "Expected ActiveOriginContext to be set in local_worker::run")?;
ctx.set_value(&ACTIVE_HASHER_FUNC, Arc::new(digest_hasher));
ctx.run(info_span!("worker_start_action_ctx"), move || {
futures_ref.push(
spawn!("worker_start_action", start_action_fut).map(move |res| {
let res = res.err_tip(|| "Failed to launch spawn")?;
if let Err(err) = &res {
event!(
Level::ERROR,
?err,
"Error executing action",
);
}
add_future_channel
.send(make_publish_future(res).boxed())
.map_err(|_| make_err!(Code::Internal, "LocalWorker could not send future"))?;
Ok(())
})
.boxed()
);
});
}
};
},
res = add_future_rx.next() => {
let fut = res.err_tip(|| "New future stream receives should never be closed")?;
futures.push(fut);
},
res = futures.next() => res.err_tip(|| "Keep-alive should always pending. Likely unable to send data to scheduler")??,
};
}
// Unreachable.
}
}
type ConnectionFactory<T> = Box<dyn Fn() -> BoxFuture<'static, Result<T, Error>> + Send + Sync>;
pub struct LocalWorker<T: WorkerApiClientTrait, U: RunningActionsManager> {
config: Arc<LocalWorkerConfig>,
running_actions_manager: Arc<U>,
connection_factory: ConnectionFactory<T>,
sleep_fn: Option<Box<dyn Fn(Duration) -> BoxFuture<'static, ()> + Send + Sync>>,
metrics: Arc<Metrics>,
}
/// Creates a new `LocalWorker`. The `cas_store` must be an instance of
/// `FastSlowStore` and will be checked at runtime.
pub async fn new_local_worker(
config: Arc<LocalWorkerConfig>,
cas_store: Store,
ac_store: Option<Store>,
historical_store: Store,
) -> Result<
(
LocalWorker<WorkerApiClientWrapper, RunningActionsManagerImpl>,
Arc<Metrics>,
),
Error,
> {
let fast_slow_store = cas_store
.downcast_ref::<FastSlowStore>(None)
.err_tip(|| "Expected store for LocalWorker's store to be a FastSlowStore")?
.get_arc()
.err_tip(|| "FastSlowStore's Arc doesn't exist")?;
if let Ok(path) = fs::canonicalize(&config.work_directory).await {
fs::remove_dir_all(path)
.await
.err_tip(|| "Could not remove work_directory in LocalWorker")?;
}
fs::create_dir_all(&config.work_directory)
.await
.err_tip(|| format!("Could not make work_directory : {}", config.work_directory))?;
let entrypoint = if config.entrypoint.is_empty() {
None
} else {
Some(config.entrypoint.clone())
};
let max_action_timeout = if config.max_action_timeout == 0 {
DEFAULT_MAX_ACTION_TIMEOUT
} else {
Duration::from_secs(config.max_action_timeout as u64)
};
let running_actions_manager =
Arc::new(RunningActionsManagerImpl::new(RunningActionsManagerArgs {
root_action_directory: config.work_directory.clone(),
execution_configuration: ExecutionConfiguration {
entrypoint,
additional_environment: config.additional_environment.clone(),
},
cas_store: fast_slow_store,
ac_store,
historical_store,
upload_action_result_config: &config.upload_action_result,
max_action_timeout,
timeout_handled_externally: config.timeout_handled_externally,
})?);
let local_worker = LocalWorker::new_with_connection_factory_and_actions_manager(
config.clone(),
running_actions_manager,
Box::new(move || {
let config = config.clone();
Box::pin(async move {
let timeout = config
.worker_api_endpoint
.timeout
.unwrap_or(DEFAULT_ENDPOINT_TIMEOUT_S);
let timeout_duration = Duration::from_secs_f32(timeout);
let tls_config =
tls_utils::load_client_config(&config.worker_api_endpoint.tls_config)
.err_tip(|| "Parsing local worker TLS configuration")?;
let endpoint =
tls_utils::endpoint_from(&config.worker_api_endpoint.uri, tls_config)
.map_err(|e| make_input_err!("Invalid URI for worker endpoint : {e:?}"))?
.connect_timeout(timeout_duration)
.timeout(timeout_duration);
let transport = endpoint.connect().await.map_err(|e| {
make_err!(
Code::Internal,
"Could not connect to endpoint {}: {e:?}",
config.worker_api_endpoint.uri
)
})?;
Ok(WorkerApiClient::new(transport).into())
})
}),
Box::new(move |d| Box::pin(sleep(d))),
);
let metrics = local_worker.metrics.clone();
Ok((local_worker, metrics))
}
impl<T: WorkerApiClientTrait, U: RunningActionsManager> LocalWorker<T, U> {
pub fn new_with_connection_factory_and_actions_manager(
config: Arc<LocalWorkerConfig>,
running_actions_manager: Arc<U>,
connection_factory: ConnectionFactory<T>,
sleep_fn: Box<dyn Fn(Duration) -> BoxFuture<'static, ()> + Send + Sync>,
) -> Self {
let metrics = Arc::new(Metrics::new(Arc::downgrade(
running_actions_manager.metrics(),
)));
Self {
config,
running_actions_manager,
connection_factory,
sleep_fn: Some(sleep_fn),
metrics,
}
}
pub fn name(&self) -> &String {
&self.config.name
}
async fn register_worker(
&mut self,
client: &mut T,
) -> Result<(String, Streaming<UpdateForWorker>), Error> {
let supported_properties =
make_supported_properties(&self.config.platform_properties).await?;
let mut update_for_worker_stream = client
.connect_worker(supported_properties)
.await
.err_tip(|| "Could not call connect_worker() in worker")?
.into_inner();
let first_msg_update = update_for_worker_stream
.next()
.await
.err_tip(|| "Got EOF expected UpdateForWorker")?
.err_tip(|| "Got error when receiving UpdateForWorker")?
.update;
let worker_id = match first_msg_update {
Some(Update::ConnectionResult(connection_result)) => connection_result.worker_id,
other => {
return Err(make_input_err!(
"Expected first response from scheduler to be a ConnectResult got : {:?}",
other
))
}
};
Ok((worker_id, update_for_worker_stream))
}
#[instrument(skip(self), level = Level::INFO)]
pub async fn run(mut self) -> Result<(), Error> {
let sleep_fn = self
.sleep_fn
.take()
.err_tip(|| "Could not unwrap sleep_fn in LocalWorker::run")?;
let sleep_fn_pin = Pin::new(&sleep_fn);
let error_handler = Box::pin(move |err| async move {
event!(Level::ERROR, ?err, "Error");
(sleep_fn_pin)(Duration::from_secs_f32(CONNECTION_RETRY_DELAY_S)).await;
});
loop {
// First connect to our endpoint.
let mut client = match (self.connection_factory)().await {
Ok(client) => client,
Err(e) => {
(error_handler)(e).await;
continue; // Try to connect again.
}
};
// Next register our worker with the scheduler.
let (mut inner, update_for_worker_stream) =
match self.register_worker(&mut client).await {
Err(e) => {
(error_handler)(e).await;
continue; // Try to connect again.
}
Ok((worker_id, update_for_worker_stream)) => (
LocalWorkerImpl::new(
&self.config,
client,
worker_id,
self.running_actions_manager.clone(),
self.metrics.clone(),
),
update_for_worker_stream,
),
};
event!(
Level::WARN,
worker_id = %inner.worker_id,
"Worker registered with scheduler"
);
// Now listen for connections and run all other services.
if let Err(err) = inner.run(update_for_worker_stream).await {
'no_more_actions: {
// Ensure there are no actions in transit before we try to kill
// all our actions.
const ITERATIONS: usize = 1_000;
let sleep_duration = ACTIONS_IN_TRANSIT_TIMEOUT_S / ITERATIONS as f32;
for _ in 0..ITERATIONS {
if inner.actions_in_transit.load(Ordering::Acquire) == 0 {
break 'no_more_actions;
}
(sleep_fn_pin)(Duration::from_secs_f32(sleep_duration)).await;
}
const ERROR_MSG: &str = "Actions in transit did not reach zero before we disconnected from the scheduler";
event!(Level::ERROR, ERROR_MSG);
return Err(err.append(ERROR_MSG));
}
event!(Level::ERROR, ?err, "Worker disconnected from scheduler");
// Kill off any existing actions because if we re-connect, we'll
// get some more and it might resource lock us.
self.running_actions_manager.kill_all().await;
(error_handler)(err).await;
continue; // Try to connect again.
}
}
// Unreachable.
}
}
#[derive(MetricsComponent)]
pub struct Metrics {
#[metric(
help = "Total number of actions sent to this worker to process. This does not mean it started them, it just means it received a request to execute it."
)]
start_actions_received: CounterWithTime,
#[metric(help = "Total number of disconnects received from the scheduler.")]
disconnects_received: CounterWithTime,
#[metric(help = "Total number of keep-alives received from the scheduler.")]
keep_alives_received: CounterWithTime,
#[metric(
help = "Stats about the calls to check if an action satisfies the config supplied script."
)]
preconditions: AsyncCounterWrapper,
#[metric]
running_actions_manager_metrics: Weak<RunningActionManagerMetrics>,
}
impl RootMetricsComponent for Metrics {}
impl Metrics {
fn new(running_actions_manager_metrics: Weak<RunningActionManagerMetrics>) -> Self {
Self {
start_actions_received: CounterWithTime::default(),
disconnects_received: CounterWithTime::default(),
keep_alives_received: CounterWithTime::default(),
preconditions: AsyncCounterWrapper::default(),
running_actions_manager_metrics,
}
}
}
impl Metrics {
async fn wrap<U, T: Future<Output = U>, F: FnOnce(Arc<Self>) -> T>(
self: Arc<Self>,
fut: F,
) -> U {
fut(self).await
}
}
// impl MetricsComponent for Metrics {
// fn gather_metrics(&self, c: &mut CollectorState) {
// c.publish(
// "start_actions_received",
// &self.start_actions_received,
// concat!(
// "Total number of actions sent to this worker to process. This ",
// "does not mean it started them, it just means it received a request ",
// "to execute it."
// ),
// );
// c.publish(
// "disconnects_received",
// &self.disconnects_received,
// "Total number of disconnects received from the scheduler.",
// );
// c.publish(
// "keep_alives_received",
// &self.keep_alives_received,
// "Total number of keep-alives received from the scheduler.",
// );
// c.publish(
// "preconditions",
// &self.preconditions,
// "Stats about the calls to check if an action satisfies the config supplied script.", // Data is appended to this.
// );
// if let Some(running_actions_manager_metrics) =
// self.running_actions_manager_metrics.upgrade()
// {
// c.publish("", running_actions_manager_metrics.as_ref(), "");
// }
// }
// }