Elasticsearch:无法保存长度超过800k的文本

时间:2017-02-06 11:19:05

标签: elasticsearch

我正在尝试从MySQL迁移到Elasticsearch。其中一个字段在MySQL中的文本长度超过800k。 我的房产:

curl -XPUT 'http://localhost:9200/book' -d '
{
  "mappings": {
    "case": {
      "properties": {
        "lesson_id": {
          "type": "integer"
        },
        "lesson_date": {
          "type": "date",
          "format": "yyyy-MM-dd HH:mm:ss"
        },
        "lesson": {
          "type": "text"
        }
      }
    }
  }
}'

当我为记录运行迁移脚本时,我得到空白响应。

0 个答案:

没有答案