From 4b332ba980f4cb1631eb159372bcb22d354f6f16 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tao=20Bror=20Bojl=C3=A9n?= Date: Thu, 16 Jan 2020 15:24:36 +0000 Subject: [PATCH 1/2] more crawlers more often --- CHANGELOG.md | 13 ++++++++++--- backend/config/config.exs | 4 ++-- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 55358ee..bc0efa9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed +- Update default number of concurrent crawlers +- Crawl every 30 minutes instead of every hour + ### Deprecated ### Removed @@ -22,18 +25,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [2.8.5 - 2019-12-25] ### Fixed - - Fixed link to Mastodon account + +- Fixed link to Mastodon account ## [2.8.4 - 2019-11-21] ### Changed + - Update links to @fediversespace Mastodon account ### Removed - - Remove staging backend server + +- Remove staging backend server ### Fixed - - Fixed frontend crash when instance node missing + +- Fixed frontend crash when instance node missing ## [2.8.3 - 2019-11-19] diff --git a/backend/config/config.exs b/backend/config/config.exs index 88ae468..fac3fbc 100644 --- a/backend/config/config.exs +++ b/backend/config/config.exs @@ -59,8 +59,8 @@ config :backend, :crawler, status_age_limit_days: 28, status_count_limit: 5000, personal_instance_threshold: 10, - crawl_interval_mins: 60, - crawl_workers: 20, + crawl_interval_mins: 30, + crawl_workers: 50, blacklist: [ # spam "gab.best", From 99f2b247dce3711845c46ecc17700ef1b7759faf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tao=20Bror=20Bojl=C3=A9n?= Date: Thu, 16 Jan 2020 15:26:00 +0000 Subject: [PATCH 2/2] release v2.8.6 --- CHANGELOG.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bc0efa9..5613685 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,9 +11,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed -- Update default number of concurrent crawlers -- Crawl every 30 minutes instead of every hour - ### Deprecated ### Removed @@ -22,6 +19,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Security +## [2.8.6 - 2020-01-16] + +### Changed + +- Update default number of concurrent crawlers +- Crawl every 30 minutes instead of every hour + ## [2.8.5 - 2019-12-25] ### Fixed