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
use crate::backend;
use crate::dispatcher::server;
use crate::helpers::TaskReport;
use std::error::Error;
use std::sync::Arc;
use std::sync::Mutex;
use std::thread;
use std::time::Duration;
pub struct Finalize {
pub backend_address: String,
pub job_limit: Option<usize>,
}
impl Finalize {
pub fn start(&self, done_queue_arc: &Arc<Mutex<Vec<TaskReport>>>) -> Result<(), Box<dyn Error>> {
let backend = backend::from_address(&self.backend_address);
let mut jobs_count: usize = 0;
loop {
if server::mark_done_arc(&backend, done_queue_arc)? {
jobs_count += 1;
if jobs_count % 100 == 0 {
println!("-- finalize thread persisted {} jobs.", jobs_count);
}
} else {
thread::sleep(Duration::new(1, 0));
}
if let Some(limit) = self.job_limit {
if jobs_count >= limit {
println!(
"finalize {}: job limit reached, terminating finalize thread...",
limit
);
break;
}
}
}
Ok(())
}
}