Replies: 1 comment 1 reply
-
That does seem to take far too long. I see you're using "hackernews_job" to perform this so I wonder if there's other dependencies being setup to fulfill that job rather than just materializing that single asset without using a job. In my testing if I materialize the same asset, or use |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I've just started working with Dagster and I'm noticing that the task execution times are quite long. I'm not sure if this is expected, or if I'm using it incorrectly.
I followed the tutorial Building a pipeline using asset definitions for my first attempt, but I added an additional asset to test things out:
I then manually materialized it, and according to the Events, the entire process from
RUN_START
toRUN_SUCCESS
took 22.3 seconds, withSTEP_WORKER_STARTING
toSTEP_WORKER_STARTED
alone taking over 10 seconds, and theSTEP_START
toSTEP_SUCCESS
related to the test taking 2.5 seconds.I'm having a hard time understanding why it would take so long to execute a simple print function. Have I made a mistake somewhere?
Beta Was this translation helpful? Give feedback.
All reactions