You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In my case, it's already 1million records in database. I got 504 timeout.
I think, could be an option to delete this database recored, when status is unchanged and long time ago or yaml_file is prouned?
sqlite> select count( * ) from reports where state='unchanged' and yaml_file='pruned' ; count( * ) 1218629 sqlite> delete from reports where state='unchanged' and yaml_file='pruned' ; sqlite>