-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
## Summary & Motivation We use dagster in kubernetes. For every item to run the run laucher creates a new kubernetes job. In some cases the corresponding pod cannot be scheduled due to restrictions enforced by policies or due to insufficent resources. This informations can be found in the kubernetes events but not in the dagster ui. The dagster daemon only watches the pod to be started and reports only pod debug information. If no pod could be found, there are no further information provided. It would be very helpful if the job events would be published if the pod could not be found. Resolves #19381 ## How I Tested These Changes Run Dagster in Kubernetes. Then start a job/asset/... with the launchpad and request more resources then there is quota left in for the namespace. `dagster-k8s/config` : `{"container_config": {"resources": {"requests": {"cpu": "1000m", "memory": "32Gi"}, "limits": {"cpu": "1000m", "memory": "64Gi"}}}} ` --------- Co-authored-by: Jens Blawatt <[email protected]>
- Loading branch information
Showing
3 changed files
with
153 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters