springboard 0.20.0.RC1 → 0.20.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
1
1
  #!/bin/sh
2
2
 
3
- ES_CLASSPATH=$ES_CLASSPATH:$ES_HOME/lib/elasticsearch-0.20.0.RC1.jar:$ES_HOME/lib/*:$ES_HOME/lib/sigar/*
3
+ ES_CLASSPATH=$ES_CLASSPATH:$ES_HOME/lib/elasticsearch-0.20.0.jar:$ES_HOME/lib/*:$ES_HOME/lib/sigar/*
4
4
 
5
5
  if [ "x$ES_MIN_MEM" = "x" ]; then
6
6
  ES_MIN_MEM=256m
@@ -1,3 +1,3 @@
1
1
  module Springboard
2
- VERSION = "0.20.0.RC1"
2
+ VERSION = "0.20.0"
3
3
  end
@@ -1,6 +1,6 @@
1
1
  #!/bin/sh
2
2
 
3
- ES_CLASSPATH=$ES_CLASSPATH:$ES_HOME/lib/elasticsearch-0.20.0.RC1.jar:$ES_HOME/lib/*:$ES_HOME/lib/sigar/*
3
+ ES_CLASSPATH=$ES_CLASSPATH:$ES_HOME/lib/elasticsearch-0.20.0.jar:$ES_HOME/lib/*:$ES_HOME/lib/sigar/*
4
4
 
5
5
  if [ "x$ES_MIN_MEM" = "x" ]; then
6
6
  ES_MIN_MEM=256m
@@ -28,4 +28,4 @@ else
28
28
  JAVA=`which java`
29
29
  fi
30
30
 
31
- exec $JAVA -Xmx64m -Xms16m -Delasticsearch -Des.path.home="$ES_HOME" -cp "$ES_HOME/lib/*" org.elasticsearch.plugins.PluginManager $*
31
+ exec $JAVA $JAVA_OPTS -Xmx64m -Xms16m -Delasticsearch -Des.path.home="$ES_HOME" -cp "$ES_HOME/lib/*" org.elasticsearch.plugins.PluginManager $*
@@ -147,7 +147,7 @@
147
147
  # path.data: /path/to/data
148
148
  #
149
149
  # Can optionally include more than one location, causing data to be striped across
150
- # the locations (à la RAID 0) on a file level, favouring locations with most free
150
+ # the locations (a la RAID 0) on a file level, favouring locations with most free
151
151
  # space on creation. For example:
152
152
  #
153
153
  # path.data: /path/to/data1,/path/to/data2
@@ -338,7 +338,6 @@
338
338
 
339
339
  # Shard level query and fetch threshold logging.
340
340
 
341
- #index.search.slowlog.level: TRACE
342
341
  #index.search.slowlog.threshold.query.warn: 10s
343
342
  #index.search.slowlog.threshold.query.info: 5s
344
343
  #index.search.slowlog.threshold.query.debug: 2s
@@ -349,6 +348,11 @@
349
348
  #index.search.slowlog.threshold.fetch.debug: 500ms
350
349
  #index.search.slowlog.threshold.fetch.trace: 200ms
351
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
+
352
356
  ################################## GC Logging ################################
353
357
 
354
358
  #monitor.jvm.gc.ParNew.warn: 1000ms
@@ -16,9 +16,11 @@ logger:
16
16
  #discovery: TRACE
17
17
 
18
18
  index.search.slowlog: TRACE, index_search_slow_log_file
19
+ index.indexing.slowlog: TRACE, index_indexing_slow_log_file
19
20
 
20
21
  additivity:
21
22
  index.search.slowlog: false
23
+ index.indexing.slowlog: false
22
24
 
23
25
  appender:
24
26
  console:
@@ -42,3 +44,11 @@ appender:
42
44
  layout:
43
45
  type: pattern
44
46
  conversionPattern: "[%d{ISO8601}][%-5p][%-25c] %m%n"
47
+
48
+ index_indexing_slow_log_file:
49
+ type: dailyRollingFile
50
+ file: ${path.logs}/${cluster.name}_index_indexing_slowlog.log
51
+ datePattern: "'.'yyyy-MM-dd"
52
+ layout:
53
+ type: pattern
54
+ conversionPattern: "[%d{ISO8601}][%-5p][%-25c] %m%n"
metadata CHANGED
@@ -1,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: springboard
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.20.0.RC1
5
- prerelease: 7
4
+ version: 0.20.0
5
+ prerelease:
6
6
  platform: ruby
7
7
  authors:
8
8
  - Grant Rodgers
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-11-01 00:00:00.000000000 Z
12
+ date: 2012-12-11 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: ! "Packages up elasticsearch in a gem and adds a ruby executable to run
15
15
  it easily with relative config paths.\n Makes elasticsearch
@@ -47,7 +47,7 @@ files:
47
47
  - vendor/elasticsearch/bin/plugin
48
48
  - vendor/elasticsearch/config/elasticsearch.yml
49
49
  - vendor/elasticsearch/config/logging.yml
50
- - vendor/elasticsearch/lib/elasticsearch-0.20.0.RC1.jar
50
+ - vendor/elasticsearch/lib/elasticsearch-0.20.0.jar
51
51
  - vendor/elasticsearch/lib/jna-3.3.0.jar
52
52
  - vendor/elasticsearch/lib/jts-1.12.jar
53
53
  - vendor/elasticsearch/lib/log4j-1.2.17.jar
@@ -87,9 +87,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
87
87
  required_rubygems_version: !ruby/object:Gem::Requirement
88
88
  none: false
89
89
  requirements:
90
- - - ! '>'
90
+ - - ! '>='
91
91
  - !ruby/object:Gem::Version
92
- version: 1.3.1
92
+ version: '0'
93
93
  requirements: []
94
94
  rubyforge_project:
95
95
  rubygems_version: 1.8.23