-
Notifications
You must be signed in to change notification settings - Fork 688
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
[BUG] If a task only specifies resource limit, admin sets the request to a value potentially lower than the limit #264
Labels
bug
Something isn't working
Comments
@EngHabu Thank you for filing this bug |
8 tasks
8 tasks
eapolinario
pushed a commit
to eapolinario/flyte
that referenced
this issue
Dec 6, 2022
* Change branch compilation to avoid adding downstream deps Signed-off-by: Haytham Abuelfutuh <[email protected]> * Fix deepcopy generated bug Signed-off-by: Haytham Abuelfutuh <[email protected]> * Add checks to make sure compiled workflows remain the same Signed-off-by: Haytham Abuelfutuh <[email protected]> * Additional unit test to test branch spec generation Signed-off-by: Ketan Umare <[email protected]> * Fix compiler unit tests Signed-off-by: Haytham Abuelfutuh <[email protected]> * Fixed unit test Signed-off-by: Ketan Umare <[email protected]> * Fix one unit test and shorten json tags for connections Signed-off-by: Haytham Abuelfutuh <[email protected]> * Use GetConnections() instead of DeprecatedConnections Signed-off-by: Haytham Abuelfutuh <[email protected]> * Put back branch node upstream check in CanExecute predicate for backward compatibility Signed-off-by: Haytham Abuelfutuh <[email protected]> * lint Signed-off-by: Haytham Abuelfutuh <[email protected]> Co-authored-by: Ketan Umare <[email protected]>
eapolinario
pushed a commit
to eapolinario/flyte
that referenced
this issue
Dec 6, 2022
eapolinario
pushed a commit
to eapolinario/flyte
that referenced
this issue
Dec 20, 2022
eapolinario
pushed a commit
to eapolinario/flyte
that referenced
this issue
Dec 20, 2022
Signed-off-by: Pianist038801 <[email protected]> Co-authored-by: Pianist038801 <[email protected]>
eapolinario
pushed a commit
to eapolinario/flyte
that referenced
this issue
Dec 20, 2022
## [0.39.1](http://github.com/lyft/flyteconsole/compare/v0.39.0...v0.39.1) (2022-01-14) ### Bug Fixes * recent workflow bug on filtering executions ([flyteorg#264](http://github.com/lyft/flyteconsole/issues/264)) #patch ([0e82355](http://github.com/lyft/flyteconsole/commit/0e823553bca31d0882c767e12235601e359a6475))
eapolinario
pushed a commit
to eapolinario/flyte
that referenced
this issue
Dec 20, 2022
…ache (flyteorg#264) * Added endpoint suffix to service user for pkce token saved in token cache Signed-off-by: Prafulla Mahindrakar <[email protected]> * nits Signed-off-by: Prafulla Mahindrakar <[email protected]>
eapolinario
pushed a commit
to eapolinario/flyte
that referenced
this issue
Aug 9, 2023
* Change branch compilation to avoid adding downstream deps Signed-off-by: Haytham Abuelfutuh <[email protected]> * Fix deepcopy generated bug Signed-off-by: Haytham Abuelfutuh <[email protected]> * Add checks to make sure compiled workflows remain the same Signed-off-by: Haytham Abuelfutuh <[email protected]> * Additional unit test to test branch spec generation Signed-off-by: Ketan Umare <[email protected]> * Fix compiler unit tests Signed-off-by: Haytham Abuelfutuh <[email protected]> * Fixed unit test Signed-off-by: Ketan Umare <[email protected]> * Fix one unit test and shorten json tags for connections Signed-off-by: Haytham Abuelfutuh <[email protected]> * Use GetConnections() instead of DeprecatedConnections Signed-off-by: Haytham Abuelfutuh <[email protected]> * Put back branch node upstream check in CanExecute predicate for backward compatibility Signed-off-by: Haytham Abuelfutuh <[email protected]> * lint Signed-off-by: Haytham Abuelfutuh <[email protected]> Co-authored-by: Ketan Umare <[email protected]>
eapolinario
pushed a commit
to eapolinario/flyte
that referenced
this issue
Aug 21, 2023
eapolinario
pushed a commit
to eapolinario/flyte
that referenced
this issue
Apr 30, 2024
…ache (flyteorg#264) * Added endpoint suffix to service user for pkce token saved in token cache Signed-off-by: Prafulla Mahindrakar <[email protected]> * nits Signed-off-by: Prafulla Mahindrakar <[email protected]>
austin362667
pushed a commit
to austin362667/flyte
that referenced
this issue
May 7, 2024
…ache (flyteorg#264) * Added endpoint suffix to service user for pkce token saved in token cache Signed-off-by: Prafulla Mahindrakar <[email protected]> * nits Signed-off-by: Prafulla Mahindrakar <[email protected]>
robert-ulbrich-mercedes-benz
pushed a commit
to robert-ulbrich-mercedes-benz/flyte
that referenced
this issue
Jul 2, 2024
…ache (flyteorg#264) * Added endpoint suffix to service user for pkce token saved in token cache Signed-off-by: Prafulla Mahindrakar <[email protected]> * nits Signed-off-by: Prafulla Mahindrakar <[email protected]>
troychiu
pushed a commit
that referenced
this issue
Jul 8, 2024
## Overview Adds a golangci config (matching unionai/cloud) and does a bunch of clean up to get things _mostly_ lint free ## Test Plan Ran a sanity test with actors locally, but otherwise should be low risk (just refactoring) ## Rollout Plan (if applicable) N/A ## Upstream Changes Should this change be upstreamed to OSS (flyteorg/flyte)? If so, please check this box for auditing. Note, this is the responsibility of each developer. See [this guide](https://unionai.atlassian.net/wiki/spaces/ENG/pages/447610883/Flyte+-+Union+Cloud+Development+Runbook/#When-are-versions-updated%3F). - [ ] To be upstreamed ## Issue fixes EXO-100
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the bug
If a task sets
memory_limit=200Mi
, admin will set thememory_request=500Mi
since that's the default it's configured with. This creates an invalid spec. Limit has to be >= request.Expected behavior
Admin should set request == limit if limit is set, or to the default if not... and should do the same for the limit (set it == request if not set or to the default limit if not set)
Flyte component
Environment
Flyte component
Additional context
https://github.com/lyft/flyteadmin/blob/2a065109c8b14f560ef27aa74df67b157c52d9d1/pkg/manager/impl/execution_manager.go#L301-L303
The text was updated successfully, but these errors were encountered: