2017-04-07 10 views

答えて

3

プラグインが応答を解析し、個別に各アクションの結果を処理のように見えます - Plugin code

だから、次は、警察は、個々のアクションのために働くリトライ - 悪い応答のPlugin retry policy

例:

{ 
    "took": 3, 
    "errors": true, 
    "items": [ 
     { "create": { 
      "_index": "website", 
      "_type": "blog", 
      "_id":  "123", 
      "status": 409, 
      "error": "DocumentAlreadyExistsException 
         [[website][4] [blog][123]: 
         document already exists]" 
     }}, 
     { "index": { 
      "_index": "website", 
      "_type": "blog", 
      "_id":  "123", 
      "_version": 5, 
      "status": 200 
     }} 
    ] 
} 
関連する問題