Unacceptable slowness #6633
Unanswered
sheepdragon
asked this question in
Q&A
Replies: 3 comments 5 replies
-
Time is consumed in this place. Why is it so slow? |
Beta Was this translation helpful? Give feedback.
2 replies
-
apiVersion: argoproj.io/v1alpha1
kind: Workflow
metadata:
generateName: dag-diamond-coinflip-
spec:
entrypoint: diamond
templates:
- name: diamond
dag:
tasks:
- name: A
template: echo
- name: B
depends: "A"
template: echo
- name: echo
container:
image: alpine:3.6
command: [sh, -c]
args: ["echo 123"] This is a simple example. Both sides are executed, eliminating the time-consuming of image pulling. Is time spent on k8s scheduling? Is it my k8s configuration? |
Beta Was this translation helpful? Give feedback.
1 reply
-
It looks like a forced wait |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
The following workflow executes a diamond workflow
In this example, no time-consuming operation is actually done. In theory, it should be finished very quickly. Why is the operation so slow and even slower after adding the actual logic
Beta Was this translation helpful? Give feedback.
All reactions