lively-lunch-9285
06/19/2025, 3:46 AMself.
, e.g. self.x
• and I want to access it on current.
, e.g. current.x
(accessing it in the same flow run)
But for the life of me, I can't find a way to do that. Could anyone help me out?victorious-lawyer-58417
06/19/2025, 4:28 AMcurrent
and not self
?flaky-plumber-70709
06/19/2025, 4:30 AMflaky-plumber-70709
06/19/2025, 4:32 AMlively-lunch-9285
06/23/2025, 5:58 PM@openlineage
decorator, I'm creating a
a. job ID for the whole flow (parent) -- if it's the start
step
b. job ID for the current step (child)
c. The decorator stores these two things on self.
-- so that this information can be accessed with in the step
2. Then within a step, I have a function called execute_sql(query: str)
a. Under the hood, this function should grab the step/child Job ID and emit an event to the OpenLineage backend tying the SQL inputs/outputs to that job ID