Re: [PR] Issue "XCom pickle results from DatabricksSqlOperator" Fixed [airflow]

2026-01-26 Thread via GitHub


github-actions[bot] closed pull request #59151: Issue "XCom pickle results from 
DatabricksSqlOperator" Fixed
URL: https://github.com/apache/airflow/pull/59151


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



Re: [PR] Issue "XCom pickle results from DatabricksSqlOperator" Fixed [airflow]

2026-01-21 Thread via GitHub


github-actions[bot] commented on PR #59151:
URL: https://github.com/apache/airflow/pull/59151#issuecomment-3781823204

   This pull request has been automatically marked as stale because it has not 
had recent activity. It will be closed in 5 days if no further activity occurs. 
Thank you for your contributions.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



Re: [PR] Issue "XCom pickle results from DatabricksSqlOperator" Fixed [airflow]

2025-12-07 Thread via GitHub


Fahad-Alam-Jamal commented on code in PR #59151:
URL: https://github.com/apache/airflow/pull/59151#discussion_r2596485811


##
ISSUE_59103_FIX_SUMMARY.md:
##


Review Comment:
   Done



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



Re: [PR] Issue "XCom pickle results from DatabricksSqlOperator" Fixed [airflow]

2025-12-07 Thread via GitHub


prdai commented on code in PR #59151:
URL: https://github.com/apache/airflow/pull/59151#discussion_r2596219622


##
ISSUE_59103_FIX_SUMMARY.md:
##


Review Comment:
   lets remove this irrelevant markdown file?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



[PR] Issue "XCom pickle results from DatabricksSqlOperator" Fixed [airflow]

2025-12-07 Thread via GitHub


Fahad-Alam-Jamal opened a new pull request, #59151:
URL: https://github.com/apache/airflow/pull/59151

   
   
   ## Fix DatabricksSqlOperator XCom pickle serialization
   
   closes: #59103
   
   ### Description
   This PR fixes the issue where `DatabricksSqlOperator` fails with 
`_pickle.PicklingError: Can't pickle ` when XCom push is 
enabled (`do_xcom_push=True`).
   
   ### Root Cause
   The Databricks SQL connector returns `databricks.sql.types.Row` objects, 
which are dynamically created classes that cannot be pickled. XCom requires all 
return values to be picklable for storage in the Airflow metadata database. 
When using the default `fetch_all_handler`, these unpicklable Row objects were 
returned directly without conversion.
   
   ### Solution
   Introduced a new `PicklableRow` wrapper class in `DatabricksSqlHook` that:
   - Wraps unpicklable Row objects and makes them picklable via a custom 
`__reduce__` method
   - Maintains full backward compatibility by delegating to an internal 
namedtuple
   - Supports all namedtuple interface operations: `_fields`, `_asdict()`, 
iteration, and attribute access
   - Properly handles field name renaming for invalid Python identifiers (e.g., 
`count(1)` → `_0`)
   
   ### Changes
   - **Hook**: Modified `DatabricksSqlHook.run()` to always convert Row objects 
to PicklableRow, even when no handler is provided
   - **Hook**: Updated `_make_common_data_structure()` to use PicklableRow 
instead of dynamic namedtuples
   - **Tests**: Added `test_xcom_pickle_results_with_row_objects()` to verify 
pickle serialization works correctly
   - **Backward Compatibility**: All 35 existing unit tests pass, confirming no 
breaking changes
   
   ### Testing
   - ✅ All 35 unit tests pass, including the new pickle test
   - ✅ Verified pickle.dumps() and pickle.loads() work correctly on converted 
Row objects
   - ✅ Confirmed `_fields` attribute returns properly renamed field names
   - ✅ Verified `_asdict()` method returns dictionaries with original field 
names
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



Re: [PR] Issue "XCom pickle results from DatabricksSqlOperator" Fixed [airflow]

2025-12-07 Thread via GitHub


boring-cyborg[bot] commented on PR #59151:
URL: https://github.com/apache/airflow/pull/59151#issuecomment-3621826780

   Congratulations on your first Pull Request and welcome to the Apache Airflow 
community! If you have any issues or are unsure about any anything please check 
our Contributors' Guide 
(https://github.com/apache/airflow/blob/main/contributing-docs/README.rst)
   Here are some useful points:
   - Pay attention to the quality of your code (ruff, mypy and type 
annotations). Our [prek-hooks]( 
https://github.com/apache/airflow/blob/main/contributing-docs/08_static_code_checks.rst#prerequisites-for-prek-hooks)
 will help you with that.
   - In case of a new feature add useful documentation (in docstrings or in 
`docs/` directory). Adding a new operator? Check this short 
[guide](https://github.com/apache/airflow/blob/main/airflow-core/docs/howto/custom-operator.rst)
 Consider adding an example DAG that shows how users should use it.
   - Consider using [Breeze 
environment](https://github.com/apache/airflow/blob/main/dev/breeze/doc/README.rst)
 for testing locally, it's a heavy docker but it ships with a working Airflow 
and a lot of integrations.
   - Be patient and persistent. It might take some time to get a review or get 
the final approval from Committers.
   - Please follow [ASF Code of 
Conduct](https://www.apache.org/foundation/policies/conduct) for all 
communication including (but not limited to) comments on Pull Requests, Mailing 
list and Slack.
   - Be sure to read the [Airflow Coding style]( 
https://github.com/apache/airflow/blob/main/contributing-docs/05_pull_requests.rst#coding-style-and-best-practices).
   - Always keep your Pull Requests rebased, otherwise your build might fail 
due to changes not related to your commits.
   Apache Airflow is a community-driven project and together we are making it 
better 🚀.
   In case of doubts contact the developers at:
   Mailing List: [email protected]
   Slack: https://s.apache.org/airflow-slack
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]