fluent-plugin-embedded-elasticsearch 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (53) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +46 -0
  3. data/conf/example.conf +32 -0
  4. data/lib/fluent/plugin/in_embedded_elasticsearch.rb +52 -0
  5. data/vendor/elasticsearch/LICENSE.txt +202 -0
  6. data/vendor/elasticsearch/NOTICE.txt +5 -0
  7. data/vendor/elasticsearch/README.textile +227 -0
  8. data/vendor/elasticsearch/bin/elasticsearch +184 -0
  9. data/vendor/elasticsearch/bin/elasticsearch-service-mgr.exe +0 -0
  10. data/vendor/elasticsearch/bin/elasticsearch-service-x64.exe +0 -0
  11. data/vendor/elasticsearch/bin/elasticsearch-service-x86.exe +0 -0
  12. data/vendor/elasticsearch/bin/elasticsearch.bat +79 -0
  13. data/vendor/elasticsearch/bin/elasticsearch.in.sh +64 -0
  14. data/vendor/elasticsearch/bin/plugin +49 -0
  15. data/vendor/elasticsearch/bin/plugin.bat +22 -0
  16. data/vendor/elasticsearch/bin/service.bat +231 -0
  17. data/vendor/elasticsearch/config/elasticsearch.yml +364 -0
  18. data/vendor/elasticsearch/config/logging.yml +56 -0
  19. data/vendor/elasticsearch/lib/elasticsearch-0.90.7.jar +0 -0
  20. data/vendor/elasticsearch/lib/jna-3.3.0.jar +0 -0
  21. data/vendor/elasticsearch/lib/jts-1.12.jar +0 -0
  22. data/vendor/elasticsearch/lib/log4j-1.2.17.jar +0 -0
  23. data/vendor/elasticsearch/lib/lucene-analyzers-common-4.5.1.jar +0 -0
  24. data/vendor/elasticsearch/lib/lucene-codecs-4.5.1.jar +0 -0
  25. data/vendor/elasticsearch/lib/lucene-core-4.5.1.jar +0 -0
  26. data/vendor/elasticsearch/lib/lucene-grouping-4.5.1.jar +0 -0
  27. data/vendor/elasticsearch/lib/lucene-highlighter-4.5.1.jar +0 -0
  28. data/vendor/elasticsearch/lib/lucene-join-4.5.1.jar +0 -0
  29. data/vendor/elasticsearch/lib/lucene-memory-4.5.1.jar +0 -0
  30. data/vendor/elasticsearch/lib/lucene-misc-4.5.1.jar +0 -0
  31. data/vendor/elasticsearch/lib/lucene-queries-4.5.1.jar +0 -0
  32. data/vendor/elasticsearch/lib/lucene-queryparser-4.5.1.jar +0 -0
  33. data/vendor/elasticsearch/lib/lucene-sandbox-4.5.1.jar +0 -0
  34. data/vendor/elasticsearch/lib/lucene-spatial-4.5.1.jar +0 -0
  35. data/vendor/elasticsearch/lib/lucene-suggest-4.5.1.jar +0 -0
  36. data/vendor/elasticsearch/lib/sigar/libsigar-amd64-freebsd-6.so +0 -0
  37. data/vendor/elasticsearch/lib/sigar/libsigar-amd64-linux.so +0 -0
  38. data/vendor/elasticsearch/lib/sigar/libsigar-amd64-solaris.so +0 -0
  39. data/vendor/elasticsearch/lib/sigar/libsigar-ia64-linux.so +0 -0
  40. data/vendor/elasticsearch/lib/sigar/libsigar-sparc-solaris.so +0 -0
  41. data/vendor/elasticsearch/lib/sigar/libsigar-sparc64-solaris.so +0 -0
  42. data/vendor/elasticsearch/lib/sigar/libsigar-universal-macosx.dylib +0 -0
  43. data/vendor/elasticsearch/lib/sigar/libsigar-universal64-macosx.dylib +0 -0
  44. data/vendor/elasticsearch/lib/sigar/libsigar-x86-freebsd-5.so +0 -0
  45. data/vendor/elasticsearch/lib/sigar/libsigar-x86-freebsd-6.so +0 -0
  46. data/vendor/elasticsearch/lib/sigar/libsigar-x86-linux.so +0 -0
  47. data/vendor/elasticsearch/lib/sigar/libsigar-x86-solaris.so +0 -0
  48. data/vendor/elasticsearch/lib/sigar/sigar-1.6.4.jar +0 -0
  49. data/vendor/elasticsearch/lib/sigar/sigar-amd64-winnt.dll +0 -0
  50. data/vendor/elasticsearch/lib/sigar/sigar-x86-winnt.dll +0 -0
  51. data/vendor/elasticsearch/lib/sigar/sigar-x86-winnt.lib +0 -0
  52. data/vendor/elasticsearch/lib/spatial4j-0.3.jar +0 -0
  53. metadata +109 -0
