springboard 0.18.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (48) hide show
  1. data/.gitignore +17 -0
  2. data/Gemfile +4 -0
  3. data/LICENSE +22 -0
  4. data/README.md +63 -0
  5. data/Rakefile +23 -0
  6. data/bin/elasticsearch +18 -0
  7. data/bin/es_plugin +3 -0
  8. data/lib/springboard/generators/USAGE +9 -0
  9. data/lib/springboard/generators/config_generator.rb +24 -0
  10. data/lib/springboard/generators/templates/elasticsearch.in.sh +47 -0
  11. data/lib/springboard/generators/templates/elasticsearch.yml +7 -0
  12. data/lib/springboard/generators/templates/logging.yml +30 -0
  13. data/lib/springboard/railtie.rb +13 -0
  14. data/lib/springboard/tasks.rb +8 -0
  15. data/lib/springboard/version.rb +3 -0
  16. data/lib/springboard.rb +1 -0
  17. data/springboard.gemspec +18 -0
  18. data/vendor/elasticsearch/LICENSE.txt +537 -0
  19. data/vendor/elasticsearch/NOTICE.txt +12 -0
  20. data/vendor/elasticsearch/README.textile +223 -0
  21. data/vendor/elasticsearch/bin/elasticsearch +181 -0
  22. data/vendor/elasticsearch/bin/elasticsearch.in.sh +47 -0
  23. data/vendor/elasticsearch/bin/plugin +31 -0
  24. data/vendor/elasticsearch/config/elasticsearch.yml +337 -0
  25. data/vendor/elasticsearch/config/logging.yml +44 -0
  26. data/vendor/elasticsearch/lib/elasticsearch-0.18.7.jar +0 -0
  27. data/vendor/elasticsearch/lib/jline-0.9.94.jar +0 -0
  28. data/vendor/elasticsearch/lib/jna-3.2.7.jar +0 -0
  29. data/vendor/elasticsearch/lib/log4j-1.2.16.jar +0 -0
  30. data/vendor/elasticsearch/lib/lucene-analyzers-3.5.0.jar +0 -0
  31. data/vendor/elasticsearch/lib/lucene-core-3.5.0.jar +0 -0
  32. data/vendor/elasticsearch/lib/lucene-highlighter-3.5.0.jar +0 -0
  33. data/vendor/elasticsearch/lib/lucene-memory-3.5.0.jar +0 -0
  34. data/vendor/elasticsearch/lib/lucene-queries-3.5.0.jar +0 -0
  35. data/vendor/elasticsearch/lib/sigar/libsigar-amd64-freebsd-6.so +0 -0
  36. data/vendor/elasticsearch/lib/sigar/libsigar-amd64-linux.so +0 -0
  37. data/vendor/elasticsearch/lib/sigar/libsigar-amd64-solaris.so +0 -0
  38. data/vendor/elasticsearch/lib/sigar/libsigar-ia64-linux.so +0 -0
  39. data/vendor/elasticsearch/lib/sigar/libsigar-sparc-solaris.so +0 -0
  40. data/vendor/elasticsearch/lib/sigar/libsigar-sparc64-solaris.so +0 -0
  41. data/vendor/elasticsearch/lib/sigar/libsigar-universal-macosx.dylib +0 -0
  42. data/vendor/elasticsearch/lib/sigar/libsigar-universal64-macosx.dylib +0 -0
  43. data/vendor/elasticsearch/lib/sigar/libsigar-x86-freebsd-5.so +0 -0
  44. data/vendor/elasticsearch/lib/sigar/libsigar-x86-freebsd-6.so +0 -0
  45. data/vendor/elasticsearch/lib/sigar/libsigar-x86-linux.so +0 -0
  46. data/vendor/elasticsearch/lib/sigar/libsigar-x86-solaris.so +0 -0
  47. data/vendor/elasticsearch/lib/sigar/sigar-1.6.4.jar +0 -0
  48. metadata +114 -0
