forked from AkkomaGang/akkoma
Add a message with a count of posts to index
This commit is contained in:
parent
dbf556cdcf
commit
d5cc272a91
1 changed files with 8 additions and 2 deletions
|
@ -38,7 +38,7 @@ def run(["index"]) do
|
|||
|
||||
Pleroma.Repo.transaction(
|
||||
fn ->
|
||||
Pleroma.Repo.stream(
|
||||
query =
|
||||
from(Pleroma.Object,
|
||||
# Only index public posts which are notes and have some text
|
||||
where:
|
||||
|
@ -46,7 +46,13 @@ def run(["index"]) do
|
|||
fragment("LENGTH(data->>'content') > 0") and
|
||||
fragment("data->'to' \\? ?", ^Pleroma.Constants.as_public()),
|
||||
order_by: [desc: fragment("data->'published'")]
|
||||
),
|
||||
)
|
||||
|
||||
count = query |> Pleroma.Repo.aggregate(:count, :data)
|
||||
IO.puts("Entries to index: #{count}")
|
||||
|
||||
Pleroma.Repo.stream(
|
||||
query,
|
||||
timeout: :infinity
|
||||
)
|
||||
|> Stream.map(&Pleroma.Search.Meilisearch.object_to_search_data/1)
|
||||
|
|
Loading…
Reference in a new issue