Elasticsearch が空の文字列を null 値と見なすかどうかを知りたいのですが、以下に示すマッピングに基づいて、それが行われていることがわかりません。null
によって提供される値を使用して、elasticsearch に空の文字列を およびインデックスと見なさせるにはどうすればよいですかnull_value
。私のマッピングを以下に示します。
{
"mapping": {
"my_typee": {
"properties": {
"autoRank": {
"type": "integer",
"null_value": 0,
"store": true,
"index": "analyzed"
}
}
}
}
}
前もって感謝します。