3
我使用CouchDB-River插件對ealsticsearch進行索引。目前,我想實現搜索用戶,其中一個簡化的文件將是這個樣子:通過CouchDB排除Elasticsearch索引的字段 - 河流
{
username: "john",
firstname: "John",
lastname: "Doe",
email: "[email protected]",
password: "someHash"
}
我不希望密碼在ES被編入索引,因爲我沒有看到任何使用這樣做,但也許我錯了(我對ES相當新)?
我沒有通過執行設立河:
curl -XPUT 'http://localhost/_river/st_user/_meta' -d '{
"type" : "couchdb",
"couchdb" : {
"host" : "localhost",
"port" : 5984,
"db" : "sportstracker_usertest",
"ignore_attachments":true,
"filter" : null
}
},
"index" : {
"index" : "tracker",
"type" : "user",
"bulk_size" : "100",
"bulk_timeout" : "10ms"
}
}'
,纔可以通過河(腳本過濾器)實現此或ES的映射?