-
Notifications
You must be signed in to change notification settings - Fork 129
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Correct loading sources, incorrect loading sinks #75
Comments
@laurensdv You need to add |
@stheppi I think this is not the only error, when I fill in 'topics', it still complains that the 'class' is missing, it results in an error that no class can be found that matches 'undefined' which makes sense because after clicking new on e.g. the MQTT sink, no class appears in the class: (no icon either). It's also strange that the sample configuration is not preloaded either (it used to before) However as mentioned before, all of this works (filling in the class name and loading the sample configdef) with any (e.g. MQTT) source connector with the same Kafka deployment.
|
facing exactly same issue. |
Currently this line is forbidding you to get all the configs since they are collected through validate REST endpoint as @stheppi said https://github.com/jklukas/kafka/blob/ef1969011909bb6134af77ac03fc7d7c64eed3aa/connect/runtime/src/main/java/org/apache/kafka/connect/runtime/AbstractHerder.java#L264 This is new at Kafka v1.1 and here is issue on Kafka jira https://issues.apache.org/jira/browse/KAFKA-6806?page=com.atlassian.jira.plugin.system.issuetabpanels%3Acomment-tabpanel&focusedCommentId=16512110#comment-16512110 The only workaround is to use cli in console and push connectors through it |
When the error is: |
With the latest kafka-connect-ui docker (2018-03-21):
loading the sources is OK (when creating a new Kafka Connect Source)
but results in an empty (class) when creating a new sink.
This also prevents from activating the "CREATE" button when putting a new configuration in the input field (the validation of the input is broken).
I also get the following HTTP 500 error on /api/cluster/connector-plugins/com.datamountaineer.streamreactor.connect.mqtt.sink.MqttSinkConnector/config/validate (probably due to the empty properties template):
{error_code: 500, message: "Must configure one of topics or topics.regex"} error_code : 500 message : "Must configure one of topics or topics.regex"
The text was updated successfully, but these errors were encountered: