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
I met with gc error status , like:
However, when I clicked the error log link to see what's happening, but it seems the data is too big to see the whole:
Could anyone have better method to get the whole error logs ?
I will very appreciate for that, thanks ~
The text was updated successfully, but these errors were encountered:
docker exec -it harbor-db bash
psql -U postgres -d registry
-- get the id of the latest execution
select id, status from execution where vendor_type = 'GARBAGE_COLLECTION' order by id desc
-- get the task of the latest gc execution
select job_id from task where execution_id = <execution_id>
-- tail the log file:
cd /data/job_logs/
tail -f <job_id>.log
If you cannot the execution of the GC, you need to find log files GC log under /data/job_logs by its content manually.
You have mentioned two errors, Are these two errors GC related?
I met with gc error status , like:
However, when I clicked the error log link to see what's happening, but it seems the data is too big to see the whole:
Could anyone have better method to get the whole error logs ?
I will very appreciate for that, thanks ~
The text was updated successfully, but these errors were encountered: