Add a message with a count of posts to index

This commit is contained in:
Ekaterina Vaartis 2021-08-23 20:02:34 +03:00 committed by FloatingGhost
parent dbf556cdcf
commit d5cc272a91
1 changed files with 8 additions and 2 deletions

View File

@ -38,7 +38,7 @@ defmodule Mix.Tasks.Pleroma.Search.Meilisearch 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 @@ defmodule Mix.Tasks.Pleroma.Search.Meilisearch 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)