-
Notifications
You must be signed in to change notification settings - Fork 14.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
openlineage: don't run task instance listener in executor
Signed-off-by: Maciej Obuchowski <[email protected]>
- Loading branch information
1 parent
744aa60
commit c9de188
Showing
5 changed files
with
157 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
## | ||
# Licensed to the Apache Software Foundation (ASF) under one | ||
# or more contributor license agreements. See the NOTICE file | ||
# distributed with this work for additional information | ||
# regarding copyright ownership. The ASF licenses this file | ||
# to you under the Apache License, Version 2.0 (the | ||
# "License"); you may not use this file except in compliance | ||
# with the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, | ||
# software distributed under the License is distributed on an | ||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
# KIND, either express or implied. See the License for the | ||
# specific language governing permissions and limitations | ||
# under the License. | ||
from __future__ import annotations | ||
|
||
import datetime | ||
|
||
from airflow.models import DAG | ||
from airflow.operators.python import PythonOperator | ||
|
||
dag = DAG( | ||
dag_id="test_dag_xcom_openlineage", | ||
default_args={"owner": "airflow", "retries": 3, "start_date": datetime.datetime(2022, 1, 1)}, | ||
schedule="0 0 * * *", | ||
dagrun_timeout=datetime.timedelta(minutes=60), | ||
) | ||
|
||
|
||
def push_and_pull(ti, **kwargs): | ||
ti.xcom_push(key="pushed_key", value="asdf") | ||
ti.xcom_pull(key="pushed_key") | ||
|
||
|
||
task = PythonOperator(task_id="push_and_pull", python_callable=push_and_pull, dag=dag) | ||
|
||
if __name__ == "__main__": | ||
dag.cli() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# | ||
# Licensed to the Apache Software Foundation (ASF) under one | ||
# or more contributor license agreements. See the NOTICE file | ||
# distributed with this work for additional information | ||
# regarding copyright ownership. The ASF licenses this file | ||
# to you under the Apache License, Version 2.0 (the | ||
# "License"); you may not use this file except in compliance | ||
# with the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, | ||
# software distributed under the License is distributed on an | ||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
# KIND, either express or implied. See the License for the | ||
# specific language governing permissions and limitations | ||
# under the License. | ||
from __future__ import annotations | ||
|
||
from airflow.listeners import hookimpl | ||
|
||
|
||
class XComListener: | ||
def __init__(self, path: str, task_id: str): | ||
self.path = path | ||
self.task_id = task_id | ||
|
||
def write(self, line: str): | ||
with open(self.path, "a") as f: | ||
f.write(line + "\n") | ||
|
||
@hookimpl | ||
def on_task_instance_running(self, previous_state, task_instance, session): | ||
task_instance.xcom_push(key="listener", value="listener") | ||
task_instance.xcom_pull(task_ids=task_instance.task_id, key="listener") | ||
self.write("on_task_instance_running") | ||
|
||
@hookimpl | ||
def on_task_instance_success(self, previous_state, task_instance, session): | ||
read = task_instance.xcom_pull(task_ids=self.task_id, key="listener") | ||
self.write("on_task_instance_success") | ||
self.write(read) | ||
|
||
|
||
def clear(): | ||
pass |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters