We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Description: In SP 4.2.0, the JSON sink mapper thorws the followng error when tryong to create a nested json format.
ERROR {org.wso2.extension.siddhi.map.json.sinkmapper.JsonSinkMapper} - Invalid json string : {"event":{"alertTypeData":{"PublisherName":"Umesha","AlertCategory":"Alert1","AlertType":"Hello"},"recipientData":{"recipientType":"Nimhani"}'}}. Hence dropping the message. (Encoded)
Affected Product Version: SP 4.2.0
OS, DB, other environment details and versions:
Steps to reproduce:
@App:name("PreDefinedProducerApp") @App:description("PreDefined Local Kafka Producer App") define stream DataStream(PublisherName string,AlertCategory String,AlertType String,recipientType String); @sink(type='log', @map(type='json', enclosing.element='event', validate.json='true', @payload("""{"alertTypeData":{"PublisherName":"{{PublisherName}}","AlertCategory":"{{AlertCategory}}","AlertType":"{{AlertType}}"},"recipientData":{"recipientType":"{{recipientType}}"}}"""))) define stream DataWriteStream (PublisherName string, AlertCategory string, AlertType string, recipientType string); from DataStream select PublisherName, AlertCategory, AlertType , recipientType insert into DataWriteStream;
The text was updated successfully, but these errors were encountered:
Fixed for the Streaming Integrator product in siddhi-io/siddhi#1723
Sorry, something went wrong.
No branches or pull requests
Description:
In SP 4.2.0, the JSON sink mapper thorws the followng error when tryong to create a nested json format.
Affected Product Version:
SP 4.2.0
OS, DB, other environment details and versions:
Steps to reproduce:
The text was updated successfully, but these errors were encountered: