Skip to content

Commit 1402fc6

Browse files
committed
Use dashmap to record recent release access to avoid locking
1 parent e77699c commit 1402fc6

File tree

3 files changed

+56
-17
lines changed

3 files changed

+56
-17
lines changed

Cargo.lock

+41
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ once_cell = { version = "1.4.0", features = ["parking_lot"] }
4545
base64 = "0.12.1"
4646
strum = { version = "0.18.0", features = ["derive"] }
4747
lol_html = "0.2"
48+
dashmap = "3.11.10"
4849

4950
# Async
5051
tokio = { version = "0.2.22", features = ["rt-threaded"] }

src/metrics/mod.rs

+14-17
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
#[macro_use]
22
mod macros;
33

4-
use std::{time::{Duration, Instant}, collections::HashMap, sync::Mutex};
4+
use std::time::{Duration, Instant};
55
use self::macros::MetricFromOpts;
66
use crate::db::Pool;
77
use crate::BuildQueue;
88
use failure::Error;
99
use prometheus::proto::MetricFamily;
10+
use dashmap::DashMap;
1011

1112
load_metric_type!(IntGauge as single);
1213
load_metric_type!(IntCounter as single);
@@ -76,30 +77,26 @@ metrics! {
7677
namespace: "docsrs",
7778
}
7879

79-
#[derive(Debug)]
80+
#[derive(Debug, Default)]
8081
pub(crate) struct RecentReleases {
81-
krates: Mutex<HashMap<String, Instant>>,
82-
versions: Mutex<HashMap<String, Instant>>,
83-
platforms: Mutex<HashMap<String, Instant>>,
82+
krates: DashMap<String, Instant>,
83+
versions: DashMap<String, Instant>,
84+
platforms: DashMap<String, Instant>,
8485
}
8586

8687
impl RecentReleases {
8788
pub(crate) fn new() -> Self {
88-
Self {
89-
krates: Mutex::new(HashMap::new()),
90-
versions: Mutex::new(HashMap::new()),
91-
platforms: Mutex::new(HashMap::new()),
92-
}
89+
Self::default()
9390
}
9491

9592
pub(crate) fn record(&self, krate: &str, version: &str, target: &str) {
96-
self.krates.lock().unwrap().insert(krate.to_owned(), Instant::now());
97-
self.versions.lock().unwrap().insert(format!("{}/{}", krate, version), Instant::now());
98-
self.platforms.lock().unwrap().insert(format!("{}/{}/{}", krate, version, target), Instant::now());
93+
self.krates.insert(krate.to_owned(), Instant::now());
94+
self.versions.insert(format!("{}/{}", krate, version), Instant::now());
95+
self.platforms.insert(format!("{}/{}/{}", krate, version, target), Instant::now());
9996
}
10097

10198
pub(crate) fn gather(&self, metrics: &Metrics) {
102-
fn inner(map: &mut HashMap<String, Instant>, metric: &IntGaugeVec) {
99+
fn inner(map: &DashMap<String, Instant>, metric: &IntGaugeVec) {
103100
let mut hour_count = 0;
104101
let mut half_hour_count = 0;
105102
let mut five_minute_count = 0;
@@ -133,9 +130,9 @@ impl RecentReleases {
133130
.set(five_minute_count);
134131
}
135132

136-
inner(&mut *self.krates.lock().unwrap(), &metrics.recent_krates);
137-
inner(&mut *self.versions.lock().unwrap(), &metrics.recent_versions);
138-
inner(&mut *self.platforms.lock().unwrap(), &metrics.recent_platforms);
133+
inner(&self.krates, &metrics.recent_krates);
134+
inner(&self.versions, &metrics.recent_versions);
135+
inner(&self.platforms, &metrics.recent_platforms);
139136
}
140137
}
141138

0 commit comments

Comments
 (0)