You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Whenever we define a source connector in the middle of the pipeline (without defining the from section), KPOps automatically adds the FromSection to the source connector, which leads to the following error:
NotImplementedError: Kafka source connector doesn't support FromSection
This is probably an error that will occur with a producer.
One way to solve this issue is not to generate the from section automatically if the type is ProducerApp or SourceConnector. Alternatively, we can ignore the from section and instead of an exception, log a warning.
The text was updated successfully, but these errors were encountered:
Whenever we define a source connector in the middle of the pipeline (without defining the from section), KPOps automatically adds the FromSection to the source connector, which leads to the following error:
NotImplementedError: Kafka source connector doesn't support FromSection
This is probably an error that will occur with a producer.
One way to solve this issue is not to generate the from section automatically if the type is
ProducerApp
orSourceConnector
. Alternatively, we can ignore the from section and instead of an exception, log a warning.The text was updated successfully, but these errors were encountered: