1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
| public static final String MAPPING_TEMPLATE = "{\n" + " \"mappings\": {\n" + " \"properties\": {\n" + " \"id\":{\n" + " \"type\":\"keyword\"\n" + " },\n" + " \"name\":{\n" + " \"type\":\"text\",\n" + " \"analyzer\": \"ik_max_word\",\n" + " \"copy_to\": \"all\"\n" + " },\n" + " \"address\":{\n" + " \"type\":\"keyword\",\n" + " \"index\":\"false\"\n" + " },\n" + " \"price\":{\n" + " \"type\":\"integer\"\n" + " },\n" + " \"score\":{\n" + " \"type\":\"integer\"\n" + " },\n" + " \"brand\":{\n" + " \"type\":\"keyword\",\n" + " \"copy_to\": \"all\"\n" + " },\n" + " \"city\":{\n" + " \"type\":\"keyword\"\n" + " },\n" + " \"starName\":{\n" + " \"type\":\"keyword\"\n" + " },\n" + " \"business\":{\n" + " \"type\":\"keyword\",\n" + " \"copy_to\": \"all\"\n" + " },\n" + " \"location\":{\n" + " \"type\":\"geo_point\"\n" + " },\n" + " \"pic\":{\n" + " \"type\":\"keyword\",\n" + " \"index\":false\n" + " },\n" + " \"all\":{\n" + " \"type\":\"text\",\n" + " \"analyzer\": \"ik_max_word\"\n" + " }\n" + " }\n" + " }\n" + "}";
|