20

Elasticsearchの既存のインデックスに次の設定とマッピングを設定したいと思います。

{
    "analysis": {
        "analyzer": {
            "dot-analyzer": {
                "type": "custom",
                "tokenizer": "dot-tokenizer"
            }
        },
        "tokenizer": {
            "dot-tokenizer": {
                "type": "path_hierarchy",
                "delimiter": "."
            }
        }
    }
}

{
    "doc": {
        "properties": {
            "location": {
                "type": "string",
                "index_analyzer": "dot-analyzer",
                "search_analyzer": "keyword"
            }
        }
    }
}

次の2行のコードを追加しようとしました。

client.admin().indices().prepareUpdateSettings(Index).setSettings(settings).execute().actionGet();
client.admin().indices().preparePutMapping(Index).setType(Type).setSource(mapping).execute().actionGet();

しかし、これは結果です:

org.elasticsearch.index.mapper.MapperParsingException: Analyzer [dot-analyzer] not found for field [location]

誰?どうもありがとう、

スタイン


これはうまくいくようです:

if (client.admin().indices().prepareExists(Index).execute().actionGet().exists()) {            
    client.admin().indices().prepareClose(Index).execute().actionGet();
    client.admin().indices().prepareUpdateSettings(Index).setSettings(settings.string()).execute().actionGet();
    client.admin().indices().prepareOpen(Index).execute().actionGet();
    client.admin().indices().prepareDeleteMapping(Index).setType(Type).execute().actionGet();
    client.admin().indices().preparePutMapping(Index).setType(Type).setSource(mapping).execute().actionGet();
} else {
    client.admin().indices().prepareCreate(Index).addMapping(Type, mapping).setSettings(settings).execute().actionGet();
}
4

1 に答える 1

36

変更を送信した後に設定を見ると、アナライザーが存在しないことがわかります。実際、ライブ インデックスの設定の分析セクションを変更することはできません。必要な設定で作成することをお勧めします。それ以外の場合は、単に閉じることができます。

curl -XPOST localhost:9200/index_name/_close

インデックスが閉じている間に、新しい設定を送信できます。その後、インデックスを再度開くことができます。

curl -XPOST localhost:9200/index_name/_open

インデックスが閉じている間、クラスター リソースは使用されませんが、読み取りも書き込みもできません。Java API を使用してインデックスを閉じて再度開きたい場合は、次のコードを使用できます。

client.admin().indices().prepareClose(indexName).execute().actionGet();
//TODO update settings
client.admin().indices().prepareOpen(indexName).execute().actionGet();
于 2012-09-11T11:11:08.353 に答える