12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- 创建索引
- POST http://172.19.103.68:9200/platform_information_push_record
- 查询索引
- GET http://172.19.103.68:9200/platform_information_push_record/
- 设置查询长度
- PUT settings http://172.19.103.68:9200/platform_information_push_record/_settings
- {
- "index": {
- "max_result_window": 500000
- }
- }
- 给索引加mapping
- POST http://172.19.103.68:9200/platform_information_push_record/platform_information_push_record/_mapping
- {
- "platform_information_push_record": {
- "properties": {
- "id": {
- "type": "string",
- "index": "not_analyzed"
- },
- "batchNo": {
- "type": "string",
- "index": "not_analyzed"
- },
- "type": {
- "type": "integer"
- "index": "not_analyzed"
- },
- "receiverCode": {
- "type": "string",
- "index": "not_analyzed"
- },
- "receiverName": {
- "type": "string",
- "index": "not_analyzed"
- },
- "informationId": {
- "type": "long",
- "index": "not_analyzed"
- },
- "informationTitle": {
- "type": "string",
- "index": "not_analyzed"
- },
- "informationContent": {
- "type": "string",
- "index": "not_analyzed"
- },
- "status": {
- "type": "integer"
- },
- "createTime": {
- "format": "strict_date_optional_time||epoch_millis",
- "type": "date"
- }
- }
- }
- }
|