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
8. Set up a cron job to remove docker volumes and images every week
25
+
8. Set up a cron job to remove docker volumes and images every other weekday
26
26
1.`crontab -e`
27
-
2. Within the file add a line `8 5 * * 6 docker system prune -f --volumes --all`
27
+
2. Within the file add a line `0 5 * * 1,3,5 docker system prune -f --volumes --all`
28
28
9. Vtorc, Cluster 14 and some other tests use multiple MySQL instances which are all brought up with asynchronous I/O setup in InnoDB. This sometimes leads to us hitting the Linux asynchronous I/O limit.
29
29
To fix this we increase the default limit on the self-hosted runners by -
30
30
1. To set the aio-max-nr value, add the following line to the /etc/sysctl.conf file:
@@ -70,4 +70,4 @@ with the future runs as well.
70
70
The logs will be stored in the `savedRuns` directory and can be copied locally via `scp`.
71
71
72
72
A cronjob is already setup to empty the `savedRuns` directory every week so please download the runs
0 commit comments