Hi Elastic community,
I'm having a hard time figuring out what is wrong with my pipeline simulation. I'm trying to simulate this way
GET /_ingest/pipeline/test-pipeline/_simulate
{
"docs": [
{
"_source": {
"message": {
"customer_id" : "e55d52c8-b28e-4611-bcc9-d45d3095d158"
}
}
}
]
}
And I still get this error. No quotes are missing so why is ES is complaining about it?
{
"docs" : [
{
"error" : {
"root_cause" : [
{
"type" : "illegal_argument_exception",
"reason" : """com.fasterxml.jackson.core.JsonParseException: Unexpected character ('c' (code 99)): was expecting double-quote to start field name
at [Source: (org.elasticsearch.common.io.stream.ByteBufferStreamInput); line: 1, column: 3]"""
}
],
"type" : "illegal_argument_exception",
"reason" : """com.fasterxml.jackson.core.JsonParseException: Unexpected character ('c' (code 99)): was expecting double-quote to start field name
at [Source: (org.elasticsearch.common.io.stream.ByteBufferStreamInput); line: 1, column: 3]""",
"caused_by" : {
"type" : "json_parse_exception",
"reason" : """Unexpected character ('c' (code 99)): was expecting double-quote to start field name
at [Source: (org.elasticsearch.common.io.stream.ByteBufferStreamInput); line: 1, column: 3]"""
}
}
}
]
}