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

Exponential error back-off in case of system errors #693

Merged
merged 7 commits into from
Feb 5, 2021
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions deployment/sandbox/flyte_generated.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9723,9 +9723,11 @@ data:
batching-interval: 2s
batch-size: -1
queue:
type: bucket
rate: 10
capacity: 100
type: maxof
rate: 100
capacity: 1000
base-delay: 5s
max-delay: 120s
sub-queue:
type: bucket
rate: 10
Expand Down Expand Up @@ -9806,7 +9808,7 @@ data:
kubernetes-url: "http://localhost:30082"
kind: ConfigMap
metadata:
name: flyte-propeller-config-t88d5b727h
name: flyte-propeller-config-4478hcfh2c
namespace: flyte
---
apiVersion: v1
Expand Down Expand Up @@ -10408,7 +10410,7 @@ spec:
serviceAccountName: flytepropeller
volumes:
- configMap:
name: flyte-propeller-config-t88d5b727h
name: flyte-propeller-config-4478hcfh2c
name: config-volume
---
apiVersion: apps/v1
Expand Down
12 changes: 7 additions & 5 deletions deployment/test/flyte_generated.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -569,9 +569,11 @@ data:
batching-interval: 2s
batch-size: -1
queue:
type: bucket
rate: 10
capacity: 100
type: maxof
rate: 100
capacity: 1000
base-delay: 5s
max-delay: 120s
sub-queue:
type: bucket
rate: 10
Expand Down Expand Up @@ -626,7 +628,7 @@ data:
kubernetes-url: "http://localhost:30082"
kind: ConfigMap
metadata:
name: flyte-propeller-config-c55k94mm2h
name: flyte-propeller-config-45fc6m5292
namespace: flyte
---
apiVersion: v1
Expand Down Expand Up @@ -1071,7 +1073,7 @@ spec:
serviceAccountName: flytepropeller
volumes:
- configMap:
name: flyte-propeller-config-c55k94mm2h
name: flyte-propeller-config-45fc6m5292
name: config-volume
---
apiVersion: apps/v1
Expand Down
2 changes: 1 addition & 1 deletion end2end/tests/endtoend.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ spec:
command:
- bash
- -c
image: ghcr.io/nuclyde-io/flytetools:e37ed7bdd44901a4e4c533b31f915355ab74dcf3
image: ghcr.io/flyteorg/flytetools:84b6091d8b2990164dc78505256ef32f4de5dae0
imagePullPolicy: IfNotPresent
name: flytetester
resources:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,11 @@ propeller:
batching-interval: 2s
batch-size: -1
queue:
type: bucket
rate: 10
capacity: 100
type: maxof
rate: 100
capacity: 1000
base-delay: 5s
max-delay: 120s
sub-queue:
type: bucket
rate: 10
Expand Down