我正在尝试从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"
}
}
}
}
}'
当我为记录运行迁移脚本时,我得到空白响应。