
search
文章平均质量分 71
iteye_3911
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
ElasticSearch (1) REST API -- ES server itself
http://www.elasticsearch.org/ http://elasticsearch-users.115913.n3.nabble.com/ https://groups.google.com/forum/?fromgroups=#!forum/elasticsearch ##### index settings ##### http://ES...原创 2012-11-14 16:14:58 · 130 阅读 · 0 评论 -
ElasticSearch (2) REST API -- How to Search
#get all the log events by logtype with a single value tomcat curl -XGET 'http://ES_HOST_SERVER:9200/INDEX_NAME/153299/_search' -d '{ "query" : { "term" : { "logtype" : "tomcat" } ...原创 2012-11-14 16:26:13 · 104 阅读 · 0 评论 -
ElasticSearch (3) Java API -- put mapping to index
// make sure the index existing before putting the mapping Map map = client.admin().cluster() .health(new ClusterHealthRequest(indexName)).actionGet() .getIndices(); // map is always ...原创 2012-11-14 16:54:42 · 322 阅读 · 0 评论 -
ElasticSearch (4) cluster -- sharding test
cluster setting shards : 5 replica : 0 There are 3 ES nodes. NODE_1 master NODE_2 NODE_3 After some indices are completed, using the segment api we can see that the...原创 2012-11-14 17:27:05 · 99 阅读 · 0 评论 -
ElasticSearch (5) Excellent Blog or Example
Data Visualization on ES http://www.elasticsearch.org/blog/2011/05/13/data-visualization-with-elasticsearch-and-protovis.html Search Engine Indexing http://en.wikipedia.org/wiki/Index_(search_en...原创 2012-12-26 10:41:16 · 126 阅读 · 0 评论 -
ElasticSearch (7) default index mapping
default mapping file : $ES_HOME/conf/default-mapping.json { "_default_" : { "_ttl" : { "enabled" : true, "default" : 7776000000 }, "_source" : { ...原创 2012-12-26 13:54:11 · 401 阅读 · 0 评论 -
ElasticSearch (6) cluster setting
configuration file : $ES_HOME/conf/elasticsearch.yml cluster.name : PPPPPP path.conf: /opt/PPPPPP/elasticsearch/conf index.number_of_replicas : 0 index.number_of_shards : 5 index.analysis.ana...原创 2012-12-26 13:54:24 · 436 阅读 · 0 评论 -
ElasticSearch (8) shard allocation
http://www.elasticsearch.org/guide/reference/index-modules/allocation.html #disk usage aware allocator plugin https://github.com/sonian/elasticsearch-equilibrium https://groups.google.c...原创 2013-01-03 10:41:50 · 139 阅读 · 0 评论