You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@nifi.apache.org by "Chris Sampson (Jira)" <ji...@apache.org> on 2022/11/11 15:54:00 UTC

[jira] [Resolved] (NIFI-5165) PutElasticsearchHttp error handling doesn't properly extract ES6 error reason

     [ https://issues.apache.org/jira/browse/NIFI-5165?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Chris Sampson resolved NIFI-5165.
---------------------------------
    Resolution: Won't Fix

> PutElasticsearchHttp error handling doesn't properly extract ES6 error reason
> -----------------------------------------------------------------------------
>
>                 Key: NIFI-5165
>                 URL: https://issues.apache.org/jira/browse/NIFI-5165
>             Project: Apache NiFi
>          Issue Type: Bug
>    Affects Versions: 1.6.0
>            Reporter: Joe Percivall
>            Priority: Major
>
> In the event the overall call "succeeds" but a FlowFile within the batch fails (leading to the error handling here[1]), the error handling doesn't properly pull out the error reason. An example of such error in ES 6:
> {quote}{
>  "took": 0,
>  "ingest_took": 0,
>  "errors": true,
>  "items": [
>  {
>  "index": {
>  "_index": "theIndex",
>  "_type": "theType",
>  "_id": null,
>  "status": 400,
>  "error": {
>  "type": "illegal_argument_exception",
>  "reason": "pipeline with id [thePipeline] does not exist"
>  }
>  }
>  }
>  ]
> {quote}
> The problem is the extra nesting of "index" which is not accounted for.
>  
> [1] https://github.com/apache/nifi/blob/4df3eb567d8dff396b0e2380949e971d074dd04b/nifi-nar-bundles/nifi-elasticsearch-bundle/nifi-elasticsearch-processors/src/main/java/org/apache/nifi/processors/elasticsearch/PutElasticsearchHttp.java#L367



--
This message was sent by Atlassian Jira
(v8.20.10#820010)