Martim Passos
04/26/2021, 6:18 PMSwadhin Swain
04/27/2021, 5:45 PMMartim Passos
05/06/2021, 2:00 PMJai Kumaran
05/11/2021, 9:11 AMAlessandro
05/19/2021, 7:33 PMPaul Hörmann
05/25/2021, 3:14 PMraaid
06/02/2021, 1:22 PMAkshay Verma
06/03/2021, 2:52 PMAlex Remedios
06/04/2021, 12:12 PMPeter B
06/17/2021, 3:01 PMTobias Macey
07/01/2021, 1:26 PMMartim Passos
07/02/2021, 7:11 PMUttasarga Singh
07/15/2021, 8:14 PMDaniel Kim
07/15/2021, 10:12 PMmrdavidlaing
08/10/2021, 4:25 PMsumanta baral
08/13/2021, 7:58 PMGleb Mezhanskiy
08/19/2021, 4:13 PMPeter Bower
09/01/2021, 11:17 PMTom Hallett
09/02/2021, 2:18 PMpoke_interval: Time in seconds that the job should wait in between each tries
, to check the status of the sync job.
My goal: fivetran POST webhooks/events to my dagster application, so dagster is told when a sync is done (instead of long polling to see if a sync is done).
This obviously adds complexity to the dagster side: I’d need the solid to store state (in a db), that links the solid instance with the fivetran sync job. Then the dagster “application” would need a webserver to receive the webhook, lookup that state, and then complete the corresponding solid.
What this sounds like: the ability to add a small Flask application inside of dagster, to handle custom processing (dare I say “serverless” from the perspective of the data engineer).
Does anything close to this exist in dagster? Or should I build a custom app which handles all of this and calls the dagster api?Jared Kofron
09/30/2021, 9:48 PMdagster_airflow
module allows for using the Docker operator, and that's great, but I'd like to actually use the KubernetesOperator
in my situation and it's unclear how to do this. make_airflow_dag_for_operator
looks promising, but how do I build the ReconstructableRepository
that it wants? If anybody has experience in this or a good example to follow, I'd be thankful!Koby Kilimnik
10/14/2021, 8:15 AMKoby Kilimnik
10/14/2021, 10:31 AMJosh Lloyd
10/18/2021, 2:49 PMdinya
10/23/2021, 1:30 PMresource
-like objects from sensor
currently? I came here from dagster-io/dagster#3794FranciscoGS
10/26/2021, 4:43 PMBryan Chavez
10/29/2021, 5:38 PMMarc Keeling
11/03/2021, 4:32 PMwon
11/09/2021, 1:42 PMdocker_postgresql
, docker_user_code
, docker_dagit
, docker_daemon
)
See in UI my jobs.
Next go to lachpad and run any of jobs.
dagster starting new container with same image as my user_code container.
Then i get error:
dagster.core.errors.DagsterInvariantViolationError: Could not find pipeline 'ozon_fbs_job'. Found: 'my_job'.
File "/usr/local/lib/python3.7/site-packages/dagster/grpc/impl.py", line 75, in core_execute_run
recon_pipeline.get_definition()
File "/usr/local/lib/python3.7/site-packages/dagster/core/definitions/reconstructable.py", line 112, in get_definition
defn = self.repository.get_definition().get_pipeline(self.pipeline_name)
File "/usr/local/lib/python3.7/site-packages/dagster/core/definitions/repository.py", line 878, in get_pipeline
return self._repository_data.get_pipeline(name)
File "/usr/local/lib/python3.7/site-packages/dagster/core/definitions/repository.py", line 658, in get_pipeline
return self._pipelines.get_definition(pipeline_name)
File "/usr/local/lib/python3.7/site-packages/dagster/core/definitions/repository.py", line 141, in get_definition
for found_name in self.get_definition_names()
I haven't got job with my_job
name 🤯
Where is MY jobs? (ozon_stocks_job
, ozon_fbs_job
) 👀
project struct:
dagster_docker/
├───user_code/
│ ├───ops/
│ │ └───ozon_fbs.py
│ │ └───ozon_stocks.py
│ ├───resoutces/
│ │ └───db_resource.py
│ └───repo.py
├───dagster.yaml
├───docker-compose.yml
├───Dockerfile_dagster
├───Dockerfile_user_code
├───requirements.txt
├───workspace.yaml
Wher did i miss?Qumber Ali
11/12/2021, 12:42 PMrun_coordinator:
module: dagster.core.run_coordinator
class: QueuedRunCoordinator
config:
max_concurrent_runs: 10
tag_concurrency_limits:
- key: "Reports"
limit: 2
job details
@job(
resource_defs={"report_details": report_details.get_details},
tags={"type": "Reports"},
)
Qumber Ali
11/15/2021, 6:25 AM