79404800

Date: 2025-02-01 10:39:07
Score: 0.5
Natty:
Report link

Assuming it is flink batch processing. Check the size of the input and how the operator chained. Batch job stores intermediate state in the /tmp. Once the job is completed, Flink cleans up the blob.

There are Two types of blobs:

  1. Transient blobs: Temporary files (cleaned up after last access)
  2. Permanent blobs: Job-related files (cleaned up after job completion)

blob.service.cleanup.interval: 3600 ( by default 1hr )

In your case try to reduce it since the job completes within 5 min.

https://nightlies.apache.org/flink/flink-docs-release-1.4/ops/config.html

Reasons:
  • Whitelisted phrase (-1): In your case
  • No code block (0.5):
  • Low reputation (1):
Posted by: Vishva Mahadevan