data/.gitignore ADDED
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in elasticsearch-server.gemspec
4
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2012 Grant Rodgers
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,63 @@
1
+ # Springboard
2
+
3
+ Makes it dead simple to run [elasticsearch](/elasticsearch/elasticsearch)
4
+ from your rails project. No external dependencies except java. Just
5
+ bundle and go!
6
+
7
+ Note this is not recommended for use in production environments. Use a
8
+ real elasticsearch deployment there. Only use this for development purposes.
9
+
10
+ ## Installation
11
+
12
+ Add this line to your application's Gemfile:
13
+
14
+ gem 'springboard'
15
+
16
+ And then execute:
17
+
18
+ $ bundle
19
+
20
+ Or install it yourself as:
21
+
22
+ $ gem install springboard
23
+
24
+ ## Versioning
25
+
26
+ Springboard uses elasticsearch version numbers so you can require
27
+ specific elasticsearch versions in your Gemfile. Create an issue or pull
28
+ request if you need a version of the gem with a particular elasticsearch
29
+ version.
30
+
31
+ ## Usage
32
+
33
+ This gem packages up the elasticsearch binary distribution with a ruby
34
+ gem binary on top. It add a config path parameter to the elasticsearch
35
+ binary. This makes it easier to put a relative config path on the
36
+ command line:
37
+
38
+ elasticsearch -c config/elasticsearch -f
39
+
40
+ All other parameters are passed through to the normal elasticsearch
41
+ start script.
42
+
43
+ Note that you almost always want to specify -c. Without it the default
44
+ elasticsearch configs are used and your data/logs will go into the gem
45
+ path, almost certainly not what you want.
46
+
47
+ You can run elasticsearch from a Procfile:
48
+
49
+ es: bundle exec elasticsearch -c config/elasticsearch -f
50
+
51
+ A rails generator for elasticsearch config files is included. Run:
52
+
53
+ rails g springboard:config
54
+
55
+ to install a sane development config in config/elasticsearch.
56
+
57
+ ## Contributing
58
+
59
+ 1. Fork it
60
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
61
+ 3. Commit your changes (`git commit -am 'Added some feature'`)
62
+ 4. Push to the branch (`git push origin my-new-feature`)
63
+ 5. Create new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,23 @@
1
+ #!/usr/bin/env rake
2
+ require "bundler/gem_tasks"
3
+
4
+ desc "update elasticsearch version"
5
+ task :update, [:version] do |t, args|
6
+ sh "rm -rf vendor/elasticsearch && mkdir vendor/elasticsearch"
7
+ sh "wget https://github.com/downloads/elasticsearch/elasticsearch/elasticsearch-#{args.version}.tar.gz"
8
+ sh "tar zxvf elasticsearch-#{args.version}.tar.gz"
9
+ sh "mv elasticsearch-#{args.version}/* vendor/elasticsearch"
10
+ sh "rm -rf elasticsearch-#{args.version} elasticsearch-#{args.version}.tar.gz"
11
+ sh "cp vendor/elasticsearch/bin/elasticsearch.in.sh lib/springboard/generators/templates"
12
+ File.open("lib/springboard/version.rb", "w") do |f|
13
+ f.write <<EOS
14
+ module Springboard
15
+ VERSION = "#{args.version}"
16
+ end
17
+ EOS
18
+ end
19
+ end
20
+
21
+ task :clean do
22
+ sh "rm -rf vendor/elasticsearch/logs vendor/elasticsearch/data"
23
+ end
data/bin/elasticsearch ADDED
@@ -0,0 +1,18 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'pathname'
4
+
5
+ # Not using optparse or trollop because they raise on unknown args, and
6
+ # we want to pass all unknown args to elasticsearch.
7
+ args = ARGV.join(" ")
8
+ if args =~ /(-c [\w\/]+)/
9
+ conf = Pathname.new(args.slice!($1).sub("-c ",''))
10
+ conf = Pathname.new(File.expand_path(conf, Dir.pwd)) if conf.relative?
11
+ ENV['ES_JAVA_OPTS'] = "-Des.path.conf=#{conf}"
12
+
13
+ if es_include = conf.entries.detect { |p| p.to_s == "elasticsearch.in.sh" }
14
+ ENV['ES_INCLUDE'] = es_include.expand_path conf
15
+ end
16
+ end
17
+
18
+ exec File.expand_path("../vendor/elasticsearch/bin/elasticsearch", File.dirname(__FILE__)), args.strip
data/bin/es_plugin ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ exec File.expand_path("../vendor/elasticsearch/bin/plugin", File.dirname(__FILE__)), ARGV.join(" ")
@@ -0,0 +1,9 @@
1
+ Description:
2
+ Install elasticsearch server config files.
3
+
4
+ Example:
5
+ `rails g springboard:config`
6
+
7
+ config/elasticsearch/elasticsearch.yml # elasticsearch config
8
+ config/elasticsearch/elasticsearch.in.sh # start up options
9
+ config/elasticsearch/logging.yml # logging configuration
@@ -0,0 +1,24 @@
1
+ require 'rails/generators'
2
+
3
+ module Springboard
4
+ module Generators
5
+ class ConfigGenerator < Rails::Generators::Base
6
+ source_root File.join(File.dirname(__FILE__), './templates')
7
+
8
+ def config
9
+ say "Installing config..."
10
+ template "elasticsearch.yml", "config/elasticsearch/elasticsearch.yml"
11
+ copy_file "logging.yml", "config/elasticsearch/logging.yml"
12
+ copy_file "elasticsearch.in.sh", "config/elasticsearch/elasticsearch.in.sh"
13
+ end
14
+
15
+
16
+ protected
17
+
18
+ def application_name
19
+ Rails.application.class.name.split('::').first.underscore
20
+ end
21
+ end
22
+ end
23
+ end
24
+
@@ -0,0 +1,47 @@
1
+ ES_CLASSPATH=$ES_CLASSPATH:$ES_HOME/lib/*:$ES_HOME/lib/sigar/*
2
+
3
+ if [ "x$ES_MIN_MEM" = "x" ]; then
4
+ ES_MIN_MEM=256m
5
+ fi
6
+ if [ "x$ES_MAX_MEM" = "x" ]; then
7
+ ES_MAX_MEM=1g
8
+ fi
9
+
10
+ # min and max heap sizes should be set to the same value to avoid
11
+ # stop-the-world GC pauses during resize, and so that we can lock the
12
+ # heap in memory on startup to prevent any of it from being swapped
13
+ # out.
14
+ JAVA_OPTS="$JAVA_OPTS -Xms${ES_MIN_MEM}"
15
+ JAVA_OPTS="$JAVA_OPTS -Xmx${ES_MAX_MEM}"
16
+
17
+ # reduce the per-thread stack size
18
+ JAVA_OPTS="$JAVA_OPTS -Xss128k"
19
+
20
+ # Force the JVM to use IPv4 stack
21
+ # JAVA_OPTS="$JAVA_OPTS -Djava.net.preferIPv4Stack=true"
22
+
23
+ # Enable aggressive optimizations in the JVM
24
+ # - Disabled by default as it might cause the JVM to crash
25
+ # JAVA_OPTS="$JAVA_OPTS -XX:+AggressiveOpts"
26
+
27
+ JAVA_OPTS="$JAVA_OPTS -XX:+UseParNewGC"
28
+ JAVA_OPTS="$JAVA_OPTS -XX:+UseConcMarkSweepGC"
29
+ JAVA_OPTS="$JAVA_OPTS -XX:+CMSParallelRemarkEnabled"
30
+ JAVA_OPTS="$JAVA_OPTS -XX:SurvivorRatio=8"
31
+ JAVA_OPTS="$JAVA_OPTS -XX:MaxTenuringThreshold=1"
32
+ JAVA_OPTS="$JAVA_OPTS -XX:CMSInitiatingOccupancyFraction=75"
33
+ JAVA_OPTS="$JAVA_OPTS -XX:+UseCMSInitiatingOccupancyOnly"
34
+
35
+ # GC logging options -- uncomment to enable
36
+ # JAVA_OPTS="$JAVA_OPTS -XX:+PrintGCDetails"
37
+ # JAVA_OPTS="$JAVA_OPTS -XX:+PrintGCTimeStamps"
38
+ # JAVA_OPTS="$JAVA_OPTS -XX:+PrintClassHistogram"
39
+ # JAVA_OPTS="$JAVA_OPTS -XX:+PrintTenuringDistribution"
40
+ # JAVA_OPTS="$JAVA_OPTS -XX:+PrintGCApplicationStoppedTime"
41
+ # JAVA_OPTS="$JAVA_OPTS -Xloggc:/var/log/elasticsearch/gc.log"
42
+
43
+ # Causes the JVM to dump its heap on OutOfMemory.
44
+ JAVA_OPTS="$JAVA_OPTS -XX:+HeapDumpOnOutOfMemoryError"
45
+ # The path to the heap dump location, note directory must exists and have enough
46
+ # space for a full heap dump.
47
+ #JAVA_OPTS="$JAVA_OPTS -XX:HeapDumpPath=$ES_HOME/logs/heapdump.hprof"
@@ -0,0 +1,7 @@
1
+ cluster.name: <%= application_name %>
2
+
3
+ path.data: db/elasticsearch
4
+ path.logs: log
5
+
6
+ discovery.zen.ping.multicast.enabled: false
7
+ discovery.zen.ping.unicast.hosts: []
@@ -0,0 +1,30 @@
1
+ rootLogger: INFO, console, file
2
+ logger:
3
+ # log action execution errors for easier debugging
4
+ action: DEBUG
5
+ # reduce the logging for aws, too much is logged under the default INFO
6
+ com.amazonaws: WARN
7
+
8
+ # gateway
9
+ #gateway: DEBUG
10
+ #index.gateway: DEBUG
11
+
12
+ # peer shard recovery
13
+ #indices.recovery: DEBUG
14
+
15
+ # discovery
16
+ #discovery: TRACE
17
+
18
+ appender:
19
+ console:
20
+ type: console
21
+ layout:
22
+ type: consolePattern
23
+ conversionPattern: "[%d{ISO8601}][%-5p][%-25c] %m%n"
24
+
25
+ file:
26
+ type: file
27
+ file: ${path.logs}/elasticsearch.log
28
+ layout:
29
+ type: pattern
30
+ conversionPattern: "[%d{ISO8601}][%-5p][%-25c] %m%n"
@@ -0,0 +1,13 @@
1
+ require 'rails'
2
+
3
+ module Springboard
4
+ class Railtie < Rails::Railtie
5
+ generators do
6
+ require 'springboard/generators/config_generator'
7
+ end
8
+
9
+ rake_tasks do
10
+ load 'springboard/tasks.rb'
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,8 @@
1
+ require 'rake'
2
+
3
+ namespace :springboard do
4
+ desc "clean elasticsearch data"
5
+ task :clean do
6
+ sh "rm -rf #{Rails.root.join("db/elasticsearch/*")}"
7
+ end
8
+ end
@@ -0,0 +1,3 @@
1
+ module Springboard
2
+ VERSION = "0.18.7"
3
+ end
@@ -0,0 +1 @@
1
+ require 'springboard/railtie' if defined?(Rails)
@@ -0,0 +1,18 @@
1
+ # -*- encoding: utf-8 -*-
2
+ require File.expand_path('../lib/springboard/version', __FILE__)
3
+
4
+ Gem::Specification.new do |gem|
5
+ gem.authors = ["Grant Rodgers"]
6
+ gem.email = ["grantr@gmail.com"]
7
+ gem.description = %q{Run elasticsearch as a gem binary}
8
+ gem.summary = %q{Packages up elasticsearch in a gem and adds a ruby executable to run it easily with relative config paths.
9
+ Makes elasticsearch dead simple to develop with.}
10
+ gem.homepage = "http://github.com/grantr/springboard"
11
+
12
+ gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
13
+ gem.files = `git ls-files`.split("\n")
14
+ gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
15
+ gem.name = "springboard"
16
+ gem.require_paths = ["lib"]
17
+ gem.version = Springboard::VERSION
18
+ end
@@ -0,0 +1,537 @@
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
178
+
179
+ APPENDIX: How to apply the Apache License to your work.
180
+
181
+ To apply the Apache License to your work, attach the following
182
+ boilerplate notice, with the fields enclosed by brackets "[]"
183
+ replaced with your own identifying information. (Don't include
184
+ the brackets!) The text should be enclosed in the appropriate
185
+ comment syntax for the file format. We also recommend that a
186
+ file or class name and description of purpose be included on the
187
+ same "printed page" as the copyright notice for easier
188
+ identification within third-party archives.
189
+
190
+ Copyright [yyyy] [name of copyright owner]
191
+
192
+ Licensed under the Apache License, Version 2.0 (the "License");
193
+ you may not use this file except in compliance with the License.
194
+ You may obtain a copy of the License at
195
+
196
+ http://www.apache.org/licenses/LICENSE-2.0
197
+
198
+ Unless required by applicable law or agreed to in writing, software
199
+ distributed under the License is distributed on an "AS IS" BASIS,
200
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
+ See the License for the specific language governing permissions and
202
+ limitations under the License.
203
+
204
+
205
+ APACHE CASSANDRA THIRD-PARTY DEPENDENCIES
206
+
207
+ Apache Cassandra includes convenience copies of a number of third-party
208
+ dependencies that have separate copyright notices and license terms. Your
209
+ use of these libraries is subject to the terms and conditions of the
210
+ following licenses.
211
+
212
+ For lib/flexjson-1.7.jar and lib/google-collect-1.0-rc1.jar:
213
+
214
+ While developed outside the ASF, these projects are also licensed under
215
+ the Apache License 2.0. The full text of the Apache License 2.0 can be
216
+ found at top of this file.
217
+
218
+ See NOTICE.txt for the respective copyright notices of these libraries.
219
+
220
+
221
+ For lib/antlr-3.1.3.jar:
222
+ ------------------------
223
+
224
+ [The "BSD licence"]
225
+ Copyright (c) 2003-2006 Terence Parr
226
+ All rights reserved.
227
+
228
+ Redistribution and use in source and binary forms, with or without
229
+ modification, are permitted provided that the following conditions
230
+ are met:
231
+
232
+ 1. Redistributions of source code must retain the above copyright
233
+ notice, this list of conditions and the following disclaimer.
234
+ 2. Redistributions in binary form must reproduce the above copyright
235
+ notice, this list of conditions and the following disclaimer in the
236
+ documentation and/or other materials provided with the distribution.
237
+ 3. The name of the author may not be used to endorse or promote products
238
+ derived from this software without specific prior written permission.
239
+
240
+ THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
241
+ IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
242
+ OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
243
+ IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
244
+ INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
245
+ NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
246
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
247
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
248
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
249
+ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
250
+
251
+
252
+ For lib/high-scale-lib.jar:
253
+ ---------------------------
254
+
255
+ The person or persons who have associated work with this document (the
256
+ "Dedicator" or "Certifier") hereby either (a) certifies that, to the best
257
+ of his knowledge, the work of authorship identified is in the public
258
+ domain of the country from which the work is published, or (b) hereby
259
+ dedicates whatever copyright the dedicators holds in the work of
260
+ authorship identified below (the "Work") to the public domain. A
261
+ certifier, moreover, dedicates any copyright interest he may have in the
262
+ associated work, and for these purposes, is described as a "dedicator"
263
+ below.
264
+
265
+ A certifier has taken reasonable steps to verify the copyright status of
266
+ this work. Certifier recognizes that his good faith efforts may not
267
+ shield him from liability if in fact the work certified is not in the
268
+ public domain.
269
+
270
+ Dedicator makes this dedication for the benefit of the public at large and
271
+ to the detriment of the Dedicator's heirs and successors. Dedicator
272
+ intends this dedication to be an overt act of relinquishment in perpetuity
273
+ of all present and future rights under copyright law, whether vested or
274
+ contingent, in the Work. Dedicator understands that such relinquishment of
275
+ all rights includes the relinquishment of all rights to enforce (by
276
+ lawsuit or otherwise) those copyrights in the Work.
277
+
278
+ Dedicator recognizes that, once placed in the public domain, the Work may
279
+ be freely reproduced, distributed, transmitted, used, modified, built
280
+ upon, or otherwise exploited by anyone for any purpose, commercial or
281
+ non-commercial, and in any way, including by methods that have not yet
282
+ been invented or conceived.
283
+
284
+
285
+ For lib/jline-0.9.94.jar:
286
+ -------------------------
287
+
288
+ Copyright (c) 2002-2006, Marc Prud'hommeaux <mwp1@cornell.edu>
289
+ All rights reserved.
290
+
291
+ Redistribution and use in source and binary forms, with or
292
+ without modification, are permitted provided that the following
293
+ conditions are met:
294
+
295
+ Redistributions of source code must retain the above copyright
296
+ notice, this list of conditions and the following disclaimer.
297
+
298
+ Redistributions in binary form must reproduce the above copyright
299
+ notice, this list of conditions and the following disclaimer
300
+ in the documentation and/or other materials provided with
301
+ the distribution.
302
+
303
+ Neither the name of JLine nor the names of its contributors
304
+ may be used to endorse or promote products derived from this
305
+ software without specific prior written permission.
306
+
307
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
308
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
309
+ BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
310
+ AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
311
+ EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
312
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
313
+ OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
314
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
315
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
316
+ AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
317
+ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
318
+ IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
319
+ OF THE POSSIBILITY OF SUCH DAMAGE.
320
+
321
+
322
+ For lib/junit-4.6.jar:
323
+ ----------------------
324
+
325
+ Common Public License Version 1.0
326
+
327
+ THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS COMMON PUBLIC
328
+ LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM
329
+ CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
330
+
331
+ 1. DEFINITIONS
332
+
333
+ "Contribution" means:
334
+
335
+ a) in the case of the initial Contributor, the initial code and
336
+ documentation distributed under this Agreement, and
337
+
338
+ b) in the case of each subsequent Contributor:
339
+
340
+ i) changes to the Program, and
341
+
342
+ ii) additions to the Program;
343
+
344
+ where such changes and/or additions to the Program originate from and are
345
+ distributed by that particular Contributor. A Contribution 'originates' from a
346
+ Contributor if it was added to the Program by such Contributor itself or anyone
347
+ acting on such Contributor's behalf. Contributions do not include additions to
348
+ the Program which: (i) are separate modules of software distributed in
349
+ conjunction with the Program under their own license agreement, and (ii) are not
350
+ derivative works of the Program.
351
+
352
+ "Contributor" means any person or entity that distributes the Program.
353
+
354
+ "Licensed Patents " mean patent claims licensable by a Contributor which are
355
+ necessarily infringed by the use or sale of its Contribution alone or when
356
+ combined with the Program.
357
+
358
+ "Program" means the Contributions distributed in accordance with this Agreement.
359
+
360
+ "Recipient" means anyone who receives the Program under this Agreement,
361
+ including all Contributors.
362
+
363
+ 2. GRANT OF RIGHTS
364
+
365
+ a) Subject to the terms of this Agreement, each Contributor hereby grants
366
+ Recipient a non-exclusive, worldwide, royalty-free copyright license to
367
+ reproduce, prepare derivative works of, publicly display, publicly perform,
368
+ distribute and sublicense the Contribution of such Contributor, if any, and such
369
+ derivative works, in source code and object code form.
370
+
371
+ b) Subject to the terms of this Agreement, each Contributor hereby grants
372
+ Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed
373
+ Patents to make, use, sell, offer to sell, import and otherwise transfer the
374
+ Contribution of such Contributor, if any, in source code and object code form.
375
+ This patent license shall apply to the combination of the Contribution and the
376
+ Program if, at the time the Contribution is added by the Contributor, such
377
+ addition of the Contribution causes such combination to be covered by the
378
+ Licensed Patents. The patent license shall not apply to any other combinations
379
+ which include the Contribution. No hardware per se is licensed hereunder.
380
+
381
+ c) Recipient understands that although each Contributor grants the licenses
382
+ to its Contributions set forth herein, no assurances are provided by any
383
+ Contributor that the Program does not infringe the patent or other intellectual
384
+ property rights of any other entity. Each Contributor disclaims any liability to
385
+ Recipient for claims brought by any other entity based on infringement of
386
+ intellectual property rights or otherwise. As a condition to exercising the
387
+ rights and licenses granted hereunder, each Recipient hereby assumes sole
388
+ responsibility to secure any other intellectual property rights needed, if any.
389
+ For example, if a third party patent license is required to allow Recipient to
390
+ distribute the Program, it is Recipient's responsibility to acquire that license
391
+ before distributing the Program.
392
+
393
+ d) Each Contributor represents that to its knowledge it has sufficient
394
+ copyright rights in its Contribution, if any, to grant the copyright license set
395
+ forth in this Agreement.
396
+
397
+ 3. REQUIREMENTS
398
+
399
+ A Contributor may choose to distribute the Program in object code form under its
400
+ own license agreement, provided that:
401
+
402
+ a) it complies with the terms and conditions of this Agreement; and
403
+
404
+ b) its license agreement:
405
+
406
+ i) effectively disclaims on behalf of all Contributors all warranties and
407
+ conditions, express and implied, including warranties or conditions of title and
408
+ non-infringement, and implied warranties or conditions of merchantability and
409
+ fitness for a particular purpose;
410
+
411
+ ii) effectively excludes on behalf of all Contributors all liability for
412
+ damages, including direct, indirect, special, incidental and consequential
413
+ damages, such as lost profits;
414
+
415
+ iii) states that any provisions which differ from this Agreement are offered
416
+ by that Contributor alone and not by any other party; and
417
+
418
+ iv) states that source code for the Program is available from such
419
+ Contributor, and informs licensees how to obtain it in a reasonable manner on or
420
+ through a medium customarily used for software exchange.
421
+
422
+ When the Program is made available in source code form:
423
+
424
+ a) it must be made available under this Agreement; and
425
+
426
+ b) a copy of this Agreement must be included with each copy of the Program.
427
+
428
+ Contributors may not remove or alter any copyright notices contained within the
429
+ Program.
430
+
431
+ Each Contributor must identify itself as the originator of its Contribution, if
432
+ any, in a manner that reasonably allows subsequent Recipients to identify the
433
+ originator of the Contribution.
434
+
435
+ 4. COMMERCIAL DISTRIBUTION
436
+
437
+ Commercial distributors of software may accept certain responsibilities with
438
+ respect to end users, business partners and the like. While this license is
439
+ intended to facilitate the commercial use of the Program, the Contributor who
440
+ includes the Program in a commercial product offering should do so in a manner
441
+ which does not create potential liability for other Contributors. Therefore, if
442
+ a Contributor includes the Program in a commercial product offering, such
443
+ Contributor ("Commercial Contributor") hereby agrees to defend and indemnify
444
+ every other Contributor ("Indemnified Contributor") against any losses, damages
445
+ and costs (collectively "Losses") arising from claims, lawsuits and other legal
446
+ actions brought by a third party against the Indemnified Contributor to the
447
+ extent caused by the acts or omissions of such Commercial Contributor in
448
+ connection with its distribution of the Program in a commercial product
449
+ offering. The obligations in this section do not apply to any claims or Losses
450
+ relating to any actual or alleged intellectual property infringement. In order
451
+ to qualify, an Indemnified Contributor must: a) promptly notify the Commercial
452
+ Contributor in writing of such claim, and b) allow the Commercial Contributor to
453
+ control, and cooperate with the Commercial Contributor in, the defense and any
454
+ related settlement negotiations. The Indemnified Contributor may participate in
455
+ any such claim at its own expense.
456
+
457
+ For example, a Contributor might include the Program in a commercial product
458
+ offering, Product X. That Contributor is then a Commercial Contributor. If that
459
+ Commercial Contributor then makes performance claims, or offers warranties
460
+ related to Product X, those performance claims and warranties are such
461
+ Commercial Contributor's responsibility alone. Under this section, the
462
+ Commercial Contributor would have to defend claims against the other
463
+ Contributors related to those performance claims and warranties, and if a court
464
+ requires any other Contributor to pay any damages as a result, the Commercial
465
+ Contributor must pay those damages.
466
+
467
+ 5. NO WARRANTY
468
+
469
+ EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN
470
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR
471
+ IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE,
472
+ NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each
473
+ Recipient is solely responsible for determining the appropriateness of using and
474
+ distributing the Program and assumes all risks associated with its exercise of
475
+ rights under this Agreement, including but not limited to the risks and costs of
476
+ program errors, compliance with applicable laws, damage to or loss of data,
477
+ programs or equipment, and unavailability or interruption of operations.
478
+
479
+ 6. DISCLAIMER OF LIABILITY
480
+
481
+ EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY
482
+ CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL,
483
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST
484
+ PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
485
+ STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
486
+ OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS
487
+ GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
488
+
489
+ 7. GENERAL
490
+
491
+ If any provision of this Agreement is invalid or unenforceable under applicable
492
+ law, it shall not affect the validity or enforceability of the remainder of the
493
+ terms of this Agreement, and without further action by the parties hereto, such
494
+ provision shall be reformed to the minimum extent necessary to make such
495
+ provision valid and enforceable.
496
+
497
+ If Recipient institutes patent litigation against a Contributor with respect to
498
+ a patent applicable to software (including a cross-claim or counterclaim in a
499
+ lawsuit), then any patent licenses granted by that Contributor to such Recipient
500
+ under this Agreement shall terminate as of the date such litigation is filed. In
501
+ addition, if Recipient institutes patent litigation against any entity
502
+ (including a cross-claim or counterclaim in a lawsuit) alleging that the Program
503
+ itself (excluding combinations of the Program with other software or hardware)
504
+ infringes such Recipient's patent(s), then such Recipient's rights granted under
505
+ Section 2(b) shall terminate as of the date such litigation is filed.
506
+
507
+ All Recipient's rights under this Agreement shall terminate if it fails to
508
+ comply with any of the material terms or conditions of this Agreement and does
509
+ not cure such failure in a reasonable period of time after becoming aware of
510
+ such noncompliance. If all Recipient's rights under this Agreement terminate,
511
+ Recipient agrees to cease use and distribution of the Program as soon as
512
+ reasonably practicable. However, Recipient's obligations under this Agreement
513
+ and any licenses granted by Recipient relating to the Program shall continue and
514
+ survive.
515
+
516
+ Everyone is permitted to copy and distribute copies of this Agreement, but in
517
+ order to avoid inconsistency the Agreement is copyrighted and may only be
518
+ modified in the following manner. The Agreement Steward reserves the right to
519
+ publish new versions (including revisions) of this Agreement from time to time.
520
+ No one other than the Agreement Steward has the right to modify this Agreement.
521
+ IBM is the initial Agreement Steward. IBM may assign the responsibility to serve
522
+ as the Agreement Steward to a suitable separate entity. Each new version of the
523
+ Agreement will be given a distinguishing version number. The Program (including
524
+ Contributions) may always be distributed subject to the version of the Agreement
525
+ under which it was received. In addition, after a new version of the Agreement
526
+ is published, Contributor may elect to distribute the Program (including its
527
+ Contributions) under the new version. Except as expressly stated in Sections
528
+ 2(a) and 2(b) above, Recipient receives no rights or licenses to the
529
+ intellectual property of any Contributor under this Agreement, whether
530
+ expressly, by implication, estoppel or otherwise. All rights in the Program not
531
+ expressly granted under this Agreement are reserved.
532
+
533
+ This Agreement is governed by the laws of the State of New York and the
534
+ intellectual property laws of the United States of America. No party to this
535
+ Agreement will bring a legal action under this Agreement more than one year
536
+ after the cause of action arose. Each party waives its rights to a jury trial in
537
+ any resulting litigation.