Elasticsearch添加mapping

來源:互聯網
上載者:User

標籤:build   sts   update   .exe   arch   ati   res   let   name   

1.建立索引

/**
* 建立索引
*
* @param indexName
*/
public static void createIndex(String indexName) {
//插入前刪除,以免報錯
boolean flag = client.admin().indices().exists(new IndicesExistsRequest().indices(new String[]{indexName})).actionGet().isExists();
if (flag){
client.admin().indices().prepareDelete(indexName).execute().actionGet();
}
client.admin().indices().prepareCreate(indexName).get();
//client.admin().indices().prepareCreate(indexName)
// .setSettings(Settings.builder()
// .put("index.number_of_shards", 3)
// .put("index.number_of_replicas", 2)
// )
// .get();
}

 

2.建立mapping

    /**     * 建立mapping,根據需求修改     *     * @param indexName     * @param typeName     */    public static void createMapping(String indexName, String typeName) {        XContentBuilder mappingType = null;        try {            mappingType = jsonBuilder()                    .startObject()                    .startObject(typeName)                    .startObject("properties")                    .startObject("id").field("type", "integer").field("store", "yes").endObject()                    .startObject("Name").field("type", "string").field("store", "yes").field("analyzer", "ik_smart").field("search_analyzer", "ik_smart").endObject()                    .startObject("updatedate").field("type", "date").field("store", "yes").endObject()                    .endObject()                    .endObject()                    .endObject();        } catch (IOException e) {            logger.error("build company mapping failed", e);        }        PutMappingRequest mapping = Requests.putMappingRequest(indexName).type(typeName).source(mappingType);        client.admin().indices().putMapping(mapping).actionGet();        client.admin().indices().prepareRefresh().get();        //client.close();    }

 

Elasticsearch添加mapping

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.