diff options
author | Ekaterina Vaartis <vaartis@kotobank.ch> | 2021-12-20 19:27:22 +0300 |
---|---|---|
committer | Ekaterina Vaartis <vaartis@kotobank.ch> | 2022-10-10 20:19:09 +0300 |
commit | 4f2637acc6c46ea39ae38e869903e7ffcc38b34d (patch) | |
tree | ba9e869e079bdee18356aad0289f7511ae4ffbfe /config | |
parent | 571533ae2618478f26db312e52265e143356debd (diff) | |
download | pleroma-4f2637acc6c46ea39ae38e869903e7ffcc38b34d.tar.gz pleroma-4f2637acc6c46ea39ae38e869903e7ffcc38b34d.zip |
Add description for initial_indexing_chunk_size
Diffstat (limited to 'config')
-rw-r--r-- | config/description.exs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/config/description.exs b/config/description.exs index 81fefaf89..cea4401ba 100644 --- a/config/description.exs +++ b/config/description.exs @@ -3508,6 +3508,14 @@ config :pleroma, :config_description, [ description: "Private key for meilisearch authentication, or `nil` to disable private key authentication.", suggestion: [nil] + }, + %{ + key: :initial_indexing_chunk_size, + type: :int, + description: + "Amount of posts in a batch when running the initial indexing operation. Should probably not be more than 100000" <> + " since there's a limit on maximum insert size", + suggestion: [100_000] } ] } |