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
use serde::{Deserialize, Serialize};
#[derive(Clone, Debug, Serialize, Deserialize)]
#[serde(default)]
pub struct Config {
    /// Maximum number of simultaneous upload requests
    pub copy_parallelization: usize,

    pub request: RequestConfig,
}

#[derive(Clone, Debug, Serialize, Deserialize)]
#[serde(default)]
/// General parameters that control timeouts and retries
pub struct RequestConfig {
    /// Timeout is set to a fraction of expected upload time (> 1.0)
    pub timeout_fraction: f64,
    /// Every retry, the timeout is multiplied by backoff (> 1.0)
    pub backoff: f64,
    /// Number of times to retry a single request before giving up
    pub n_retries: usize,
    /// Expected upload speed in MBps (megabytes per second) - used as an initial
    /// estimate.
    pub expected_upload_speed: f64,
    /// To estimate the upload speed incrementally, we use an exponential average:
    /// `new_avg_speed = avg_power * new_speed + (1 - avg_power) * avg_speed`.
    ///
    /// Thus, between 0.0 and 1.0, closer to 1.0 means that newer data points have
    /// more significance.
    pub avg_power: f64,
    /// Only results from uploads larger than `avg_min_bytes` are used to estimate
    /// upload speed.
    /// Uploads with size below this threshold get timeout set to `min_timeout`.
    pub avg_min_bytes: u64,
    /// The minimum timeout (seconds) (always added as an extra term to the
    /// total timeout)
    pub min_timeout: f64,
}
impl Default for Config {
    fn default() -> Self {
        Self {
            copy_parallelization: 20,
            request: RequestConfig::default(),
        }
    }
}
impl Default for RequestConfig {
    fn default() -> Self {
        Self {
            timeout_fraction: 1.5,
            backoff: 1.5,
            n_retries: 8,
            expected_upload_speed: 1.0,
            avg_power: 0.7,
            avg_min_bytes: 1_000_000,
            min_timeout: 0.5,
        }
    }
}