GitHub user potiuk added a comment to the discussion: Airflow s3 xcom backend - Show the xcom values in airflow UI than the s3 path for the xcom
Not sure which implementation you use - but xcom backend has `orm_deserialize_value` method https://airflow.apache.org/docs/apache-airflow/stable/_api/airflow/models/xcom/index.html#airflow.models.xcom.BaseXCom.orm_deserialize_value that is used to produce the representation of the xcom shown in webserver. You should likely override it in the way that it shows values for small varlues (if you can make quick decision based on your knowledge about Xcom) - or just indication that the value is too big if it is - (this makes very little sense and it will crash your webserver if you display very long xcom value in the webserver). GitHub link: https://github.com/apache/airflow/discussions/44232#discussioncomment-11330858 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected]
