Skip to content

Commit

Permalink
Exponential error back-off in case of system errors (#693)
Browse files Browse the repository at this point in the history
  • Loading branch information
kumare3 committed Feb 5, 2021
1 parent fbe7e68 commit 0844a44
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 16 deletions.
12 changes: 7 additions & 5 deletions deployment/sandbox/flyte_generated.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9724,9 +9724,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 @@ -9807,7 +9809,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 @@ -10409,7 +10411,7 @@ spec:
serviceAccountName: flytepropeller
volumes:
- configMap:
name: flyte-propeller-config-t88d5b727h
name: flyte-propeller-config-4478hcfh2c
name: config-volume
---
apiVersion: apps/v1
Expand Down
14 changes: 8 additions & 6 deletions deployment/test/flyte_generated.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -570,9 +570,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 @@ -627,7 +629,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 @@ -1061,7 +1063,7 @@ spec:
valueFrom:
fieldRef:
fieldPath: metadata.name
image: ghcr.io/lyft/flytepropeller:v0.5.13
image: ghcr.io/flyteorg/flytepropeller:v0.5.13
imagePullPolicy: IfNotPresent
name: flytepropeller
ports:
Expand All @@ -1072,7 +1074,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:85ab24ff1025327a02cbd570ab96bbdded132ce9
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
2 changes: 1 addition & 1 deletion kustomize/overlays/test/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,4 @@ images:
# FlytePropeller
- name: flytepropeller # match images with this name
newTag: v0.5.13 # override the tag
newName: ghcr.io/lyft/flytepropeller # override the name
newName: ghcr.io/flyteorg/flytepropeller # override the name

0 comments on commit 0844a44

Please sign in to comment.