Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Increase memory limit for git-sync container #467

Open
dervoeti opened this issue Jul 16, 2024 · 0 comments
Open

Increase memory limit for git-sync container #467

dervoeti opened this issue Jul 16, 2024 · 0 comments

Comments

@dervoeti
Copy link
Member

A user reported that the git-sync containers crashes (OOM) when trying to sync a large repo with dags (>100 MB). We should either increase the memory limit (currently 64 Mi) or make this easier overridable. It's currently possible with podOverrides but they need to be added for both git-sync containers in each component:

...
  schedulers:
    podOverrides:
      spec:
        initContainers:
        - name: gitsync-0
          resources:
            limits:
              memory: 256Mi
              cpu: 100m
            requests:
              memory: 256Mi
              cpu: 200m
        containers:
        - name: gitsync-1
          resources:
            limits:
              memory: 256Mi
              cpu: 100m
            requests:
              memory: 256Mi
              cpu: 200m
  celeryExecutors:
    podOverrides:
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant