Have you considered the possibility of passing dynamic headers based on the values in the record? Perhaps something like the headers in Kafka SQL Connector - https://nightlies.apache.org/flink/flink-docs-master/docs/connectors/table/kafka/#available-metadata? ``` INSERT INTO topic SELECT T.id, MAP[ 'header1', CAST(T.header1 AS BYTES) ] AS `headers` FROM table AS T ``` There was no need for such a thing or could there be some difficulties with it?
Have you considered the possibility of passing dynamic headers based on the values in the record?
Perhaps something like the headers in Kafka SQL Connector - https://nightlies.apache.org/flink/flink-docs-master/docs/connectors/table/kafka/#available-metadata?
There was no need for such a thing or could there be some difficulties with it?