Rekleuen
07/24/2025, 7:33 AMkapa.ai
07/24/2025, 7:33 AMdata/airbyte-minio-pv/airbyte-storage/job-logging/workspace
), you can manually delete the files and folders inside that directory. If you are running Airbyte on Kubernetes, you can use the following steps: 1. Exec into the MinIO pod: bash kubectl exec -it <minio-pod-name> -- /bin/bash
Replace <minio-pod-name>
with the actual name of your MinIO pod (e.g., airbyte-minio-0
). 2. Navigate to the log directory: bash cd /storage/airbyte-storage/job-logging/workspace/
3. Delete the log files and folders: bash rm -rf *
This will remove all job logs stored in that directory. This approach is confirmed by multiple users and support responses, who note that MinIO mainly stores logs, and deleting these files resolves storage issues. Be aware that deleting these logs is irreversible and will remove historical job logs from the Airbyte UI as well. If you want to automate this process, you may consider setting up a cron job or similar mechanism, but manual deletion is the most direct method described in the knowledge sources [[How to clean up airbyte-minio and what's stored in minio?](https://discuss.airbyte.io/t/3101)][[S3 Minio Storage Full](https://discuss.airbyte.io/t/1857)][[All sync jobs hanging indefinitely](https://github.com/airbytehq/airbyte/issues/55812)]. Note: If you are not using Kubernetes, you can perform similar steps by accessing the MinIO storage location directly on your host system and deleting the contents of the relevant directory.