summaryrefslogtreecommitdiff
path: root/lib/mix
diff options
context:
space:
mode:
authorMark Felder <feld@feld.me>2024-05-29 10:44:34 -0400
committerMark Felder <feld@feld.me>2024-05-29 10:44:40 -0400
commit14b4bd69a83846b3c117624851b96b9fc30528bf (patch)
treef4b57240db1246af4cc6dc9c96662a0473c0db6c /lib/mix
parent3b639b467e8c57e3875b273359d63c014671302a (diff)
downloadpleroma-14b4bd69a83846b3c117624851b96b9fc30528bf.tar.gz
pleroma-14b4bd69a83846b3c117624851b96b9fc30528bf.zip
Add additional flags to the Pleroma.Search.Indexer Mix task
Diffstat (limited to 'lib/mix')
-rw-r--r--lib/mix/tasks/pleroma/search/indexer.ex9
1 files changed, 6 insertions, 3 deletions
diff --git a/lib/mix/tasks/pleroma/search/indexer.ex b/lib/mix/tasks/pleroma/search/indexer.ex
index 81a9fced6..2a52472f9 100644
--- a/lib/mix/tasks/pleroma/search/indexer.ex
+++ b/lib/mix/tasks/pleroma/search/indexer.ex
@@ -33,15 +33,18 @@ defmodule Mix.Tasks.Pleroma.Search.Indexer do
OptionParser.parse(
options,
strict: [
- limit: :integer
+ chunk: :integer,
+ limit: :integer,
+ step: :integer
]
)
start_pleroma()
+ chunk_size = Keyword.get(options, :chunk, 100)
limit = Keyword.get(options, :limit, 100_000)
+ per_step = Keyword.get(options, :step, 1000)
- per_step = 1000
chunks = max(div(limit, per_step), 1)
1..chunks
@@ -65,7 +68,7 @@ defmodule Mix.Tasks.Pleroma.Search.Indexer do
IO.puts("Got #{length(ids)} activities, adding to indexer")
ids
- |> Enum.chunk_every(100)
+ |> Enum.chunk_every(chunk_size)
|> Enum.each(fn chunk ->
IO.puts("Adding #{length(chunk)} activities to indexing queue")