@@ -0,0 +1,364 @@
1
+ ##################### ElasticSearch Configuration Example #####################
2
+
3
+ # This file contains an overview of various configuration settings,
4
+ # targeted at operations staff. Application developers should
5
+ # consult the guide at <http://elasticsearch.org/guide>.
6
+ #
7
+ # The installation procedure is covered at
8
+ # <http://elasticsearch.org/guide/en/elasticsearch/reference/current/setup.html>.
9
+ #
10
+ # ElasticSearch comes with reasonable defaults for most settings,
11
+ # so you can try it out without bothering with configuration.
12
+ #
13
+ # Most of the time, these defaults are just fine for running a production
14
+ # cluster. If you're fine-tuning your cluster, or wondering about the
15
+ # effect of certain configuration option, please _do ask_ on the
16
+ # mailing list or IRC channel [http://elasticsearch.org/community].
17
+
18
+ # Any element in the configuration can be replaced with environment variables
19
+ # by placing them in ${...} notation. For example:
20
+ #
21
+ # node.rack: ${RACK_ENV_VAR}
22
+
23
+ # For information on supported formats and syntax for the config file, see
24
+ # <http://elasticsearch.org/guide/en/elasticsearch/reference/current/setup-configuration.html>
25
+
26
+
27
+ ################################### Cluster ###################################
28
+
29
+ # Cluster name identifies your cluster for auto-discovery. If you're running
30
+ # multiple clusters on the same network, make sure you're using unique names.
31
+ #
32
+ # cluster.name: elasticsearch
33
+
34
+
35
+ #################################### Node #####################################
36
+
37
+ # Node names are generated dynamically on startup, so you're relieved
38
+ # from configuring them manually. You can tie this node to a specific name:
39
+ #
40
+ # node.name: "Franz Kafka"
41
+
42
+ # Every node can be configured to allow or deny being eligible as the master,
43
+ # and to allow or deny to store the data.
44
+ #
45
+ # Allow this node to be eligible as a master node (enabled by default):
46
+ #
47
+ # node.master: true
48
+ #
49
+ # Allow this node to store data (enabled by default):
50
+ #
51
+ # node.data: true
52
+
53
+ # You can exploit these settings to design advanced cluster topologies.
54
+ #
55
+ # 1. You want this node to never become a master node, only to hold data.
56
+ # This will be the "workhorse" of your cluster.
57
+ #
58
+ # node.master: false
59
+ # node.data: true
60
+ #
61
+ # 2. You want this node to only serve as a master: to not store any data and
62
+ # to have free resources. This will be the "coordinator" of your cluster.
63
+ #
64
+ # node.master: true
65
+ # node.data: false
66
+ #
67
+ # 3. You want this node to be neither master nor data node, but
68
+ # to act as a "search load balancer" (fetching data from nodes,
69
+ # aggregating results, etc.)
70
+ #
71
+ # node.master: false
72
+ # node.data: false
73
+
74
+ # Use the Cluster Health API [http://localhost:9200/_cluster/health], the
75
+ # Node Info API [http://localhost:9200/_cluster/nodes] or GUI tools
76
+ # such as <http://github.com/lukas-vlcek/bigdesk> and
77
+ # <http://mobz.github.com/elasticsearch-head> to inspect the cluster state.
78
+
79
+ # A node can have generic attributes associated with it, which can later be used
80
+ # for customized shard allocation filtering, or allocation awareness. An attribute
81
+ # is a simple key value pair, similar to node.key: value, here is an example:
82
+ #
83
+ # node.rack: rack314
84
+
85
+ # By default, multiple nodes are allowed to start from the same installation location
86
+ # to disable it, set the following:
87
+ # node.max_local_storage_nodes: 1
88
+
89
+
90
+ #################################### Index ####################################
91
+
92
+ # You can set a number of options (such as shard/replica options, mapping
93
+ # or analyzer definitions, translog settings, ...) for indices globally,
94
+ # in this file.
95
+ #
96
+ # Note, that it makes more sense to configure index settings specifically for
97
+ # a certain index, either when creating it or by using the index templates API.
98
+ #
99
+ # See <http://elasticsearch.org/guide/en/elasticsearch/reference/current/index-modules.html> and
100
+ # <http://elasticsearch.org/guide/en/elasticsearch/reference/current/indices-create-index.html>
101
+ # for more information.
102
+
103
+ # Set the number of shards (splits) of an index (5 by default):
104
+ #
105
+ # index.number_of_shards: 5
106
+
107
+ # Set the number of replicas (additional copies) of an index (1 by default):
108
+ #
109
+ # index.number_of_replicas: 1
110
+
111
+ # Note, that for development on a local machine, with small indices, it usually
112
+ # makes sense to "disable" the distributed features:
113
+ #
114
+ # index.number_of_shards: 1
115
+ # index.number_of_replicas: 0
116
+
117
+ # These settings directly affect the performance of index and search operations
118
+ # in your cluster. Assuming you have enough machines to hold shards and
119
+ # replicas, the rule of thumb is:
120
+ #
121
+ # 1. Having more *shards* enhances the _indexing_ performance and allows to
122
+ # _distribute_ a big index across machines.
123
+ # 2. Having more *replicas* enhances the _search_ performance and improves the
124
+ # cluster _availability_.
125
+ #
126
+ # The "number_of_shards" is a one-time setting for an index.
127
+ #
128
+ # The "number_of_replicas" can be increased or decreased anytime,
129
+ # by using the Index Update Settings API.
130
+ #
131
+ # ElasticSearch takes care about load balancing, relocating, gathering the
132
+ # results from nodes, etc. Experiment with different settings to fine-tune
133
+ # your setup.
134
+
135
+ # Use the Index Status API (<http://localhost:9200/A/_status>) to inspect
136
+ # the index status.
137
+
138
+
139
+ #################################### Paths ####################################
140
+
141
+ # Path to directory containing configuration (this file and logging.yml):
142
+ #
143
+ # path.conf: /path/to/conf
144
+
145
+ # Path to directory where to store index data allocated for this node.
146
+ #
147
+ # path.data: /path/to/data
148
+ #
149
+ # Can optionally include more than one location, causing data to be striped across
150
+ # the locations (a la RAID 0) on a file level, favouring locations with most free
151
+ # space on creation. For example:
152
+ #
153
+ # path.data: /path/to/data1,/path/to/data2
154
+
155
+ # Path to temporary files:
156
+ #
157
+ # path.work: /path/to/work
158
+
159
+ # Path to log files:
160
+ #
161
+ # path.logs: /path/to/logs
162
+
163
+ # Path to where plugins are installed:
164
+ #
165
+ # path.plugins: /path/to/plugins
166
+
167
+
168
+ #################################### Plugin ###################################
169
+
170
+ # If a plugin listed here is not installed for current node, the node will not start.
171
+ #
172
+ # plugin.mandatory: mapper-attachments,lang-groovy
173
+
174
+
175
+ ################################### Memory ####################################
176
+
177
+ # ElasticSearch performs poorly when JVM starts swapping: you should ensure that
178
+ # it _never_ swaps.
179
+ #
180
+ # Set this property to true to lock the memory:
181
+ #
182
+ # bootstrap.mlockall: true
183
+
184
+ # Make sure that the ES_MIN_MEM and ES_MAX_MEM environment variables are set
185
+ # to the same value, and that the machine has enough memory to allocate
186
+ # for ElasticSearch, leaving enough memory for the operating system itself.
187
+ #
188
+ # You should also make sure that the ElasticSearch process is allowed to lock
189
+ # the memory, eg. by using `ulimit -l unlimited`.
190
+
191
+
192
+ ############################## Network And HTTP ###############################
193
+
194
+ # ElasticSearch, by default, binds itself to the 0.0.0.0 address, and listens
195
+ # on port [9200-9300] for HTTP traffic and on port [9300-9400] for node-to-node
196
+ # communication. (the range means that if the port is busy, it will automatically
197
+ # try the next port).
198
+
199
+ # Set the bind address specifically (IPv4 or IPv6):
200
+ #
201
+ # network.bind_host: 192.168.0.1
202
+
203
+ # Set the address other nodes will use to communicate with this node. If not
204
+ # set, it is automatically derived. It must point to an actual IP address.
205
+ #
206
+ # network.publish_host: 192.168.0.1
207
+
208
+ # Set both 'bind_host' and 'publish_host':
209
+ #
210
+ # network.host: 192.168.0.1
211
+
212
+ # Set a custom port for the node to node communication (9300 by default):
213
+ #
214
+ # transport.tcp.port: 9300
215
+
216
+ # Enable compression for all communication between nodes (disabled by default):
217
+ #
218
+ # transport.tcp.compress: true
219
+
220
+ # Set a custom port to listen for HTTP traffic:
221
+ #
222
+ # http.port: 9200
223
+
224
+ # Set a custom allowed content length:
225
+ #
226
+ # http.max_content_length: 100mb
227
+
228
+ # Disable HTTP completely:
229
+ #
230
+ # http.enabled: false
231
+
232
+
233
+ ################################### Gateway ###################################
234
+
235
+ # The gateway allows for persisting the cluster state between full cluster
236
+ # restarts. Every change to the state (such as adding an index) will be stored
237
+ # in the gateway, and when the cluster starts up for the first time,
238
+ # it will read its state from the gateway.
239
+
240
+ # There are several types of gateway implementations. For more information, see
241
+ # <http://elasticsearch.org/guide/en/elasticsearch/reference/current/modules-gateway.html>.
242
+
243
+ # The default gateway type is the "local" gateway (recommended):
244
+ #
245
+ # gateway.type: local
246
+
247
+ # Settings below control how and when to start the initial recovery process on
248
+ # a full cluster restart (to reuse as much local data as possible when using shared
249
+ # gateway).
250
+
251
+ # Allow recovery process after N nodes in a cluster are up:
252
+ #
253
+ # gateway.recover_after_nodes: 1
254
+
255
+ # Set the timeout to initiate the recovery process, once the N nodes
256
+ # from previous setting are up (accepts time value):
257
+ #
258
+ # gateway.recover_after_time: 5m
259
+
260
+ # Set how many nodes are expected in this cluster. Once these N nodes
261
+ # are up (and recover_after_nodes is met), begin recovery process immediately
262
+ # (without waiting for recover_after_time to expire):
263
+ #
264
+ # gateway.expected_nodes: 2
265
+
266
+
267
+ ############################# Recovery Throttling #############################
268
+
269
+ # These settings allow to control the process of shards allocation between
270
+ # nodes during initial recovery, replica allocation, rebalancing,
271
+ # or when adding and removing nodes.
272
+
273
+ # Set the number of concurrent recoveries happening on a node:
274
+ #
275
+ # 1. During the initial recovery
276
+ #
277
+ # cluster.routing.allocation.node_initial_primaries_recoveries: 4
278
+ #
279
+ # 2. During adding/removing nodes, rebalancing, etc
280
+ #
281
+ # cluster.routing.allocation.node_concurrent_recoveries: 2
282
+
283
+ # Set to throttle throughput when recovering (eg. 100mb, by default 20mb):
284
+ #
285
+ # indices.recovery.max_bytes_per_sec: 20mb
286
+
287
+ # Set to limit the number of open concurrent streams when
288
+ # recovering a shard from a peer:
289
+ #
290
+ # indices.recovery.concurrent_streams: 5
291
+
292
+
293
+ ################################## Discovery ##################################
294
+
295
+ # Discovery infrastructure ensures nodes can be found within a cluster
296
+ # and master node is elected. Multicast discovery is the default.
297
+
298
+ # Set to ensure a node sees N other master eligible nodes to be considered
299
+ # operational within the cluster. Set this option to a higher value (2-4)
300
+ # for large clusters (>3 nodes):
301
+ #
302
+ # discovery.zen.minimum_master_nodes: 1
303
+
304
+ # Set the time to wait for ping responses from other nodes when discovering.
305
+ # Set this option to a higher value on a slow or congested network
306
+ # to minimize discovery failures:
307
+ #
308
+ # discovery.zen.ping.timeout: 3s
309
+
310
+ # For more information, see
311
+ # <http://elasticsearch.org/guide/en/elasticsearch/reference/current/modules-discovery-zen.html>
312
+
313
+ # Unicast discovery allows to explicitly control which nodes will be used
314
+ # to discover the cluster. It can be used when multicast is not present,
315
+ # or to restrict the cluster communication-wise.
316
+ #
317
+ # 1. Disable multicast discovery (enabled by default):
318
+ #
319
+ # discovery.zen.ping.multicast.enabled: false
320
+ #
321
+ # 2. Configure an initial list of master nodes in the cluster
322
+ # to perform discovery when new nodes (master or data) are started:
323
+ #
324
+ # discovery.zen.ping.unicast.hosts: ["host1", "host2:port"]
325
+
326
+ # EC2 discovery allows to use AWS EC2 API in order to perform discovery.
327
+ #
328
+ # You have to install the cloud-aws plugin for enabling the EC2 discovery.
329
+ #
330
+ # For more information, see
331
+ # <http://elasticsearch.org/guide/en/elasticsearch/reference/current/modules-discovery-ec2.html>
332
+ #
333
+ # See <http://elasticsearch.org/tutorials/elasticsearch-on-ec2/>
334
+ # for a step-by-step tutorial.
335
+
336
+
337
+ ################################## Slow Log ##################################
338
+
339
+ # Shard level query and fetch threshold logging.
340
+
341
+ #index.search.slowlog.threshold.query.warn: 10s
342
+ #index.search.slowlog.threshold.query.info: 5s
343
+ #index.search.slowlog.threshold.query.debug: 2s
344
+ #index.search.slowlog.threshold.query.trace: 500ms
345
+
346
+ #index.search.slowlog.threshold.fetch.warn: 1s
347
+ #index.search.slowlog.threshold.fetch.info: 800ms
348
+ #index.search.slowlog.threshold.fetch.debug: 500ms
349
+ #index.search.slowlog.threshold.fetch.trace: 200ms
350
+
351
+ #index.indexing.slowlog.threshold.index.warn: 10s
352
+ #index.indexing.slowlog.threshold.index.info: 5s
353
+ #index.indexing.slowlog.threshold.index.debug: 2s
354
+ #index.indexing.slowlog.threshold.index.trace: 500ms
355
+
356
+ ################################## GC Logging ################################
357
+
358
+ #monitor.jvm.gc.ParNew.warn: 1000ms
359
+ #monitor.jvm.gc.ParNew.info: 700ms
360
+ #monitor.jvm.gc.ParNew.debug: 400ms
361
+
362
+ #monitor.jvm.gc.ConcurrentMarkSweep.warn: 10s
363
+ #monitor.jvm.gc.ConcurrentMarkSweep.info: 5s
364
+ #monitor.jvm.gc.ConcurrentMarkSweep.debug: 2s
@@ -0,0 +1,56 @@
1
+ # you can override this using by setting a system property, for example -Des.logger.level=DEBUG
2
+ es.logger.level: INFO
3
+ rootLogger: ${es.logger.level}, console, file
4
+ logger:
5
+ # log action execution errors for easier debugging
6
+ action: DEBUG
7
+ # reduce the logging for aws, too much is logged under the default INFO
8
+ com.amazonaws: WARN
9
+
10
+ # gateway
11
+ #gateway: DEBUG
12
+ #index.gateway: DEBUG
13
+
14
+ # peer shard recovery
15
+ #indices.recovery: DEBUG
16
+
17
+ # discovery
18
+ #discovery: TRACE
19
+
20
+ index.search.slowlog: TRACE, index_search_slow_log_file
21
+ index.indexing.slowlog: TRACE, index_indexing_slow_log_file
22
+
23
+ additivity:
24
+ index.search.slowlog: false
25
+ index.indexing.slowlog: false
26
+
27
+ appender:
28
+ console:
29
+ type: console
30
+ layout:
31
+ type: consolePattern
32
+ conversionPattern: "[%d{ISO8601}][%-5p][%-25c] %m%n"
33
+
34
+ file:
35
+ type: dailyRollingFile
36
+ file: ${path.logs}/${cluster.name}.log
37
+ datePattern: "'.'yyyy-MM-dd"
38
+ layout:
39
+ type: pattern
40
+ conversionPattern: "[%d{ISO8601}][%-5p][%-25c] %m%n"
41
+
42
+ index_search_slow_log_file:
43
+ type: dailyRollingFile
44
+ file: ${path.logs}/${cluster.name}_index_search_slowlog.log
45
+ datePattern: "'.'yyyy-MM-dd"
46
+ layout:
47
+ type: pattern
48
+ conversionPattern: "[%d{ISO8601}][%-5p][%-25c] %m%n"
49
+
50
+ index_indexing_slow_log_file:
51
+ type: dailyRollingFile
52
+ file: ${path.logs}/${cluster.name}_index_indexing_slowlog.log
53
+ datePattern: "'.'yyyy-MM-dd"
54
+ layout:
55
+ type: pattern
56
+ conversionPattern: "[%d{ISO8601}][%-5p][%-25c] %m%n"