mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-22 14:45:16 +00:00
Add a message with a count of posts to index
This commit is contained in:
parent
dbf556cdcf
commit
d5cc272a91
|
@ -38,7 +38,7 @@ defmodule Mix.Tasks.Pleroma.Search.Meilisearch do
|
||||||
|
|
||||||
Pleroma.Repo.transaction(
|
Pleroma.Repo.transaction(
|
||||||
fn ->
|
fn ->
|
||||||
Pleroma.Repo.stream(
|
query =
|
||||||
from(Pleroma.Object,
|
from(Pleroma.Object,
|
||||||
# Only index public posts which are notes and have some text
|
# Only index public posts which are notes and have some text
|
||||||
where:
|
where:
|
||||||
|
@ -46,7 +46,13 @@ defmodule Mix.Tasks.Pleroma.Search.Meilisearch do
|
||||||
fragment("LENGTH(data->>'content') > 0") and
|
fragment("LENGTH(data->>'content') > 0") and
|
||||||
fragment("data->'to' \\? ?", ^Pleroma.Constants.as_public()),
|
fragment("data->'to' \\? ?", ^Pleroma.Constants.as_public()),
|
||||||
order_by: [desc: fragment("data->'published'")]
|
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
|
timeout: :infinity
|
||||||
)
|
)
|
||||||
|> Stream.map(&Pleroma.Search.Meilisearch.object_to_search_data/1)
|
|> Stream.map(&Pleroma.Search.Meilisearch.object_to_search_data/1)
|
||||||
|
|
Loading…
Reference in a new issue