potiuk commented on code in PR #45798:
URL: https://github.com/apache/airflow/pull/45798#discussion_r1922603611
##########
airflow/lineage/hook.py:
##########
@@ -159,6 +160,9 @@ def add_input_asset(
asset_extra: dict | None = None,
):
"""Add the input asset and its corresponding hook execution context to
the collector."""
+ if len(self._inputs) >= 100:
+ self.log.debug("Maximum number of asset inputs exceeded.
Skipping.")
Review Comment:
Are you sure it's just debug? I guess this will be rather surprising for
someone to see limited output without indication of what's happened?
--
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]