Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
pleroma
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alex Gleason
pleroma
Commits
400337b0
Commit
400337b0
authored
6 years ago
by
lain
Browse files
Options
Downloads
Patches
Plain Diff
Make Federator options configurable.
parent
90e157ef
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
config/config.exs
+8
-0
8 additions, 0 deletions
config/config.exs
lib/pleroma/web/federator/federator.ex
+1
-2
1 addition, 2 deletions
lib/pleroma/web/federator/federator.ex
lib/pleroma/web/federator/retry_queue.ex
+7
-12
7 additions, 12 deletions
lib/pleroma/web/federator/retry_queue.ex
with
16 additions
and
14 deletions
config/config.exs
+
8
−
0
View file @
400337b0
...
...
@@ -252,6 +252,14 @@
"internal"
]
config
:pleroma
,
Pleroma
.
Web
.
Federator
,
max_jobs:
50
config
:pleroma
,
Pleroma
.
Web
.
Federator
.
RetryQueue
,
enabled:
false
,
max_jobs:
20
,
initial_timeout:
30
,
max_retries:
5
# Import environment specific config. This must remain at the bottom
# of this file so it overrides the configuration defined above.
import_config
"
#{
Mix
.
env
()
}
.exs"
This diff is collapsed.
Click to expand it.
lib/pleroma/web/federator/federator.ex
+
1
−
2
View file @
400337b0
...
...
@@ -17,7 +17,6 @@ defmodule Pleroma.Web.Federator do
@websub
Application
.
get_env
(
:pleroma
,
:websub
)
@ostatus
Application
.
get_env
(
:pleroma
,
:ostatus
)
@max_jobs
20
def
init
(
args
)
do
{
:ok
,
args
}
...
...
@@ -168,7 +167,7 @@ def enqueue(type, payload, priority \\ 1) do
end
def
maybe_start_job
(
running_jobs
,
queue
)
do
if
:sets
.
size
(
running_jobs
)
<
@
max_jobs
&&
queue
!=
[]
do
if
:sets
.
size
(
running_jobs
)
<
Pleroma
.
Config
.
get
([
__MODULE__
,
:
max_jobs
])
&&
queue
!=
[]
do
{{
type
,
payload
},
queue
}
=
queue_pop
(
queue
)
{
:ok
,
pid
}
=
Task
.
start
(
fn
->
handle
(
type
,
payload
)
end
)
mref
=
Process
.
monitor
(
pid
)
...
...
This diff is collapsed.
Click to expand it.
lib/pleroma/web/federator/retry_queue.ex
+
7
−
12
View file @
400337b0
...
...
@@ -7,12 +7,6 @@ defmodule Pleroma.Web.Federator.RetryQueue do
require
Logger
# seconds
@initial_timeout
30
@max_retries
5
@max_jobs
20
def
init
(
args
)
do
queue_table
=
:ets
.
new
(
:pleroma_retry_queue
,
[
:bag
,
:protected
])
...
...
@@ -21,7 +15,7 @@ def init(args) do
def
start_link
()
do
enabled
=
if
Mix
.
env
()
==
:test
,
do
:
true
,
else
:
Pleroma
.
Config
.
get
([
:retry_queue
,
:enabled
],
false
)
if
Mix
.
env
()
==
:test
,
do
:
true
,
else
:
Pleroma
.
Config
.
get
([
__MODULE__
,
:enabled
],
false
)
if
enabled
do
Logger
.
info
(
"Starting retry queue"
)
...
...
@@ -54,7 +48,7 @@ def reset_stats() do
end
def
get_retry_params
(
retries
)
do
if
retries
>
@
max_retries
do
if
retries
>
Pleroma
.
Config
.
get
([
__MODULE__
,
:
max_retries
])
do
{
:drop
,
"Max retries reached"
}
else
{
:retry
,
growth_function
(
retries
)}
...
...
@@ -108,12 +102,12 @@ def maybe_start_job(running_jobs, queue_table) do
current_time
=
DateTime
.
to_unix
(
DateTime
.
utc_now
())
n_running_jobs
=
:sets
.
size
(
running_jobs
)
if
n_running_jobs
<
@
max_jobs
do
if
n_running_jobs
<
Pleroma
.
Config
.
get
([
__MODULE__
,
:
max_jobs
])
do
n_ready_jobs
=
ets_count_expires
(
queue_table
,
current_time
)
if
n_ready_jobs
>
0
do
# figure out how many we could start
available_job_slots
=
@
max_jobs
-
n_running_jobs
available_job_slots
=
Pleroma
.
Config
.
get
([
__MODULE__
,
:
max_jobs
])
-
n_running_jobs
start_n_jobs
(
running_jobs
,
queue_table
,
current_time
,
available_job_slots
)
else
running_jobs
...
...
@@ -228,12 +222,13 @@ def handle_info(unknown, state) do
if
Mix
.
env
()
==
:test
do
defp
growth_function
(
_retries
)
do
_shutit
=
@
initial_timeout
_shutit
=
Pleroma
.
Config
.
get
([
__MODULE__
,
:
initial_timeout
])
DateTime
.
to_unix
(
DateTime
.
utc_now
())
-
1
end
else
defp
growth_function
(
retries
)
do
round
(
@initial_timeout
*
:math
.
pow
(
retries
,
3
))
+
DateTime
.
to_unix
(
DateTime
.
utc_now
())
round
(
Pleroma
.
Config
.
get
([
__MODULE__
,
:initial_timeout
])
*
:math
.
pow
(
retries
,
3
))
+
DateTime
.
to_unix
(
DateTime
.
utc_now
())
end
end
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment