bharatk-meesho commented on issue #27589:
URL: https://github.com/apache/airflow/issues/27589#issuecomment-1315490416
@potiuk how do I know which process eats memory?
As shared above the result of top command, it doesn't where the memory is
being utilized.
I am changing two things from official deployment process, below is my
deployment process
1) Below is my docker file
```
FROM apache/airflow:2.3.2-python3.8
USER root
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
gcc g++ python-dev libsasl2-dev net-tools procps
```
I am using some libraries for extra functionality and for troubleshooting
(since things like top is also not installed in pod)
2) Image in (1) is registered in ECR which I point to in helm chart. The
only changes in helm chart regarding resources given to pod and their
replication
3) I use argocd tool to deploy helm (This setup is provided by devops team
in my org).
Please let me know if any other details I should share, I feel I am not
modifying much from official helm/image so these memory issues shouldn't be
coming.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]