Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(projects): Evict project caches after some time #287

Merged
merged 2 commits into from
Oct 30, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
60 changes: 50 additions & 10 deletions server/src/actors/project.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
use std::borrow::Cow;
use std::collections::hash_map::Entry;
use std::collections::HashMap;
use std::collections::{hash_map::Entry, HashMap, VecDeque};
use std::ffi::OsStr;
use std::fs;
use std::io;
Expand Down Expand Up @@ -773,13 +772,29 @@ impl UpstreamQuery for GetProjectStates {
}
}

#[derive(Clone, Copy, Debug)]
struct ProjectUpdate {
project_id: ProjectId,
instant: Instant,
}

impl ProjectUpdate {
pub fn new(project_id: ProjectId) -> Self {
ProjectUpdate {
project_id,
instant: Instant::now(),
}
}
}

pub struct ProjectCache {
backoff: RetryBackoff,
config: Arc<Config>,
upstream: Addr<UpstreamRelay>,
projects: HashMap<ProjectId, Addr<Project>>,
local_states: HashMap<ProjectId, Arc<ProjectState>>,
state_channels: HashMap<ProjectId, oneshot::Sender<ProjectState>>,
updates: VecDeque<ProjectUpdate>,
shutdown: SyncHandle,
}

Expand All @@ -792,6 +807,7 @@ impl ProjectCache {
projects: HashMap::new(),
local_states: HashMap::new(),
state_channels: HashMap::new(),
updates: VecDeque::new(),
shutdown: SyncHandle::new(),
}
}
Expand Down Expand Up @@ -828,11 +844,36 @@ impl ProjectCache {
self.backoff.attempt(),
);

// Remove outdated projects that are not being refreshed from the cache. If the project is
// being updated now, also remove its update entry from the queue, since we will be
// inserting a new timestamp at the end (see `extend`).
let eviction_instant = Instant::now() - 2 * self.config.project_cache_expiry();
while let Some(update) = self.updates.get(0) {
if update.instant > eviction_instant {
break;
}

if !channels.contains_key(&update.project_id) {
self.projects.remove(&update.project_id);
}

self.updates.pop_front();
}

// The remaining projects are not outdated anymore. Still, clean them from the queue to
// reinsert them at the end, as they are now receiving an updated timestamp. Then,
// batch-insert all new projects with the new timestamp.
self.updates
.retain(|update| !channels.contains_key(&update.project_id));
self.updates
.extend(channels.keys().copied().map(ProjectUpdate::new));

let request = GetProjectStates {
projects: channels.keys().cloned().collect(),
projects: channels.keys().copied().collect(),
#[cfg(feature = "processing")]
full_config: self.config.processing_enabled(),
};

// count number of http requests for project states
metric!(counter("project_state.request") += 1);
self.upstream
Expand Down Expand Up @@ -1011,16 +1052,15 @@ impl Handler<GetProject> for ProjectCache {
let config = self.config.clone();
metric!(histogram("project_cache.size") = self.projects.len() as u64);
match self.projects.entry(message.id) {
Entry::Occupied(value) => {
Entry::Occupied(entry) => {
metric!(counter("project_cache.hit") += 1);
value.get().clone()
entry.get().clone()
}
Entry::Vacant(_) => {
Entry::Vacant(entry) => {
metric!(counter("project_cache.miss") += 1);
let new_val = Project::new(message.id, config, context.address()).start();
let ret_val = new_val.clone();
self.projects.insert(message.id, new_val);
ret_val
let project = Project::new(message.id, config, context.address()).start();
entry.insert(project.clone());
project
}
}
}
Expand Down