You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When multiple dag-only deploys were triggered in a small time frame, a few of them completed in ~5 seconds, and a few took ~10 minutes duration for deployment.
What CLI Version did you experience this bug?
Astro CLI Version: 1.31.0
This CLI bug is related to which Astronomer Platform?
[Y] Astro
Software
None/Unknown
What Operating System is the above CLI installed on?
MAC OS
🪜 Steps To Reproduce
create a deployment
Create few dag files in ( dags/ ) directory ( ~20 files) (bundle size less than 2mb)
Perform initial image deployment.
Run the following bash script to trigger multiple dag-only deploys.
#!/bin/bash
COMMAND="sudo astro deploy DEPLOY_ID --dags"
TIME_LOG="time_log.txt">"$TIME_LOG"foriin {1..40}
do
START_TIME=$(date +%s)$COMMAND
END_TIME=$(date +%s)
ELAPSED_TIME=$((END_TIME - START_TIME))echo"Execution $i: ${ELAPSED_TIME} seconds">>"$TIME_LOG"doneecho"Execution times logged in $TIME_LOG"
Describe the bug
When multiple dag-only deploys were triggered in a small time frame, a few of them completed in ~5 seconds, and a few took ~10 minutes duration for deployment.
What CLI Version did you experience this bug?
Astro CLI Version: 1.31.0
This CLI bug is related to which Astronomer Platform?
What Operating System is the above CLI installed on?
MAC OS
🪜 Steps To Reproduce
Sample timings observed:
The text was updated successfully, but these errors were encountered: