mirror of
https://github.com/penpot/penpot.git
synced 2025-05-31 00:56:12 +02:00
📎 Decrease default bulk buffers on storage tasks.
This commit is contained in:
parent
634fe2c458
commit
1a81631886
1 changed files with 2 additions and 2 deletions
|
@ -319,7 +319,7 @@
|
||||||
where s.deleted_at is not null
|
where s.deleted_at is not null
|
||||||
and s.deleted_at < (now() - ?::interval)
|
and s.deleted_at < (now() - ?::interval)
|
||||||
order by s.deleted_at
|
order by s.deleted_at
|
||||||
limit 500
|
limit 100
|
||||||
)
|
)
|
||||||
delete from storage_object
|
delete from storage_object
|
||||||
where id in (select id from items_part)
|
where id in (select id from items_part)
|
||||||
|
@ -396,7 +396,7 @@
|
||||||
from storage_object as so
|
from storage_object as so
|
||||||
where so.touched_at is not null
|
where so.touched_at is not null
|
||||||
order by so.touched_at
|
order by so.touched_at
|
||||||
limit 500;")
|
limit 100;")
|
||||||
|
|
||||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
;; Recheck Stalled Task
|
;; Recheck Stalled Task
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue