Skip to content

Commit

Permalink
Update project_solution.py
Browse files Browse the repository at this point in the history
  • Loading branch information
OleksiyF authored Sep 11, 2024
1 parent 78380b2 commit c0e5963
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions oleksiy/project_solution.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,23 +25,23 @@
# Define the SparkSubmitOperator
landing_to_bronze = SparkSubmitOperator(
application='dags/oleksiy/landing_to_bronze.py', # Path to your Spark job
task_id='spark_submit_job',
task_id='landing_to_bronze',
conn_id='spark-default', # Spark connection ID
verbose=1,
dag=dag,
)

bronze_to_silver = SparkSubmitOperator(
application='dags/oleksiy/bronze_to_silver.py', # Path to your Spark job
task_id='spark_submit_job',
task_id='bronze_to_silver',
conn_id='spark-default', # Spark connection ID
verbose=1,
dag=dag,
)

silver_to_gold = SparkSubmitOperator(
application='dags/oleksiy/silver_to_gold.py', # Path to your Spark job
task_id='spark_submit_job',
task_id='silver_to_gold',
conn_id='spark-default', # Spark connection ID
verbose=1,
dag=dag,
Expand Down

0 comments on commit c0e5963

Please sign in to comment.