I am using jqpipe-go to evaluate jq syntax expressions on JSON data. Every time I ingest a large volume of JSON data using my program and evaluate a syntax expression (stored in a config file), jqpipe-go.Eval() will return "unexplained jq failure" errors in a non-deterministic manner. These errors are not related to what the JSON data contains, because they'll occur when running my program on static tests.
Example expression:
"{createdBy: .userIdentity.arn}"
Bug report
I am using jqpipe-go to evaluate jq syntax expressions on JSON data. Every time I ingest a large volume of JSON data using my program and evaluate a syntax expression (stored in a config file),
jqpipe-go.Eval()
will return"unexplained jq failure"
errors in a non-deterministic manner. These errors are not related to what the JSON data contains, because they'll occur when running my program on static tests.Example expression:
"{createdBy: .userIdentity.arn}"
Example JSON object:
Do you have any insight into why I'm seeing non-deterministic errors? The full program can be found here.