Skip to content

graphgrid/airflow-provider-graphgrid

Repository files navigation

The airflow-provider-graphgrid package includes Operators and functionality in order to better streamline Airflow workflows within GraphGrid CDP.

Airflow DAGs can leverage the GraphGridDockerOperator and GraphGridMount via

from graphgrid_provider.operators.graphgrid_docker import \
    GraphGridDockerOperator, GraphGridMount

and use them as if they were a normal DockerOperator

t_0 = GraphGridDockerOperator(task_id='task_0',
                              dag=dag,
                              mounts=[GraphGridMount(target="/some_path",
                                                     source="/some_other_path",
                                                     type="bind")],
                              image="some-image",
                              auto_remove=True,
                              )

About

GraphGrid provider package for Airflow

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published