We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NEST is a high level elasticsearch client. it's very usefull. thank you .
I use Image Plugin for Elasticsearch(https://github.com/kzwang/elasticsearch-image)
I want Image plugin Mapping. How can I do that?
--exsample-- curl -XPUT 'localhost:9200/test/test/_mapping' -d '{ "test": { "properties": { "my_img": { "type": "image", "feature": { "CEDD": { "hash": "BIT_SAMPLING" }, "JCD": { "hash": ["BIT_SAMPLING", "LSH"] }, "FCTH": {} }, "metadata": { "jpeg.image_width": { "type": "string", "store": "yes" }, "jpeg.image_height": { "type": "string", "store": "yes" } } } } } }'
The text was updated successfully, but these errors were encountered:
a5d6f33
addendum #729 renamed test file
8268d60
Thank you @hojinjun this was not possible as of yet.
I just pushed support for this to our develop branch:
https://github.com/elasticsearch/elasticsearch-net/blob/develop/src/Tests/Nest.Tests.Unit/Core/Map/CustomMapping/ImagePluginMappingTests.cs#L24
Should be available in our next release or in a myget continous drop (https://www.myget.org/gallery/elasticsearch-net)
Sorry, something went wrong.
Thanks @Mpdreamz :)
No branches or pull requests
NEST is a high level elasticsearch client. it's very usefull. thank you .
I use Image Plugin for Elasticsearch(https://github.com/kzwang/elasticsearch-image)
I want Image plugin Mapping. How can I do that?
--exsample--
curl -XPUT 'localhost:9200/test/test/_mapping' -d '{
"test": {
"properties": {
"my_img": {
"type": "image",
"feature": {
"CEDD": {
"hash": "BIT_SAMPLING"
},
"JCD": {
"hash": ["BIT_SAMPLING", "LSH"]
},
"FCTH": {}
},
"metadata": {
"jpeg.image_width": {
"type": "string",
"store": "yes"
},
"jpeg.image_height": {
"type": "string",
"store": "yes"
}
}
}
}
}
}'
The text was updated successfully, but these errors were encountered: