Aman Saleem
06/27/2022, 8:36 AMmax_concurrent_runs
to en-queue runs to 50 but no. of runs dequeuing from the queue and coming in the in_progress
state is relatively low (like 3 to 5 avg.).
Any suggestion will be helpful. Thank you.
Here is my configuration:
Dagster version: 0.14.9
local_artifact_storage:
module: dagster.core.storage.root
class: LocalArtifactStorage
config:
base_dir: /home/ubuntu/dagster_home
run_storage:
module: dagster_postgres.run_storage
class: PostgresRunStorage
config:
postgres_db:
db_name: dagster_prod
hostname: 127.0.0.1
password: password
port: 5432
username: newuser
event_log_storage:
module: dagster_postgres.event_log
class: PostgresEventLogStorage
config:
postgres_db:
db_name: dagster_prod
hostname: 127.0.0.1
password: password
port: 5432
username: newuser
compute_logs:
module: dagster.core.storage.local_compute_log_manager
class: LocalComputeLogManager
config:
base_dir: /home/ubuntu/dagster_home/storage
schedule_storage:
module: dagster_postgres.schedule_storage
class: PostgresScheduleStorage
config:
postgres_db:
db_name: dagster_prod
hostname: 127.0.0.1
password: password
port: 5432
username: newuser
scheduler:
module: dagster.core.scheduler
class: DagsterDaemonScheduler
config: {}
run_coordinator:
module: dagster.core.run_coordinator
class: QueuedRunCoordinator
config:
max_concurrent_runs: 50
run_launcher:
module: dagster
class: DefaultRunLauncher
config: {}
daniel
06/27/2022, 2:26 PMAman Saleem
06/27/2022, 2:28 PMdaniel
06/27/2022, 2:29 PMAman Saleem
06/27/2022, 2:33 PMWhat would you say the average completion time is?so for one report avg. time is below 2 sec and for another report, it is between 2 to 3 min. we are getting multiple reports and each one’s completion time depends on the amount of data it carries in it. But the most frequent report (which is running every hour) completion time is below 2 sec
daniel
06/27/2022, 2:39 PMAman Saleem
06/27/2022, 2:40 PMdaniel
06/27/2022, 2:41 PMAman Saleem
06/27/2022, 2:46 PMdaniel
06/27/2022, 2:51 PMAman Saleem
06/27/2022, 2:54 PM