Ephemeral local storage usage exceeds the total limit, Apache hop Pod Crashing #6429
-
|
We are running Apache Hop 2.7.0, deployed via Helm chart on Google Kubernetes Engine (GKE). To prevent pod eviction (since Apache Hop consumes significant resources during pipeline execution), we configured the following resource requests and limits: limits: However, the pod still crashes while the pipeline is running. 📌 Pod Events 🤔 Observation / Question The eviction reason clearly indicates ephemeral local storage exhaustion The pipeline performs a large number of database lookups Question: Could anyone please guide here. Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
|
Unless your failed cases are writing to the local storage, and have a massive amount of those, there is nothing in this pipeline that is writing to disk. We only have a couple of transforms that will use disk space during processing the main culprit usually is the "Sort Rows" transform. I would also take a look at the failed cases field definition. If you have string fields with max length (2GB) you could be writing unessesary white spacing to disk causing it to fill up. |
Beta Was this translation helpful? Give feedback.



🙏 Many thanks, it worked.