Merge branch 'master' of http://git.dev.yoho.cn/yoho-documents/share
Showing
3 changed files
with
511 additions
and
0 deletions
技术分享/es_configuration
0 → 100644
1 | +# 代表一个集群,集群中有多个节点,其中有一个为主节点,这个主节点是可以通过选举产生的,主从节点是对于集群内部来说的. | ||
2 | +# es的一个概念就是去中心化,字面上理解就是无中心节点,这是对于集群外部来说的,因为从外部来看es集群,在逻辑上是个整体,你与任何一个节点的通信和与整个es集群通信是等价的。 | ||
3 | +# cluster.name可以确定你的集群名称,当你的elasticsearch集群在同一个网段中elasticsearch会自动的找到具有相同cluster.name的elasticsearch服务. | ||
4 | +# 所以当同一个网段具有多个elasticsearch集群时cluster.name就成为同一个集群的标识. | ||
5 | + | ||
6 | +#cluster.name: elasticsearch | ||
7 | + | ||
8 | +#################################### Node ##################################### | ||
9 | + | ||
10 | +# 节点名称同理,可自动生成也可手动配置. | ||
11 | +#node.name: "Franz Kafka" | ||
12 | + | ||
13 | +# 允许一个节点是否可以成为一个master节点,es是默认集群中的第一台机器为master,如果这台机器停止就会重新选举master. | ||
14 | +#node.master: true | ||
15 | + | ||
16 | +# 允许该节点存储数据(默认开启) | ||
17 | +#node.data: true | ||
18 | + | ||
19 | +# 配置文件中给出了三种配置高性能集群拓扑结构的模式,如下: | ||
20 | +# 1. 如果你想让节点从不选举为主节点,只用来存储数据,可作为负载器 | ||
21 | +# node.master: false | ||
22 | +# node.data: true | ||
23 | +# | ||
24 | +# 2. 如果想让节点成为主节点,且不存储任何数据,并保有空闲资源,可作为协调器 | ||
25 | +# node.master: true | ||
26 | +# node.data: false | ||
27 | +# | ||
28 | +# 3. 如果想让节点既不称为主节点,又不成为数据节点,那么可将他作为搜索器,从节点中获取数据,生成搜索结果等 | ||
29 | +# node.master: false | ||
30 | +# node.data: false | ||
31 | + | ||
32 | +# 监控集群状态有一下插件和API可以使用: | ||
33 | +# Use the Cluster Health API [http://localhost:9200/_cluster/health], the | ||
34 | +# Node Info API [http://localhost:9200/_nodes] or GUI tools | ||
35 | +# such as <http://www.elasticsearch.org/overview/marvel/>, | ||
36 | +# <http://github.com/karmi/elasticsearch-paramedic>, | ||
37 | +# <http://github.com/lukas-vlcek/bigdesk> and | ||
38 | + | ||
39 | +# <http://mobz.github.com/elasticsearch-head> to inspect the cluster state. | ||
40 | + | ||
41 | +# A node can have generic attributes associated with it, which can later be used | ||
42 | +# for customized shard allocation filtering, or allocation awareness. An attribute | ||
43 | +# is a simple key value pair, similar to node.key: value, here is an example: | ||
44 | +# | ||
45 | +#node.rack: rack314 | ||
46 | + | ||
47 | +# By default, multiple nodes are allowed to start from the same installation location | ||
48 | +# to disable it, set the following: | ||
49 | +#node.max_local_storage_nodes: 1 | ||
50 | + | ||
51 | +#################################### Index #################################### | ||
52 | + | ||
53 | +# 设置索引的分片数,默认为5 | ||
54 | +#index.number_of_shards: 5 | ||
55 | + | ||
56 | +# 设置索引的副本数,默认为1: | ||
57 | +#index.number_of_replicas: 1 | ||
58 | + | ||
59 | +# 配置文件中提到的最佳实践是,如果服务器够多,可以将分片提高,尽量将数据平均分布到大集群中去 | ||
60 | +# 同时,如果增加副本数量可以有效的提高搜索性能 | ||
61 | +# 需要注意的是,"number_of_shards" 是索引创建后一次生成的,后续不可更改设置 | ||
62 | +# "number_of_replicas" 是可以通过API去实时修改设置的 | ||
63 | + | ||
64 | +#################################### Paths #################################### | ||
65 | + | ||
66 | +# 配置文件存储位置 | ||
67 | +#path.conf: /path/to/conf | ||
68 | + | ||
69 | +# 数据存储位置(单个目录设置) | ||
70 | +#path.data: /path/to/data | ||
71 | +# 多个数据存储位置,有利于性能提升 | ||
72 | +#path.data: /path/to/data1,/path/to/data2 | ||
73 | + | ||
74 | +# 临时文件的路径 | ||
75 | +#path.work: /path/to/work | ||
76 | + | ||
77 | +# 日志文件的路径 | ||
78 | +#path.logs: /path/to/logs | ||
79 | + | ||
80 | +# 插件安装路径 | ||
81 | +#path.plugins: /path/to/plugins | ||
82 | + | ||
83 | +#################################### Plugin ################################### | ||
84 | + | ||
85 | +# 设置插件作为启动条件,如果一下插件没有安装,则该节点服务不会启动 | ||
86 | +#plugin.mandatory: mapper-attachments,lang-groovy | ||
87 | + | ||
88 | +################################### Memory #################################### | ||
89 | + | ||
90 | +# 当JVM开始写入交换空间时(swapping)ElasticSearch性能会低下,你应该保证它不会写入交换空间 | ||
91 | +# 设置这个属性为true来锁定内存,同时也要允许elasticsearch的进程可以锁住内存,linux下可以通过 `ulimit -l unlimited` 命令 | ||
92 | +#bootstrap.mlockall: true | ||
93 | + | ||
94 | +# 确保 ES_MIN_MEM 和 ES_MAX_MEM 环境变量设置为相同的值,以及机器有足够的内存分配给Elasticsearch | ||
95 | +# 注意:内存也不是越大越好,一般64位机器,最大分配内存别才超过32G | ||
96 | + | ||
97 | +############################## Network And HTTP ############################### | ||
98 | + | ||
99 | +# 设置绑定的ip地址,可以是ipv4或ipv6的,默认为0.0.0.0 | ||
100 | +#network.bind_host: 192.168.0.1 | ||
101 | + | ||
102 | +# 设置其它节点和该节点交互的ip地址,如果不设置它会自动设置,值必须是个真实的ip地址 | ||
103 | +#network.publish_host: 192.168.0.1 | ||
104 | + | ||
105 | +# 同时设置bind_host和publish_host上面两个参数 | ||
106 | +#network.host: 192.168.0.1 | ||
107 | + | ||
108 | +# 设置节点间交互的tcp端口,默认是9300 | ||
109 | +#transport.tcp.port: 9300 | ||
110 | + | ||
111 | +# 设置是否压缩tcp传输时的数据,默认为false,不压缩 | ||
112 | +#transport.tcp.compress: true | ||
113 | + | ||
114 | +# 设置对外服务的http端口,默认为9200 | ||
115 | +#http.port: 9200 | ||
116 | + | ||
117 | +# 设置请求内容的最大容量,默认100mb | ||
118 | +#http.max_content_length: 100mb | ||
119 | + | ||
120 | +# 使用http协议对外提供服务,默认为true,开启 | ||
121 | +#http.enabled: false | ||
122 | + | ||
123 | +################################### Gateway ################################### | ||
124 | + | ||
125 | +# gateway的类型,默认为local即为本地文件系统,可以设置为本地文件系统 | ||
126 | +#gateway.type: local | ||
127 | + | ||
128 | +# 下面的配置控制怎样以及何时启动一整个集群重启的初始化恢复过程 | ||
129 | +# (当使用shard gateway时,是为了尽可能的重用local data(本地数据)) | ||
130 | + | ||
131 | +# 一个集群中的N个节点启动后,才允许进行恢复处理 | ||
132 | +#gateway.recover_after_nodes: 1 | ||
133 | + | ||
134 | +# 设置初始化恢复过程的超时时间,超时时间从上一个配置中配置的N个节点启动后算起 | ||
135 | +#gateway.recover_after_time: 5m | ||
136 | + | ||
137 | +# 设置这个集群中期望有多少个节点.一旦这N个节点启动(并且recover_after_nodes也符合), | ||
138 | +# 立即开始恢复过程(不等待recover_after_time超时) | ||
139 | +#gateway.expected_nodes: 2 | ||
140 | + | ||
141 | +############################# Recovery Throttling ############################# | ||
142 | + | ||
143 | +# 下面这些配置允许在初始化恢复,副本分配,再平衡,或者添加和删除节点时控制节点间的分片分配 | ||
144 | +# 设置一个节点的并行恢复数 | ||
145 | + | ||
146 | +# 1.初始化数据恢复时,并发恢复线程的个数,默认为4 | ||
147 | +#cluster.routing.allocation.node_initial_primaries_recoveries: 4 | ||
148 | +# | ||
149 | +# 2.添加删除节点或负载均衡时并发恢复线程的个数,默认为2 | ||
150 | +#cluster.routing.allocation.node_concurrent_recoveries: 2 | ||
151 | + | ||
152 | +# 设置恢复时的吞吐量(例如:100mb,默认为0无限制.如果机器还有其他业务在跑的话还是限制一下的好) | ||
153 | +#indices.recovery.max_bytes_per_sec: 20mb | ||
154 | + | ||
155 | +# 设置来限制从其它分片恢复数据时最大同时打开并发流的个数,默认为5 | ||
156 | +#indices.recovery.concurrent_streams: 5 | ||
157 | + | ||
158 | +# 注意: 合理的设置以上参数能有效的提高集群节点的数据恢复以及初始化速度 | ||
159 | + | ||
160 | +################################## Discovery ################################## | ||
161 | + | ||
162 | +# 设置这个参数来保证集群中的节点可以知道其它N个有master资格的节点.默认为1,对于大的集群来说,可以设置大一点的值(2-4) | ||
163 | +#discovery.zen.minimum_master_nodes: 1 | ||
164 | + | ||
165 | +# 探查的超时时间,默认3秒,提高一点以应对网络不好的时候,防止脑裂 | ||
166 | +#discovery.zen.ping.timeout: 3s | ||
167 | + | ||
168 | +# For more information, see | ||
169 | +# <http://elasticsearch.org/guide/en/elasticsearch/reference/current/modules-discovery-zen.html> | ||
170 | + | ||
171 | +# 设置是否打开多播发现节点.默认是true. | ||
172 | +# 当多播不可用或者集群跨网段的时候集群通信还是用单播吧 | ||
173 | +#discovery.zen.ping.multicast.enabled: false | ||
174 | + | ||
175 | +# 这是一个集群中的主节点的初始列表,当节点(主节点或者数据节点)启动时使用这个列表进行探测 | ||
176 | +#discovery.zen.ping.unicast.hosts: ["host1", "host2:port"] | ||
177 | + | ||
178 | +# Slow Log部分与GC log部分略,不过可以通过相关日志优化搜索查询速度 | ||
179 | + | ||
180 | +############## Memory(重点需要调优的部分) ################ | ||
181 | + | ||
182 | +# Cache部分: | ||
183 | +# es有很多种方式来缓存其内部与索引有关的数据.其中包括filter cache | ||
184 | + | ||
185 | +# filter cache部分: | ||
186 | +# filter cache是用来缓存filters的结果的.默认的cache type是node type.node type的机制是所有的索引内部的分片共享filter cache.node type采用的方式是LRU方式.即:当缓存达到了某个临界值之后,es会将最近没有使用的数据清除出filter cache.使让新的数据进入es. | ||
187 | + | ||
188 | +# 这个临界值的设置方法如下:indices.cache.filter.size 值类型:eg.:512mb 20%。默认的值是10%。 | ||
189 | + | ||
190 | +# out of memory错误避免过于频繁的查询时集群假死 | ||
191 | +# 1.设置es的缓存类型为Soft Reference,它的主要特点是据有较强的引用功能.只有当内存不够的时候,才进行回收这类内存,因此在内存足够的时候,它们通常不被回收.另外,这些引用对象还能保证在Java抛出OutOfMemory异常之前,被设置为null.它可以用于实现一些常用图片的缓存,实现Cache的功能,保证最大限度的使用内存而不引起OutOfMemory.在es的配置文件加上index.cache.field.type: soft即可. | ||
192 | +# 2.设置es最大缓存数据条数和缓存失效时间,通过设置index.cache.field.max_size: 50000来把缓存field的最大值设置为50000,设置index.cache.field.expire: 10m把过期时间设置成10分钟. | ||
193 | +#index.cache.field.max_size: 50000 | ||
194 | +#index.cache.field.expire: 10m | ||
195 | +#index.cache.field.type: soft | ||
196 | + | ||
197 | +# field data部分&&circuit breaker部分: | ||
198 | +# 用于field data 缓存的内存数量,主要用于当使用排序,faceting操作时,elasticsearch会将一些热点数据加载到内存中来提供给客户端访问,但是这种缓存是比较珍贵的,所以对它进行合理的设置. | ||
199 | + | ||
200 | +# 可以使用值:eg:50mb 或者 30%(节点 node heap内存量),默认是:unbounded | ||
201 | +#indices.fielddata.cache.size: unbounded | ||
202 | + | ||
203 | +# field的超时时间.默认是-1,可以设置的值类型: 5m | ||
204 | +#indices.fielddata.cache.expire: -1 | ||
205 | + | ||
206 | +# circuit breaker部分: | ||
207 | +# 断路器是elasticsearch为了防止内存溢出的一种操作,每一种circuit breaker都可以指定一个内存界限触发此操作,这种circuit breaker的设定有一个最高级别的设定:indices.breaker.total.limit 默认值是JVM heap的70%.当内存达到这个数量的时候会触发内存回收 | ||
208 | + | ||
209 | +# 另外还有两组子设置: | ||
210 | +#indices.breaker.fielddata.limit:当系统发现fielddata的数量达到一定数量时会触发内存回收.默认值是JVM heap的70% | ||
211 | + | ||
212 | +#indices.breaker.fielddata.overhead:在系统要加载fielddata时会进行预先估计,当系统发现要加载进内存的值超过limit * overhead时会进行进行内存回收.默认是1.03 | ||
213 | + | ||
214 | +#indices.breaker.request.limit:这种断路器是elasticsearch为了防止OOM(内存溢出),在每次请求数据时设定了一个固定的内存数量.默认值是40% | ||
215 | + | ||
216 | +#indices.breaker.request.overhead:同上,也是elasticsearch在发送请求时设定的一个预估系数,用来防止内存溢出.默认值是1 | ||
217 | + | ||
218 | +# Translog部分: | ||
219 | +# 每一个分片(shard)都有一个transaction log或者是与它有关的预写日志,(write log),在es进行索引(index)或者删除(delete)操作时会将没有提交的数据记录在translog之中,当进行flush 操作的时候会将tranlog中的数据发送给Lucene进行相关的操作.一次flush操作的发生基于如下的几个配置 | ||
220 | + | ||
221 | +#index.translog.flush_threshold_ops:当发生多少次操作时进行一次flush.默认是 unlimited | ||
222 | + | ||
223 | +#index.translog.flush_threshold_size:当translog的大小达到此值时会进行一次flush操作.默认是512mb | ||
224 | + | ||
225 | +#index.translog.flush_threshold_period:在指定的时间间隔内如果没有进行flush操作,会进行一次强制flush操作.默认是30m | ||
226 | + | ||
227 | +#index.translog.interval:多少时间间隔内会检查一次translog,来进行一次flush操作.es会随机的在这个值到这个值的2倍大小之间进行一次操作,默认是5s | ||
228 | + | ||
229 | +#index.gateway.local.sync:多少时间进行一次的写磁盘操作,默认是5s | ||
230 | + | ||
231 | +# 以上的translog配置都可以通过API进行动态的设置 |
技术分享/es_demo
0 → 100644
1 | +0x01 内存调整 | ||
2 | +http://bigbo.github.io/pages/2015/04/10/elasticsearch_config/ | ||
3 | +分词配置 | ||
4 | +https://github.com/hangxin1940/elasticsearch-cn-out-of-box/blob/master/config/elasticsearch.yml | ||
5 | + | ||
6 | +http://chenlinux.com/tags.html#logstash-ref | ||
7 | + | ||
8 | +搜索命令: | ||
9 | +GET books/_mapping?pretty //搜索books索引里面的结构,每个字段的详细信息 | ||
10 | +GET logstash-2015.04.22/_mapping?pretty //搜索logstash-2015.04.22索引里面的结构,每个字段的详细信息 | ||
11 | +GET logstash-2015.04.22/_search?pretty//搜索logstash-2015.04.22所有的数据 | ||
12 | +GET books/_search?pretty | ||
13 | +GET logstash-2015.04.09,logstash-2015.04.10/WindowsLog/_search?pretty //搜索logstash-2015.04.9与logstash-2015.04.10索引里下面类型为logstash-2015.04.10所有的数据 | ||
14 | +****把登陆日志单独分离 | ||
15 | + | ||
16 | +GET _search?pretty //查询全部的索引数据 | ||
17 | + | ||
18 | + | ||
19 | +//分析索引,查看索引具体是什么 | ||
20 | +GET logstash-2015.04.09/_analyze?field=message | ||
21 | +{ | ||
22 | +'服务器超时' | ||
23 | +} | ||
24 | +//结果排序 | ||
25 | +sort=字段:asc | ||
26 | +//结果排序 得分 | ||
27 | +sort=字段:asc&track_source=true | ||
28 | +//设置超时:默认情况没有超时 | ||
29 | +timeout=5s | ||
30 | +//查询结果窗口 | ||
31 | +size5&from=10 | ||
32 | +//小写扩展 | ||
33 | + | ||
34 | + | ||
35 | +二.索引,分片,副本 | ||
36 | +一般来说一个索引默认有5个分片,1个分片有1个副本 | ||
37 | + | ||
38 | +//设置自动是否自动创建索引,自动创建索引的名字可能引发异常 | ||
39 | +action.auto_create_index:false | ||
40 | +//创建已an,a开头的索引 | ||
41 | +action.auto_create_index:-an*,+a*,-* | ||
42 | +//手动设置分片与副本数量(创建一个xxx索引,1个分片2个副本) | ||
43 | +xput /xxx | ||
44 | +{ | ||
45 | + "settings":{ | ||
46 | + "number_of_shards":1, | ||
47 | + "number_of_replicas":2 | ||
48 | + } | ||
49 | +} | ||
50 | + | ||
51 | +//防止省略掉数据类型的相关信息,可以通设置numerice_detection:true | ||
52 | +PUT /XXX | ||
53 | +{ | ||
54 | + "mappings": | ||
55 | + { | ||
56 | + "numeric_detection":true | ||
57 | + } | ||
58 | +} | ||
59 | +//设置数据格式 | ||
60 | +PUT | ||
61 | +{ | ||
62 | + "mappings":{ | ||
63 | + "dynamic_date_formats":["yyyy-MM-dd hh:mm"] | ||
64 | + } | ||
65 | +} | ||
66 | + | ||
67 | +//设置每个字段的类型 | ||
68 | +PUT | ||
69 | +{ | ||
70 | + "mappings":{ | ||
71 | + "article":{ | ||
72 | + "dynamic":"false", | ||
73 | + "properties":{ | ||
74 | + "id":{"type":"string"} | ||
75 | + "content":{"type":"string"} | ||
76 | + "author":{"type":"string"} | ||
77 | + } | ||
78 | + } | ||
79 | + } | ||
80 | +} | ||
81 | + | ||
82 | + | ||
83 | +1.索引结构映射: | ||
84 | +PSOT /XXX你的索引 @post.json | ||
85 | +通过posts.json定义索引结构 | ||
86 | +{ | ||
87 | + "mappings":{ | ||
88 | + "post":{ | ||
89 | + "properties": | ||
90 | + { | ||
91 | + "id":{"type":"long","store":"yes","precision_step":"0"} | ||
92 | + "name":{"type":"string","store":"yes","index:"analyzed","precision_step":0} | ||
93 | + | ||
94 | + } | ||
95 | + | ||
96 | + } | ||
97 | + } | ||
98 | +} | ||
99 | + | ||
100 | + | ||
101 | +三、段合并 | ||
102 | +时间越长,越来越多的段被创建,因此,搜索性能会降低,(因为包括没有删除的文件)这时候就用段 | ||
103 | +系统默认会有 | ||
104 | +1.合并策略 | ||
105 | +2.合并调度器 | ||
106 | +3.合并因子 | ||
107 | + | ||
108 | +四、elasticeearch搜索 | ||
109 | +0.过滤字段查询 | ||
110 | +{ | ||
111 | + "query":{ "query_string":{"query":"title:xxxxx"}} | ||
112 | +} | ||
113 | + | ||
114 | + | ||
115 | +分页属性 from从第多少条开始,默认为0,size,查询多少条,默认为10 | ||
116 | +{ | ||
117 | + "from":9 | ||
118 | + "size":20 | ||
119 | + "query":{ | ||
120 | + } | ||
121 | +} | ||
122 | + | ||
123 | +1.文档版本属性 version:true | ||
124 | +2.过滤字段 fields 如果没有指定则:返回_source | ||
125 | +} | ||
126 | +GET /index-namewangwei2312/_search?pretty=true | ||
127 | +{ | ||
128 | + "fields": ["CheckId","Info","Tags"], | ||
129 | + "size": 2, | ||
130 | + "query": {"query_string": { | ||
131 | + "query": "Tags!=\" \"" | ||
132 | + }} | ||
133 | + | ||
134 | +} | ||
135 | + | ||
136 | +3.部分字段 include 和 exclude属性,可以基于属性来包含或排除字段,例如:查询已tt开头,排除已xx揭开它的字段 | ||
137 | +{ | ||
138 | + | ||
139 | +} | ||
140 | + | ||
141 | +五,使用聚合 | ||
142 | +1.聚合查询使用aggs 聚合使用stats key时候,使用的字段不能用字符串类型,key为terms 时候,使用字段能用字符串类型, | ||
143 | +例子:words统计每种AgentId聚合的而数量 | ||
144 | +GET /hzins.applicationlog.2015.05.07/_search?search_type=count&pretty | ||
145 | +{ | ||
146 | + "aggs" : { | ||
147 | + "agentIds" : { | ||
148 | + "stats" : { | ||
149 | + "field" : "ReceivedOnUtc" | ||
150 | + } | ||
151 | + }, | ||
152 | + "words":{ | ||
153 | + "terms":{ | ||
154 | + "field":"AgentId" | ||
155 | + } | ||
156 | + } | ||
157 | + } | ||
158 | +} | ||
159 | + | ||
160 | +2.聚合区分2种聚合: | ||
161 | +a.度量聚合,接收一个输入文档集,并生成至少一个统计值 | ||
162 | +(min,max,sum,avg)聚合,不能为字符串类型字段 | ||
163 | +value_count聚合,使用字符串的字段做聚合 | ||
164 | +{ | ||
165 | +"aggs": { | ||
166 | + "number_of_items": { | ||
167 | + "value_count": { | ||
168 | + "field": "AgentId" | ||
169 | + } | ||
170 | + } | ||
171 | + } | ||
172 | +} | ||
173 | +c.桶聚合 | ||
174 | +terms聚合,字段中每个词条返回一个桶,这允许你生成字段每个值得统计 | ||
175 | +"aggs": { | ||
176 | + "availability": { | ||
177 | + "terms": { | ||
178 | + "field": "EventType" | ||
179 | + } | ||
180 | + } | ||
181 | + } | ||
182 | + | ||
183 | + | ||
184 | + | ||
185 | +****复杂例子: | ||
186 | +1.根据2个字段纬度聚合查询,且按创建时间排序 | ||
187 | +GET hzins.applicationlog.2015.06.19/_search?search_type=count | ||
188 | +{ | ||
189 | + "aggs": { | ||
190 | + "AgentIds": { | ||
191 | + "terms": { | ||
192 | + "size": 95, | ||
193 | + "field": "AgentId" | ||
194 | + }, | ||
195 | + "aggs": { | ||
196 | + "terms": { | ||
197 | + "terms": { | ||
198 | + "field": "EventType", | ||
199 | + "size": 90 | ||
200 | + } | ||
201 | + } | ||
202 | + } | ||
203 | + } | ||
204 | + } | ||
205 | + ,"sort": [ | ||
206 | + { | ||
207 | + "CreateTime": { | ||
208 | + "order": "asc" | ||
209 | + } | ||
210 | + } | ||
211 | + ] | ||
212 | +} | ||
213 | + | ||
214 | + | ||
215 | +2.根据多个字段分割查询,且按创建时间排序 | ||
216 | +GET hzins.applicationlog.2015.06.17test2/_search?pretty=true | ||
217 | +{ | ||
218 | + "from":1, | ||
219 | + "size":50, | ||
220 | + "query": | ||
221 | + { | ||
222 | + "bool": | ||
223 | + { | ||
224 | + "must": | ||
225 | + [ | ||
226 | + { | ||
227 | + "term": | ||
228 | + { | ||
229 | + "EventType": | ||
230 | + { | ||
231 | + "value":"ERROR" | ||
232 | + | ||
233 | + } | ||
234 | + } | ||
235 | + } | ||
236 | + , | ||
237 | + { | ||
238 | + "term": | ||
239 | + { | ||
240 | + "AgentId": | ||
241 | + { | ||
242 | + "value":"cps.jumi18.com" | ||
243 | + | ||
244 | + } | ||
245 | + | ||
246 | + } | ||
247 | + | ||
248 | + } | ||
249 | + | ||
250 | + ] | ||
251 | + | ||
252 | + } | ||
253 | + | ||
254 | + } | ||
255 | + ,"sort": [ | ||
256 | + { | ||
257 | + "CreateTime": { | ||
258 | + "order": "desc" | ||
259 | + } | ||
260 | + } | ||
261 | + ] | ||
262 | + | ||
263 | +} | ||
264 | + | ||
265 | +更多例子: | ||
266 | +GET hzins.applicationlog.2015.06.19/_search | ||
267 | +{ "from":0, "size":15,"query":{ "bool": {"must":[{"term":{ "EventType":{"value":"ERROR"} } },{"term":{ "AgentId":{"value":"m.hzins.com"} } },{"range":{"CreateTime":{"gte":"2015-06-23 00:00:00","lte":"2015-06-23 23:59:59"}}}]}}, | ||
268 | + | ||
269 | + "sort":[{"CreateTime":{"order":"desc"}}] | ||
270 | + | ||
271 | +} | ||
272 | + | ||
273 | +有时候可能属性没有生效则需要下面操作 | ||
274 | + | ||
275 | +PUT hzins.applicationlog.2015.06.19test/hz_app_log/_mapping | ||
276 | +{ | ||
277 | + "properties": { | ||
278 | + "CreateTime": {"type": "date", "format": "YYYY-MM-DD HH:mm:ss"} | ||
279 | + } | ||
280 | +} |
新员工入职培训/技术部-java-frw-Shopping模块&core模块.docx
0 → 100644
No preview for this file type
-
Please register or login to post a comment