forked from AkkomaGang/akkoma
Update in chunks.
This commit is contained in:
parent
f1d27a5fbb
commit
20b8b87743
1 changed files with 14 additions and 3 deletions
|
@ -1,6 +1,8 @@
|
|||
defmodule Pleroma.Repo.Migrations.AddActorToActivity do
|
||||
use Ecto.Migration
|
||||
|
||||
alias Pleroma.{Repo, Activity}
|
||||
|
||||
@disable_ddl_transaction true
|
||||
|
||||
def up do
|
||||
|
@ -8,9 +10,18 @@ def up do
|
|||
add :actor, :string
|
||||
end
|
||||
|
||||
max = Repo.aggregate(Activity, :max, :id)
|
||||
IO.puts("#{max} activities")
|
||||
chunks = 0..(round(max / 10_000))
|
||||
|
||||
Enum.each(chunks, fn (i) ->
|
||||
min = i * 10_000
|
||||
max = min + 10_000
|
||||
IO.puts("Updating #{min}")
|
||||
execute """
|
||||
update activities set actor = data->>'actor';
|
||||
update activities set actor = data->>'actor' where id > #{min} and id <= #{max};
|
||||
"""
|
||||
end)
|
||||
|
||||
create index(:activities, [:actor, "id DESC NULLS LAST"], concurrently: true)
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue