elasticsearch 使用批量插入发布 JSON 文件

elasticsearch 使用批量插入发布 JSON 文件

我有以下内容JSON 文件

我使用 awk 删除空格、尾随、下一行

awk -v ORS= -v OFS= '{$1=$1}1' data.json

我在 data.json 顶部添加了一个创建请求,后面跟着 \n 和其余数据。

{"create": {"_index":"socteam", "_type":"products"}} 

当我发出批量提交请求时,出现以下错误

CURL -XPUT http://localhost:9200/_bulk

{
  "took": 1,
  "errors": true,
  "items": [
    {
      "create": {
        "_index": "socteam",
        "_type": "products",
        "_id": "AVQuGPff-1Y7OIPIJaLX",
        "status": 400,
        "error": {
          "type": "mapper_parsing_exception",
          "reason": "failed to parse",
          "caused_by": {
            "type": "not_x_content_exception",
            "reason": "Compressor detection can only be called on some xcontent bytes or compressed xcontent bytes"
          }
        }
      }
    }
  ]

知道这个错误是什么意思吗?我没有创建任何映射,我正在使用 vanilla elasticsearch

以下是有效载荷样本

cat data.json | awk -v ORS= -v OFS= '{$1=$1}1' | awk -v idx=test -v type=data 'BEGIN{print "{\"create\": {\"_index\":\"" idx "\", \"_type\":\"" type"\"}}"}; {print}; END {printf "\n"}' >> $file
        exit 0
        fi
    fi

然后我使用httpie将文件提交到es

相关内容