123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- 创建索引
- POST http://172.19.103.68:9200/hlw_quota_prod
- 查询索引
- GET http://172.19.103.68:9200/hlw_quota_prod/
- 给索引加mapping
- POST http://172.19.103.68:9200/hlw_quota_prod/hlw_quota_prod/_mapping
- {
- "hlw_quota_prod": {
- "properties": {
- "deptName": {
- "type": "string",
- "index": "not_analyzed"
- },
- "city": {
- "type": "string",
- "index": "not_analyzed"
- },
- "slaveKey4Name": {
- "type": "string",
- "index": "not_analyzed"
- },
- "doctorName": {
- "type": "string",
- "index": "not_analyzed"
- },
- "cityName": {
- "type": "string",
- "index": "not_analyzed"
- },
- "areaLevel": {
- "type": "string",
- "index": "not_analyzed"
- },
- "hospital": {
- "type": "string",
- "index": "not_analyzed"
- },
- "slaveKey3Name": {
- "type": "string",
- "index": "not_analyzed"
- },
- "quotaDate": {
- "type": "date"
- },
- "quotaCode": {
- "type": "string",
- "index": "not_analyzed"
- },
- "result2": {
- "type": "double"
- },
- "result1": {
- "type": "double"
- },
- "slaveKey1": {
- "type": "string",
- "index": "not_analyzed"
- },
- "slaveKey2": {
- "type": "string",
- "index": "not_analyzed"
- },
- "townName": {
- "type": "string",
- "index": "not_analyzed"
- },
- "slaveKey3": {
- "type": "string",
- "index": "not_analyzed"
- },
- "slaveKey4": {
- "type": "string",
- "index": "not_analyzed"
- },
- "town": {
- "type": "string",
- "index": "not_analyzed"
- },
- "slaveKey2Name": {
- "type": "string",
- "index": "not_analyzed"
- },
- "timeLevel": {
- "type": "string",
- "index": "not_analyzed"
- },
- "dept": {
- "type": "string",
- "index": "not_analyzed"
- },
- "hospitalName": {
- "type": "string",
- "index": "not_analyzed"
- },
- "doctor": {
- "type": "string",
- "index": "not_analyzed"
- },
- "createTime": {
- "type": "date"
- },
- "slaveKey1Name": {
- "type": "string",
- "index": "not_analyzed"
- }
- }
- }
- }
- 增加索引搜索大小
- PUT http://172.19.103.68:9200/hlw_quota_prod/_settings
- {
- "index": {
- "max_result_window": 500000
- }
- }
|