start_pleroma()
+ Logger.info("Starting transferring object embedded hashtags to `hashtags` table...")
+
from(
object in Object,
left_join: hashtag in assoc(object, :hashtags),
where: fragment("(?)->>'tag' != '[]'", object.data),
select: %{
id: object.id,
- inserted_at: object.inserted_at,
tag: fragment("(?)->>'tag'", object.data)
- },
- order_by: [desc: object.id]
+ }
)
|> Pleroma.Repo.chunk_stream(100, :batches)
|> Stream.each(fn objects ->
- chunk_start = List.first(objects)
- chunk_end = List.last(objects)
-
- Logger.info(
- "transfer_hashtags: " <>
- "#{chunk_start.id} (#{chunk_start.inserted_at}) -- " <>
- "#{chunk_end.id} (#{chunk_end.inserted_at})"
- )
+ Logger.info("Processing #{length(objects)} objects...")
Enum.map(
objects,
|> Jason.decode!()
|> Enum.filter(&is_bitstring(&1))
- with {:ok, hashtag_records} <- Hashtag.get_or_create_by_names(hashtags) do
- Repo.transaction(fn ->
+ Repo.transaction(fn ->
+ with {:ok, hashtag_records} <- Hashtag.get_or_create_by_names(hashtags) do
for hashtag_record <- hashtag_records do
- with {:error, _} <-
+ with {:ok, _} <-
Ecto.Adapters.SQL.query(
Repo,
"insert into hashtags_objects(hashtag_id, object_id) values " <>
"(#{hashtag_record.id}, #{object.id});"
) do
- Logger.warn(
- "ERROR: could not link object #{object.id} and hashtag #{hashtag_record.id}"
- )
+ :noop
+ else
+ {:error, e} ->
+ error =
+ "ERROR: could not link object #{object.id} and hashtag " <>
+ "#{hashtag_record.id}: #{inspect(e)}"
+
+ Logger.error(error)
+ Repo.rollback(error)
end
end
- end)
- else
- e -> Logger.warn("ERROR: could not process object #{object.id}: #{inspect(e)}")
- end
+ else
+ e ->
+ error = "ERROR: could not create hashtags for object #{object.id}: #{inspect(e)}"
+ Logger.error(error)
+ Repo.rollback(error)
+ end
+ end)
end
)
end)
|> Stream.run()
+
+ Logger.info("Done transferring hashtags. Please check logs to ensure no errors.")
end
def run(["vacuum", args]) do