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
I'm having all sorts of issues with this connector. My avro schema has a field that is an array of records ([{}, {}, {}]). I want to include that what I'm sending to my MQTT topic, but I get A KCQL error occurred.Can't flatten from schema:Schema{ARRAY} by selecting 'myFieldThatIsAnArray'
I tried looking into this on my own, as came across using WITHSTRUCTURE as a possible solution. This is essentially what I tried doing:
INSERT INTO blah
SELECT feild1.subfield AS alias, field2.subfield AS alias2, field2.someArray
FROM blah WITHSTRUCTURE
But I got a really strange error: Encountered error A KCQL error occurred.alias2 can't be found in field1,field2
What version of the Stream Reactor are you reporting this issue for?
MQTT Sink Connector
What is the expected behaviour?
I want to do some kcql like the following, given that the key for my kafka record is an AVRO object
What was observed?
Doesn't work. We can do
INSERT INTO _key
but dynamic targets only work if the target is a field within the value.EDIT
Also found out this fails too:
causes the following:
The text was updated successfully, but these errors were encountered: