mirror of
https://github.com/LemmyNet/lemmy
synced 2024-11-22 04:23:07 +00:00
Fixing high CPU usage on federation worker recheck. Fixes #3958
This commit is contained in:
parent
6735a98d35
commit
4f1240487e
3 changed files with 9 additions and 4 deletions
|
@ -32,10 +32,10 @@ static WORK_FINISHED_RECHECK_DELAY: Duration = Duration::from_secs(1);
|
||||||
static WORK_FINISHED_RECHECK_DELAY: Duration = Duration::from_secs(30);
|
static WORK_FINISHED_RECHECK_DELAY: Duration = Duration::from_secs(30);
|
||||||
#[cfg(debug_assertions)]
|
#[cfg(debug_assertions)]
|
||||||
static FOLLOW_ADDITIONS_RECHECK_DELAY: Lazy<chrono::Duration> =
|
static FOLLOW_ADDITIONS_RECHECK_DELAY: Lazy<chrono::Duration> =
|
||||||
Lazy::new(|| chrono::Duration::seconds(1));
|
Lazy::new(|| chrono::Duration::minutes(1));
|
||||||
#[cfg(not(debug_assertions))]
|
#[cfg(not(debug_assertions))]
|
||||||
static FOLLOW_ADDITIONS_RECHECK_DELAY: Lazy<chrono::Duration> =
|
static FOLLOW_ADDITIONS_RECHECK_DELAY: Lazy<chrono::Duration> =
|
||||||
Lazy::new(|| chrono::Duration::minutes(1));
|
Lazy::new(|| chrono::Duration::minutes(5));
|
||||||
static FOLLOW_REMOVALS_RECHECK_DELAY: Lazy<chrono::Duration> =
|
static FOLLOW_REMOVALS_RECHECK_DELAY: Lazy<chrono::Duration> =
|
||||||
Lazy::new(|| chrono::Duration::hours(1));
|
Lazy::new(|| chrono::Duration::hours(1));
|
||||||
pub(crate) struct InstanceWorker {
|
pub(crate) struct InstanceWorker {
|
||||||
|
@ -254,7 +254,8 @@ impl InstanceWorker {
|
||||||
.send_inboxes
|
.send_inboxes
|
||||||
.iter()
|
.iter()
|
||||||
.filter_map(std::option::Option::as_ref)
|
.filter_map(std::option::Option::as_ref)
|
||||||
.filter_map(|u| (u.domain() == Some(&self.instance.domain)).then(|| u.inner().clone())),
|
.filter(|&u| (u.domain() == Some(&self.instance.domain)))
|
||||||
|
.map(|u| u.inner().clone()),
|
||||||
);
|
);
|
||||||
Ok(inbox_urls)
|
Ok(inbox_urls)
|
||||||
}
|
}
|
||||||
|
@ -295,7 +296,7 @@ impl InstanceWorker {
|
||||||
.await?
|
.await?
|
||||||
.into_iter()
|
.into_iter()
|
||||||
.fold(HashMap::new(), |mut map, (c, u)| {
|
.fold(HashMap::new(), |mut map, (c, u)| {
|
||||||
map.entry(c).or_insert_with(HashSet::new).insert(u.into());
|
map.entry(c).or_default().insert(u.into());
|
||||||
map
|
map
|
||||||
}),
|
}),
|
||||||
new_last_fetch,
|
new_last_fetch,
|
||||||
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
DROP INDEX idx_person_local_instance;
|
||||||
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
CREATE INDEX idx_person_local_instance ON person (local DESC, instance_id);
|
||||||
|
|
Loading…
Reference in a new issue