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: The JSON sink mapper thorws the followng error when tryong to create a nested json format.
ERROR {io.siddhi.extension.map.json.sinkmapper.JsonSinkMapper} - Invalid json string : {"event":{"alertTypeData":{"PublisherName":"ee","AlertCategory":"rr","AlertType":"rr"},"recipientData":{"recipientType":"rr"}. Hence dropping the message.
Affected Product Version: wso2si-4.0.0, wso2si-tooling-4.0.0
OS, DB, other environment details and versions: N/A
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;
Related Issues: wso2/product-sp#1075
The text was updated successfully, but these errors were encountered:
Fix invalid json error given for a nested Json message
8bc53c2
See wso2/streaming-integrator#228 for more details.
Successfully merging a pull request may close this issue.
Description:
The JSON sink mapper thorws the followng error when tryong to create a nested json format.
Affected Product Version:
wso2si-4.0.0, wso2si-tooling-4.0.0
OS, DB, other environment details and versions:
N/A
Steps to reproduce:
Related Issues:
wso2/product-sp#1075
The text was updated successfully, but these errors were encountered: