snowpark-connect 0.20.2__py3-none-any.whl → 0.22.1__py3-none-any.whl

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.

Potentially problematic release.


This version of snowpark-connect might be problematic. Click here for more details.

Files changed (84) hide show
  1. snowflake/snowpark_connect/analyze_plan/map_tree_string.py +3 -2
  2. snowflake/snowpark_connect/column_name_handler.py +6 -65
  3. snowflake/snowpark_connect/config.py +47 -17
  4. snowflake/snowpark_connect/dataframe_container.py +242 -0
  5. snowflake/snowpark_connect/error/error_utils.py +25 -0
  6. snowflake/snowpark_connect/execute_plan/map_execution_command.py +13 -23
  7. snowflake/snowpark_connect/execute_plan/map_execution_root.py +9 -5
  8. snowflake/snowpark_connect/expression/map_extension.py +2 -1
  9. snowflake/snowpark_connect/expression/map_udf.py +4 -4
  10. snowflake/snowpark_connect/expression/map_unresolved_attribute.py +8 -7
  11. snowflake/snowpark_connect/expression/map_unresolved_function.py +481 -170
  12. snowflake/snowpark_connect/expression/map_unresolved_star.py +8 -8
  13. snowflake/snowpark_connect/expression/map_update_fields.py +1 -1
  14. snowflake/snowpark_connect/expression/typer.py +6 -6
  15. snowflake/snowpark_connect/proto/control_pb2.py +17 -16
  16. snowflake/snowpark_connect/proto/control_pb2.pyi +17 -17
  17. snowflake/snowpark_connect/proto/control_pb2_grpc.py +12 -63
  18. snowflake/snowpark_connect/proto/snowflake_expression_ext_pb2.py +15 -14
  19. snowflake/snowpark_connect/proto/snowflake_expression_ext_pb2.pyi +19 -14
  20. snowflake/snowpark_connect/proto/snowflake_expression_ext_pb2_grpc.py +4 -0
  21. snowflake/snowpark_connect/proto/snowflake_relation_ext_pb2.py +27 -26
  22. snowflake/snowpark_connect/proto/snowflake_relation_ext_pb2.pyi +74 -68
  23. snowflake/snowpark_connect/proto/snowflake_relation_ext_pb2_grpc.py +4 -0
  24. snowflake/snowpark_connect/relation/catalogs/abstract_spark_catalog.py +5 -5
  25. snowflake/snowpark_connect/relation/catalogs/snowflake_catalog.py +25 -17
  26. snowflake/snowpark_connect/relation/map_aggregate.py +170 -61
  27. snowflake/snowpark_connect/relation/map_catalog.py +2 -2
  28. snowflake/snowpark_connect/relation/map_column_ops.py +227 -145
  29. snowflake/snowpark_connect/relation/map_crosstab.py +25 -6
  30. snowflake/snowpark_connect/relation/map_extension.py +81 -56
  31. snowflake/snowpark_connect/relation/map_join.py +72 -63
  32. snowflake/snowpark_connect/relation/map_local_relation.py +35 -20
  33. snowflake/snowpark_connect/relation/map_map_partitions.py +24 -17
  34. snowflake/snowpark_connect/relation/map_relation.py +22 -16
  35. snowflake/snowpark_connect/relation/map_row_ops.py +232 -146
  36. snowflake/snowpark_connect/relation/map_sample_by.py +15 -8
  37. snowflake/snowpark_connect/relation/map_show_string.py +42 -5
  38. snowflake/snowpark_connect/relation/map_sql.py +141 -237
  39. snowflake/snowpark_connect/relation/map_stats.py +88 -39
  40. snowflake/snowpark_connect/relation/map_subquery_alias.py +13 -14
  41. snowflake/snowpark_connect/relation/map_udtf.py +10 -13
  42. snowflake/snowpark_connect/relation/read/map_read.py +8 -3
  43. snowflake/snowpark_connect/relation/read/map_read_csv.py +7 -7
  44. snowflake/snowpark_connect/relation/read/map_read_jdbc.py +7 -7
  45. snowflake/snowpark_connect/relation/read/map_read_json.py +19 -8
  46. snowflake/snowpark_connect/relation/read/map_read_parquet.py +7 -7
  47. snowflake/snowpark_connect/relation/read/map_read_socket.py +7 -3
  48. snowflake/snowpark_connect/relation/read/map_read_table.py +25 -16
  49. snowflake/snowpark_connect/relation/read/map_read_text.py +7 -7
  50. snowflake/snowpark_connect/relation/read/reader_config.py +1 -0
  51. snowflake/snowpark_connect/relation/utils.py +11 -5
  52. snowflake/snowpark_connect/relation/write/jdbc_write_dbapi.py +15 -12
  53. snowflake/snowpark_connect/relation/write/map_write.py +259 -56
  54. snowflake/snowpark_connect/relation/write/map_write_jdbc.py +3 -2
  55. snowflake/snowpark_connect/server.py +43 -4
  56. snowflake/snowpark_connect/type_mapping.py +6 -23
  57. snowflake/snowpark_connect/utils/cache.py +27 -22
  58. snowflake/snowpark_connect/utils/context.py +33 -17
  59. snowflake/snowpark_connect/utils/describe_query_cache.py +2 -9
  60. snowflake/snowpark_connect/utils/{attribute_handling.py → identifiers.py} +47 -0
  61. snowflake/snowpark_connect/utils/session.py +41 -38
  62. snowflake/snowpark_connect/utils/telemetry.py +214 -63
  63. snowflake/snowpark_connect/utils/udxf_import_utils.py +14 -0
  64. snowflake/snowpark_connect/version.py +1 -1
  65. snowflake/snowpark_decoder/__init__.py +0 -0
  66. snowflake/snowpark_decoder/_internal/proto/generated/DataframeProcessorMsg_pb2.py +36 -0
  67. snowflake/snowpark_decoder/_internal/proto/generated/DataframeProcessorMsg_pb2.pyi +156 -0
  68. snowflake/snowpark_decoder/dp_session.py +111 -0
  69. snowflake/snowpark_decoder/spark_decoder.py +76 -0
  70. {snowpark_connect-0.20.2.dist-info → snowpark_connect-0.22.1.dist-info}/METADATA +6 -4
  71. {snowpark_connect-0.20.2.dist-info → snowpark_connect-0.22.1.dist-info}/RECORD +83 -69
  72. snowpark_connect-0.22.1.dist-info/licenses/LICENSE-binary +568 -0
  73. snowpark_connect-0.22.1.dist-info/licenses/NOTICE-binary +1533 -0
  74. {snowpark_connect-0.20.2.dist-info → snowpark_connect-0.22.1.dist-info}/top_level.txt +1 -0
  75. spark/__init__.py +0 -0
  76. spark/connect/__init__.py +0 -0
  77. spark/connect/envelope_pb2.py +31 -0
  78. spark/connect/envelope_pb2.pyi +46 -0
  79. snowflake/snowpark_connect/includes/jars/jackson-mapper-asl-1.9.13.jar +0 -0
  80. {snowpark_connect-0.20.2.data → snowpark_connect-0.22.1.data}/scripts/snowpark-connect +0 -0
  81. {snowpark_connect-0.20.2.data → snowpark_connect-0.22.1.data}/scripts/snowpark-session +0 -0
  82. {snowpark_connect-0.20.2.data → snowpark_connect-0.22.1.data}/scripts/snowpark-submit +0 -0
  83. {snowpark_connect-0.20.2.dist-info → snowpark_connect-0.22.1.dist-info}/WHEEL +0 -0
  84. {snowpark_connect-0.20.2.dist-info → snowpark_connect-0.22.1.dist-info}/licenses/LICENSE.txt +0 -0
@@ -0,0 +1,1533 @@
1
+ Apache Spark
2
+ Copyright 2014 and onwards The Apache Software Foundation.
3
+
4
+ This product includes software developed at
5
+ The Apache Software Foundation (http://www.apache.org/).
6
+
7
+
8
+ Export Control Notice
9
+ ---------------------
10
+
11
+ This distribution includes cryptographic software. The country in which you currently reside may have
12
+ restrictions on the import, possession, use, and/or re-export to another country, of encryption software.
13
+ BEFORE using any encryption software, please check your country's laws, regulations and policies concerning
14
+ the import, possession, or use, and re-export of encryption software, to see if this is permitted. See
15
+ <http://www.wassenaar.org/> for more information.
16
+
17
+ The U.S. Government Department of Commerce, Bureau of Industry and Security (BIS), has classified this
18
+ software as Export Commodity Control Number (ECCN) 5D002.C.1, which includes information security software
19
+ using or performing cryptographic functions with asymmetric algorithms. The form and manner of this Apache
20
+ Software Foundation distribution makes it eligible for export under the License Exception ENC Technology
21
+ Software Unrestricted (TSU) exception (see the BIS Export Administration Regulations, Section 740.13) for
22
+ both object code and source code.
23
+
24
+ The following provides more details on the included cryptographic software:
25
+
26
+ This software uses Apache Commons Crypto (https://commons.apache.org/proper/commons-crypto/) to
27
+ support authentication, and encryption and decryption of data sent across the network between
28
+ services.
29
+
30
+
31
+ // ------------------------------------------------------------------
32
+ // NOTICE file corresponding to the section 4d of The Apache License,
33
+ // Version 2.0, in this case for
34
+ // ------------------------------------------------------------------
35
+
36
+ Hive Beeline
37
+ Copyright 2016 The Apache Software Foundation
38
+
39
+ This product includes software developed at
40
+ The Apache Software Foundation (http://www.apache.org/).
41
+
42
+ Apache Avro
43
+ Copyright 2009-2014 The Apache Software Foundation
44
+
45
+ This product currently only contains code developed by authors
46
+ of specific components, as identified by the source code files;
47
+ if such notes are missing files have been created by
48
+ Tatu Saloranta.
49
+
50
+ For additional credits (generally to people who reported problems)
51
+ see CREDITS file.
52
+
53
+ Apache Commons Compress
54
+ Copyright 2002-2012 The Apache Software Foundation
55
+
56
+ This product includes software developed by
57
+ The Apache Software Foundation (http://www.apache.org/).
58
+
59
+ Apache Avro Mapred API
60
+ Copyright 2009-2014 The Apache Software Foundation
61
+
62
+ Apache Avro IPC
63
+ Copyright 2009-2014 The Apache Software Foundation
64
+
65
+ Objenesis
66
+ Copyright 2006-2013 Joe Walnes, Henri Tremblay, Leonardo Mesquita
67
+
68
+ Apache XBean :: ASM shaded (repackaged)
69
+ Copyright 2005-2019 The Apache Software Foundation
70
+
71
+ --------------------------------------
72
+
73
+ This product includes software developed at
74
+ OW2 Consortium (http://asm.ow2.org/)
75
+
76
+ This product includes software developed by The Apache Software
77
+ Foundation (http://www.apache.org/).
78
+
79
+ The binary distribution of this product bundles binaries of
80
+ org.iq80.leveldb:leveldb-api (https://github.com/dain/leveldb), which has the
81
+ following notices:
82
+ * Copyright 2011 Dain Sundstrom <dain@iq80.com>
83
+ * Copyright 2011 FuseSource Corp. http://fusesource.com
84
+
85
+ The binary distribution of this product bundles binaries of
86
+ org.fusesource.hawtjni:hawtjni-runtime (https://github.com/fusesource/hawtjni),
87
+ which has the following notices:
88
+ * This product includes software developed by FuseSource Corp.
89
+ http://fusesource.com
90
+ * This product includes software developed at
91
+ Progress Software Corporation and/or its subsidiaries or affiliates.
92
+ * This product includes software developed by IBM Corporation and others.
93
+
94
+ The binary distribution of this product bundles binaries of
95
+ Gson 2.2.4,
96
+ which has the following notices:
97
+
98
+
99
+ The Netty Project
100
+ =================
101
+
102
+ Please visit the Netty web site for more information:
103
+
104
+ * http://netty.io/
105
+
106
+ Copyright 2014 The Netty Project
107
+
108
+ The Netty Project licenses this file to you under the Apache License,
109
+ version 2.0 (the "License"); you may not use this file except in compliance
110
+ with the License. You may obtain a copy of the License at:
111
+
112
+ http://www.apache.org/licenses/LICENSE-2.0
113
+
114
+ Unless required by applicable law or agreed to in writing, software
115
+ distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
116
+ WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
117
+ License for the specific language governing permissions and limitations
118
+ under the License.
119
+
120
+ Also, please refer to each LICENSE.<component>.txt file, which is located in
121
+ the 'license' directory of the distribution file, for the license terms of the
122
+ components that this product depends on.
123
+
124
+ -------------------------------------------------------------------------------
125
+ This product contains the extensions to Java Collections Framework which has
126
+ been derived from the works by JSR-166 EG, Doug Lea, and Jason T. Greene:
127
+
128
+ * LICENSE:
129
+ * license/LICENSE.jsr166y.txt (Public Domain)
130
+ * HOMEPAGE:
131
+ * http://gee.cs.oswego.edu/cgi-bin/viewcvs.cgi/jsr166/
132
+ * http://viewvc.jboss.org/cgi-bin/viewvc.cgi/jbosscache/experimental/jsr166/
133
+
134
+ This product contains a modified version of Robert Harder's Public Domain
135
+ Base64 Encoder and Decoder, which can be obtained at:
136
+
137
+ * LICENSE:
138
+ * license/LICENSE.base64.txt (Public Domain)
139
+ * HOMEPAGE:
140
+ * http://iharder.sourceforge.net/current/java/base64/
141
+
142
+ This product contains a modified portion of 'Webbit', an event based
143
+ WebSocket and HTTP server, which can be obtained at:
144
+
145
+ * LICENSE:
146
+ * license/LICENSE.webbit.txt (BSD License)
147
+ * HOMEPAGE:
148
+ * https://github.com/joewalnes/webbit
149
+
150
+ This product contains a modified portion of 'SLF4J', a simple logging
151
+ facade for Java, which can be obtained at:
152
+
153
+ * LICENSE:
154
+ * license/LICENSE.slf4j.txt (MIT License)
155
+ * HOMEPAGE:
156
+ * http://www.slf4j.org/
157
+
158
+ This product contains a modified portion of 'Apache Harmony', an open source
159
+ Java SE, which can be obtained at:
160
+
161
+ * NOTICE:
162
+ * license/NOTICE.harmony.txt
163
+ * LICENSE:
164
+ * license/LICENSE.harmony.txt (Apache License 2.0)
165
+ * HOMEPAGE:
166
+ * http://archive.apache.org/dist/harmony/
167
+
168
+ This product contains a modified portion of 'jbzip2', a Java bzip2 compression
169
+ and decompression library written by Matthew J. Francis. It can be obtained at:
170
+
171
+ * LICENSE:
172
+ * license/LICENSE.jbzip2.txt (MIT License)
173
+ * HOMEPAGE:
174
+ * https://code.google.com/p/jbzip2/
175
+
176
+ This product contains a modified portion of 'libdivsufsort', a C API library to construct
177
+ the suffix array and the Burrows-Wheeler transformed string for any input string of
178
+ a constant-size alphabet written by Yuta Mori. It can be obtained at:
179
+
180
+ * LICENSE:
181
+ * license/LICENSE.libdivsufsort.txt (MIT License)
182
+ * HOMEPAGE:
183
+ * https://github.com/y-256/libdivsufsort
184
+
185
+ This product contains a modified portion of Nitsan Wakart's 'JCTools', Java Concurrency Tools for the JVM,
186
+ which can be obtained at:
187
+
188
+ * LICENSE:
189
+ * license/LICENSE.jctools.txt (ASL2 License)
190
+ * HOMEPAGE:
191
+ * https://github.com/JCTools/JCTools
192
+
193
+ This product optionally depends on 'JZlib', a re-implementation of zlib in
194
+ pure Java, which can be obtained at:
195
+
196
+ * LICENSE:
197
+ * license/LICENSE.jzlib.txt (BSD style License)
198
+ * HOMEPAGE:
199
+ * http://www.jcraft.com/jzlib/
200
+
201
+ This product optionally depends on 'Compress-LZF', a Java library for encoding and
202
+ decoding data in LZF format, written by Tatu Saloranta. It can be obtained at:
203
+
204
+ * LICENSE:
205
+ * license/LICENSE.compress-lzf.txt (Apache License 2.0)
206
+ * HOMEPAGE:
207
+ * https://github.com/ning/compress
208
+
209
+ This product optionally depends on 'lz4', a LZ4 Java compression
210
+ and decompression library written by Adrien Grand. It can be obtained at:
211
+
212
+ * LICENSE:
213
+ * license/LICENSE.lz4.txt (Apache License 2.0)
214
+ * HOMEPAGE:
215
+ * https://github.com/jpountz/lz4-java
216
+
217
+ This product optionally depends on 'lzma-java', a LZMA Java compression
218
+ and decompression library, which can be obtained at:
219
+
220
+ * LICENSE:
221
+ * license/LICENSE.lzma-java.txt (Apache License 2.0)
222
+ * HOMEPAGE:
223
+ * https://github.com/jponge/lzma-java
224
+
225
+ This product contains a modified portion of 'jfastlz', a Java port of FastLZ compression
226
+ and decompression library written by William Kinney. It can be obtained at:
227
+
228
+ * LICENSE:
229
+ * license/LICENSE.jfastlz.txt (MIT License)
230
+ * HOMEPAGE:
231
+ * https://code.google.com/p/jfastlz/
232
+
233
+ This product contains a modified portion of and optionally depends on 'Protocol Buffers', Google's data
234
+ interchange format, which can be obtained at:
235
+
236
+ * LICENSE:
237
+ * license/LICENSE.protobuf.txt (New BSD License)
238
+ * HOMEPAGE:
239
+ * https://github.com/google/protobuf
240
+
241
+ This product optionally depends on 'Bouncy Castle Crypto APIs' to generate
242
+ a temporary self-signed X.509 certificate when the JVM does not provide the
243
+ equivalent functionality. It can be obtained at:
244
+
245
+ * LICENSE:
246
+ * license/LICENSE.bouncycastle.txt (MIT License)
247
+ * HOMEPAGE:
248
+ * http://www.bouncycastle.org/
249
+
250
+ This product optionally depends on 'Snappy', a compression library produced
251
+ by Google Inc, which can be obtained at:
252
+
253
+ * LICENSE:
254
+ * license/LICENSE.snappy.txt (New BSD License)
255
+ * HOMEPAGE:
256
+ * https://github.com/google/snappy
257
+
258
+ This product optionally depends on 'JBoss Marshalling', an alternative Java
259
+ serialization API, which can be obtained at:
260
+
261
+ * LICENSE:
262
+ * license/LICENSE.jboss-marshalling.txt (GNU LGPL 2.1)
263
+ * HOMEPAGE:
264
+ * http://www.jboss.org/jbossmarshalling
265
+
266
+ This product optionally depends on 'Caliper', Google's micro-
267
+ benchmarking framework, which can be obtained at:
268
+
269
+ * LICENSE:
270
+ * license/LICENSE.caliper.txt (Apache License 2.0)
271
+ * HOMEPAGE:
272
+ * https://github.com/google/caliper
273
+
274
+ This product optionally depends on 'Apache Commons Logging', a logging
275
+ framework, which can be obtained at:
276
+
277
+ * LICENSE:
278
+ * license/LICENSE.commons-logging.txt (Apache License 2.0)
279
+ * HOMEPAGE:
280
+ * http://commons.apache.org/logging/
281
+
282
+ This product optionally depends on 'Apache Log4J', a logging framework, which
283
+ can be obtained at:
284
+
285
+ * LICENSE:
286
+ * license/LICENSE.log4j.txt (Apache License 2.0)
287
+ * HOMEPAGE:
288
+ * http://logging.apache.org/log4j/
289
+
290
+ This product optionally depends on 'Aalto XML', an ultra-high performance
291
+ non-blocking XML processor, which can be obtained at:
292
+
293
+ * LICENSE:
294
+ * license/LICENSE.aalto-xml.txt (Apache License 2.0)
295
+ * HOMEPAGE:
296
+ * http://wiki.fasterxml.com/AaltoHome
297
+
298
+ This product contains a modified version of 'HPACK', a Java implementation of
299
+ the HTTP/2 HPACK algorithm written by Twitter. It can be obtained at:
300
+
301
+ * LICENSE:
302
+ * license/LICENSE.hpack.txt (Apache License 2.0)
303
+ * HOMEPAGE:
304
+ * https://github.com/twitter/hpack
305
+
306
+ This product contains a modified portion of 'Apache Commons Lang', a Java library
307
+ provides utilities for the java.lang API, which can be obtained at:
308
+
309
+ * LICENSE:
310
+ * license/LICENSE.commons-lang.txt (Apache License 2.0)
311
+ * HOMEPAGE:
312
+ * https://commons.apache.org/proper/commons-lang/
313
+
314
+
315
+ This product contains the Maven wrapper scripts from 'Maven Wrapper', that provides an easy way to ensure a user has everything necessary to run the Maven build.
316
+
317
+ * LICENSE:
318
+ * license/LICENSE.mvn-wrapper.txt (Apache License 2.0)
319
+ * HOMEPAGE:
320
+ * https://github.com/takari/maven-wrapper
321
+
322
+
323
+ The binary distribution of this product bundles binaries of
324
+ Commons Codec 1.4,
325
+ which has the following notices:
326
+ * src/test/org/apache/commons/codec/language/DoubleMetaphoneTest.javacontains test data from http://aspell.net/test/orig/batch0.tab.Copyright (C) 2002 Kevin Atkinson (kevina@gnu.org)
327
+ ===============================================================================
328
+ The content of package org.apache.commons.codec.language.bm has been translated
329
+ from the original php source code available at http://stevemorse.org/phoneticinfo.htm
330
+ with permission from the original authors.
331
+ Original source copyright:Copyright (c) 2008 Alexander Beider & Stephen P. Morse.
332
+
333
+ The binary distribution of this product bundles binaries of
334
+ Commons Lang 2.6,
335
+ which has the following notices:
336
+ * This product includes software from the Spring Framework,under the Apache License 2.0 (see: StringUtils.containsWhitespace())
337
+
338
+ The binary distribution of this product bundles binaries of
339
+ Apache Log4j 1.2.17,
340
+ which has the following notices:
341
+ * ResolverUtil.java
342
+ Copyright 2005-2006 Tim Fennell
343
+ Dumbster SMTP test server
344
+ Copyright 2004 Jason Paul Kitchen
345
+ TypeUtil.java
346
+ Copyright 2002-2012 Ramnivas Laddad, Juergen Hoeller, Chris Beams
347
+
348
+ The binary distribution of this product bundles binaries of
349
+ Jetty 6.1.26,
350
+ which has the following notices:
351
+ * ==============================================================
352
+ Jetty Web Container
353
+ Copyright 1995-2016 Mort Bay Consulting Pty Ltd.
354
+ ==============================================================
355
+
356
+ The Jetty Web Container is Copyright Mort Bay Consulting Pty Ltd
357
+ unless otherwise noted.
358
+
359
+ Jetty is dual licensed under both
360
+
361
+ * The Apache 2.0 License
362
+ http://www.apache.org/licenses/LICENSE-2.0.html
363
+
364
+ and
365
+
366
+ * The Eclipse Public 1.0 License
367
+ http://www.eclipse.org/legal/epl-v10.html
368
+
369
+ Jetty may be distributed under either license.
370
+
371
+ ------
372
+ Eclipse
373
+
374
+ The following artifacts are EPL.
375
+ * org.eclipse.jetty.orbit:org.eclipse.jdt.core
376
+
377
+ The following artifacts are EPL and ASL2.
378
+ * org.eclipse.jetty.orbit:javax.security.auth.message
379
+
380
+ The following artifacts are EPL and CDDL 1.0.
381
+ * org.eclipse.jetty.orbit:javax.mail.glassfish
382
+
383
+ ------
384
+ Oracle
385
+
386
+ The following artifacts are CDDL + GPLv2 with classpath exception.
387
+ https://glassfish.dev.java.net/nonav/public/CDDL+GPL.html
388
+
389
+ * javax.servlet:javax.servlet-api
390
+ * javax.annotation:javax.annotation-api
391
+ * javax.transaction:javax.transaction-api
392
+ * javax.websocket:javax.websocket-api
393
+
394
+ ------
395
+ Oracle OpenJDK
396
+
397
+ If ALPN is used to negotiate HTTP/2 connections, then the following
398
+ artifacts may be included in the distribution or downloaded when ALPN
399
+ module is selected.
400
+
401
+ * java.sun.security.ssl
402
+
403
+ These artifacts replace/modify OpenJDK classes. The modififications
404
+ are hosted at github and both modified and original are under GPL v2 with
405
+ classpath exceptions.
406
+ http://openjdk.java.net/legal/gplv2+ce.html
407
+
408
+ ------
409
+ OW2
410
+
411
+ The following artifacts are licensed by the OW2 Foundation according to the
412
+ terms of http://asm.ow2.org/license.html
413
+
414
+ org.ow2.asm:asm-commons
415
+ org.ow2.asm:asm
416
+
417
+ ------
418
+ Apache
419
+
420
+ The following artifacts are ASL2 licensed.
421
+
422
+ org.apache.taglibs:taglibs-standard-spec
423
+ org.apache.taglibs:taglibs-standard-impl
424
+
425
+ ------
426
+ MortBay
427
+
428
+ The following artifacts are ASL2 licensed. Based on selected classes from
429
+ following Apache Tomcat jars, all ASL2 licensed.
430
+
431
+ org.mortbay.jasper:apache-jsp
432
+ org.apache.tomcat:tomcat-jasper
433
+ org.apache.tomcat:tomcat-juli
434
+ org.apache.tomcat:tomcat-jsp-api
435
+ org.apache.tomcat:tomcat-el-api
436
+ org.apache.tomcat:tomcat-jasper-el
437
+ org.apache.tomcat:tomcat-api
438
+ org.apache.tomcat:tomcat-util-scan
439
+ org.apache.tomcat:tomcat-util
440
+
441
+ org.mortbay.jasper:apache-el
442
+ org.apache.tomcat:tomcat-jasper-el
443
+ org.apache.tomcat:tomcat-el-api
444
+
445
+ ------
446
+ Mortbay
447
+
448
+ The following artifacts are CDDL + GPLv2 with classpath exception.
449
+
450
+ https://glassfish.dev.java.net/nonav/public/CDDL+GPL.html
451
+
452
+ org.eclipse.jetty.toolchain:jetty-schemas
453
+
454
+ ------
455
+ Assorted
456
+
457
+ The UnixCrypt.java code implements the one way cryptography used by
458
+ Unix systems for simple password protection. Copyright 1996 Aki Yoshida,
459
+ modified April 2001 by Iris Van den Broeke, Daniel Deville.
460
+ Permission to use, copy, modify and distribute UnixCrypt
461
+ for non-commercial or commercial purposes and without fee is
462
+ granted provided that the copyright notice appears in all copies./
463
+
464
+ The binary distribution of this product bundles binaries of
465
+ Snappy for Java 1.0.4.1,
466
+ which has the following notices:
467
+ * This product includes software developed by Google
468
+ Snappy: http://code.google.com/p/snappy/ (New BSD License)
469
+
470
+ This product includes software developed by Apache
471
+ PureJavaCrc32C from apache-hadoop-common http://hadoop.apache.org/
472
+ (Apache 2.0 license)
473
+
474
+ This library contains statically linked libstdc++. This inclusion is allowed by
475
+ "GCC RUntime Library Exception"
476
+ http://gcc.gnu.org/onlinedocs/libstdc++/manual/license.html
477
+
478
+ == Contributors ==
479
+ * Tatu Saloranta
480
+ * Providing benchmark suite
481
+ * Alec Wysoker
482
+ * Performance and memory usage improvement
483
+
484
+ The binary distribution of this product bundles binaries of
485
+ Xerces2 Java Parser 2.9.1,
486
+ which has the following notices:
487
+ * =========================================================================
488
+ == NOTICE file corresponding to section 4(d) of the Apache License, ==
489
+ == Version 2.0, in this case for the Apache Xerces Java distribution. ==
490
+ =========================================================================
491
+
492
+ Apache Xerces Java
493
+ Copyright 1999-2007 The Apache Software Foundation
494
+
495
+ This product includes software developed at
496
+ The Apache Software Foundation (http://www.apache.org/).
497
+
498
+ Portions of this software were originally based on the following:
499
+ - software copyright (c) 1999, IBM Corporation., http://www.ibm.com.
500
+ - software copyright (c) 1999, Sun Microsystems., http://www.sun.com.
501
+ - voluntary contributions made by Paul Eng on behalf of the
502
+ Apache Software Foundation that were originally developed at iClick, Inc.,
503
+ software copyright (c) 1999.
504
+
505
+ Apache Commons Collections
506
+ Copyright 2001-2015 The Apache Software Foundation
507
+
508
+ Apache Commons Configuration
509
+ Copyright 2001-2008 The Apache Software Foundation
510
+
511
+ Apache Jakarta Commons Digester
512
+ Copyright 2001-2006 The Apache Software Foundation
513
+
514
+ Apache Commons BeanUtils
515
+ Copyright 2000-2008 The Apache Software Foundation
516
+
517
+ ApacheDS Protocol Kerberos Codec
518
+ Copyright 2003-2013 The Apache Software Foundation
519
+
520
+ ApacheDS I18n
521
+ Copyright 2003-2013 The Apache Software Foundation
522
+
523
+ Apache Directory API ASN.1 API
524
+ Copyright 2003-2013 The Apache Software Foundation
525
+
526
+ Apache Directory LDAP API Utilities
527
+ Copyright 2003-2013 The Apache Software Foundation
528
+
529
+ Curator Client
530
+ Copyright 2011-2015 The Apache Software Foundation
531
+
532
+ htrace-core
533
+ Copyright 2015 The Apache Software Foundation
534
+
535
+ =========================================================================
536
+ == NOTICE file corresponding to section 4(d) of the Apache License, ==
537
+ == Version 2.0, in this case for the Apache Xerces Java distribution. ==
538
+ =========================================================================
539
+
540
+ Portions of this software were originally based on the following:
541
+ - software copyright (c) 1999, IBM Corporation., http://www.ibm.com.
542
+ - software copyright (c) 1999, Sun Microsystems., http://www.sun.com.
543
+ - voluntary contributions made by Paul Eng on behalf of the
544
+ Apache Software Foundation that were originally developed at iClick, Inc.,
545
+ software copyright (c) 1999.
546
+
547
+ # Jackson JSON processor
548
+
549
+ Jackson is a high-performance, Free/Open Source JSON processing library.
550
+ It was originally written by Tatu Saloranta (tatu.saloranta@iki.fi), and has
551
+ been in development since 2007.
552
+ It is currently developed by a community of developers, as well as supported
553
+ commercially by FasterXML.com.
554
+
555
+ ## Licensing
556
+
557
+ Jackson core and extension components may licensed under different licenses.
558
+ To find the details that apply to this artifact see the accompanying LICENSE file.
559
+ For more information, including possible other licensing options, contact
560
+ FasterXML.com (http://fasterxml.com).
561
+
562
+ ## Credits
563
+
564
+ A list of contributors may be found from CREDITS file, which is included
565
+ in some artifacts (usually source distributions); but is always available
566
+ from the source code management (SCM) system project uses.
567
+
568
+ Apache HttpCore
569
+ Copyright 2005-2017 The Apache Software Foundation
570
+
571
+ Curator Recipes
572
+ Copyright 2011-2015 The Apache Software Foundation
573
+
574
+ Curator Framework
575
+ Copyright 2011-2015 The Apache Software Foundation
576
+
577
+ Apache Commons Lang
578
+ Copyright 2001-2016 The Apache Software Foundation
579
+
580
+ This product includes software from the Spring Framework,
581
+ under the Apache License 2.0 (see: StringUtils.containsWhitespace())
582
+
583
+ Apache Commons Math
584
+ Copyright 2001-2015 The Apache Software Foundation
585
+
586
+ This product includes software developed for Orekit by
587
+ CS Systèmes d'Information (http://www.c-s.fr/)
588
+ Copyright 2010-2012 CS Systèmes d'Information
589
+
590
+ Apache log4j
591
+ Copyright 2007 The Apache Software Foundation
592
+
593
+ # Compress LZF
594
+
595
+ This library contains efficient implementation of LZF compression format,
596
+ as well as additional helper classes that build on JDK-provided gzip (deflat)
597
+ codec.
598
+
599
+ Library is licensed under Apache License 2.0, as per accompanying LICENSE file.
600
+
601
+ ## Credit
602
+
603
+ Library has been written by Tatu Saloranta (tatu.saloranta@iki.fi).
604
+ It was started at Ning, inc., as an official Open Source process used by
605
+ platform backend, but after initial versions has been developed outside of
606
+ Ning by supporting community.
607
+
608
+ Other contributors include:
609
+
610
+ * Jon Hartlaub (first versions of streaming reader/writer; unit tests)
611
+ * Cedrik Lime: parallel LZF implementation
612
+
613
+ Various community members have contributed bug reports, and suggested minor
614
+ fixes; these can be found from file "VERSION.txt" in SCM.
615
+
616
+ Apache Commons Net
617
+ Copyright 2001-2012 The Apache Software Foundation
618
+
619
+
620
+ Jackson core and extension components may be licensed under different licenses.
621
+ To find the details that apply to this artifact see the accompanying LICENSE file.
622
+ For more information, including possible other licensing options, contact
623
+ FasterXML.com (http://fasterxml.com).
624
+
625
+ Apache Ivy (TM)
626
+ Copyright 2007-2014 The Apache Software Foundation
627
+
628
+ Portions of Ivy were originally developed at
629
+ Jayasoft SARL (http://www.jayasoft.fr/)
630
+ and are licensed to the Apache Software Foundation under the
631
+ "Software Grant License Agreement"
632
+
633
+ SSH and SFTP support is provided by the JCraft JSch package,
634
+ which is open source software, available under
635
+ the terms of a BSD style license.
636
+ The original software and related information is available
637
+ at http://www.jcraft.com/jsch/.
638
+
639
+
640
+ ORC Core
641
+ Copyright 2013-2018 The Apache Software Foundation
642
+
643
+ Apache Commons Lang
644
+ Copyright 2001-2011 The Apache Software Foundation
645
+
646
+ ORC MapReduce
647
+ Copyright 2013-2018 The Apache Software Foundation
648
+
649
+ Apache Parquet Format
650
+ Copyright 2017 The Apache Software Foundation
651
+
652
+ Arrow Vectors
653
+ Copyright 2017 The Apache Software Foundation
654
+
655
+ Arrow Format
656
+ Copyright 2017 The Apache Software Foundation
657
+
658
+ Arrow Memory
659
+ Copyright 2017 The Apache Software Foundation
660
+
661
+ Apache Commons CLI
662
+ Copyright 2001-2009 The Apache Software Foundation
663
+
664
+ Apache Commons Daemon
665
+ Copyright 1999-2019 The Apache Software Foundation
666
+
667
+ Google Guice - Extensions - Servlet
668
+ Copyright 2006-2011 Google, Inc.
669
+
670
+ Apache Commons IO
671
+ Copyright 2002-2012 The Apache Software Foundation
672
+
673
+ Google Guice - Core Library
674
+ Copyright 2006-2011 Google, Inc.
675
+
676
+ mesos
677
+ Copyright 2017 The Apache Software Foundation
678
+
679
+ Apache Parquet Hadoop Bundle (Incubating)
680
+ Copyright 2015 The Apache Software Foundation
681
+
682
+ Hive Query Language
683
+ Copyright 2016 The Apache Software Foundation
684
+
685
+ Apache Extras Companion for log4j 1.2.
686
+ Copyright 2007 The Apache Software Foundation
687
+
688
+ Hive Metastore
689
+ Copyright 2016 The Apache Software Foundation
690
+
691
+ Apache Commons Logging
692
+ Copyright 2003-2013 The Apache Software Foundation
693
+
694
+ =========================================================================
695
+ == NOTICE file corresponding to section 4(d) of the Apache License, ==
696
+ == Version 2.0, in this case for the DataNucleus distribution. ==
697
+ =========================================================================
698
+
699
+ ===================================================================
700
+ This product includes software developed by many individuals,
701
+ including the following:
702
+ ===================================================================
703
+ Erik Bengtson
704
+ Andy Jefferson
705
+
706
+ ===================================================================
707
+ This product has included contributions from some individuals,
708
+ including the following:
709
+ ===================================================================
710
+
711
+ ===================================================================
712
+ This product includes software developed by many individuals,
713
+ including the following:
714
+ ===================================================================
715
+ Andy Jefferson
716
+ Erik Bengtson
717
+ Joerg von Frantzius
718
+ Marco Schulze
719
+
720
+ ===================================================================
721
+ This product has included contributions from some individuals,
722
+ including the following:
723
+ ===================================================================
724
+ Barry Haddow
725
+ Ralph Ullrich
726
+ David Ezzio
727
+ Brendan de Beer
728
+ David Eaves
729
+ Martin Taal
730
+ Tony Lai
731
+ Roland Szabo
732
+ Anton Troshin (Timesten)
733
+
734
+ ===================================================================
735
+ This product also includes software developed by the TJDO project
736
+ (http://tjdo.sourceforge.net/).
737
+ ===================================================================
738
+
739
+ ===================================================================
740
+ This product also includes software developed by the Apache Commons project
741
+ (http://commons.apache.org/).
742
+ ===================================================================
743
+
744
+ Apache Commons Pool
745
+ Copyright 1999-2009 The Apache Software Foundation
746
+
747
+ Apache Commons DBCP
748
+ Copyright 2001-2010 The Apache Software Foundation
749
+
750
+ Apache Java Data Objects (JDO)
751
+ Copyright 2005-2006 The Apache Software Foundation
752
+
753
+ Apache Jakarta HttpClient
754
+ Copyright 1999-2007 The Apache Software Foundation
755
+
756
+ Apache HttpClient
757
+ Copyright 1999-2017 The Apache Software Foundation
758
+
759
+ Apache Commons Codec
760
+ Copyright 2002-2014 The Apache Software Foundation
761
+
762
+ src/test/org/apache/commons/codec/language/DoubleMetaphoneTest.java
763
+ contains test data from http://aspell.net/test/orig/batch0.tab.
764
+ Copyright (C) 2002 Kevin Atkinson (kevina@gnu.org)
765
+
766
+ ===============================================================================
767
+
768
+ The content of package org.apache.commons.codec.language.bm has been translated
769
+ from the original php source code available at http://stevemorse.org/phoneticinfo.htm
770
+ with permission from the original authors.
771
+ Original source copyright:
772
+ Copyright (c) 2008 Alexander Beider & Stephen P. Morse.
773
+
774
+ =============================================================================
775
+ = NOTICE file corresponding to section 4d of the Apache License Version 2.0 =
776
+ =============================================================================
777
+ This product includes software developed by
778
+ Joda.org (http://www.joda.org/).
779
+
780
+ ===================================================================
781
+ This product has included contributions from some individuals,
782
+ including the following:
783
+ ===================================================================
784
+ Joerg von Frantzius
785
+ Thomas Marti
786
+ Barry Haddow
787
+ Marco Schulze
788
+ Ralph Ullrich
789
+ David Ezzio
790
+ Brendan de Beer
791
+ David Eaves
792
+ Martin Taal
793
+ Tony Lai
794
+ Roland Szabo
795
+ Marcus Mennemeier
796
+ Xuan Baldauf
797
+ Eric Sultan
798
+
799
+ Apache Thrift
800
+ Copyright 2006-2010 The Apache Software Foundation.
801
+
802
+ =========================================================================
803
+ == NOTICE file corresponding to section 4(d) of the Apache License,
804
+ == Version 2.0, in this case for the Apache Derby distribution.
805
+ ==
806
+ == DO NOT EDIT THIS FILE DIRECTLY. IT IS GENERATED
807
+ == BY THE buildnotice TARGET IN THE TOP LEVEL build.xml FILE.
808
+ ==
809
+ =========================================================================
810
+
811
+ Apache Derby
812
+ Copyright 2004-2015 The Apache Software Foundation
813
+
814
+ =========================================================================
815
+
816
+ Portions of Derby were originally developed by
817
+ International Business Machines Corporation and are
818
+ licensed to the Apache Software Foundation under the
819
+ "Software Grant and Corporate Contribution License Agreement",
820
+ informally known as the "Derby CLA".
821
+ The following copyright notice(s) were affixed to portions of the code
822
+ with which this file is now or was at one time distributed
823
+ and are placed here unaltered.
824
+
825
+ (C) Copyright 1997,2004 International Business Machines Corporation. All rights reserved.
826
+
827
+ (C) Copyright IBM Corp. 2003.
828
+
829
+ The portion of the functionTests under 'nist' was originally
830
+ developed by the National Institute of Standards and Technology (NIST),
831
+ an agency of the United States Department of Commerce, and adapted by
832
+ International Business Machines Corporation in accordance with the NIST
833
+ Software Acknowledgment and Redistribution document at
834
+ http://www.itl.nist.gov/div897/ctg/sql_form.htm
835
+
836
+ The JDBC apis for small devices and JDBC3 (under java/stubs/jsr169 and
837
+ java/stubs/jdbc3) were produced by trimming sources supplied by the
838
+ Apache Harmony project. In addition, the Harmony SerialBlob and
839
+ SerialClob implementations are used. The following notice covers the Harmony sources:
840
+
841
+ Portions of Harmony were originally developed by
842
+ Intel Corporation and are licensed to the Apache Software
843
+ Foundation under the "Software Grant and Corporate Contribution
844
+ License Agreement", informally known as the "Intel Harmony CLA".
845
+
846
+ The Derby build relies on source files supplied by the Apache Felix
847
+ project. The following notice covers the Felix files:
848
+
849
+ Apache Felix Main
850
+ Copyright 2008 The Apache Software Foundation
851
+
852
+ I. Included Software
853
+
854
+ This product includes software developed at
855
+ The Apache Software Foundation (http://www.apache.org/).
856
+ Licensed under the Apache License 2.0.
857
+
858
+ This product includes software developed at
859
+ The OSGi Alliance (http://www.osgi.org/).
860
+ Copyright (c) OSGi Alliance (2000, 2007).
861
+ Licensed under the Apache License 2.0.
862
+
863
+ This product includes software from http://kxml.sourceforge.net.
864
+ Copyright (c) 2002,2003, Stefan Haustein, Oberhausen, Rhld., Germany.
865
+ Licensed under BSD License.
866
+
867
+ II. Used Software
868
+
869
+ This product uses software developed at
870
+ The OSGi Alliance (http://www.osgi.org/).
871
+ Copyright (c) OSGi Alliance (2000, 2007).
872
+ Licensed under the Apache License 2.0.
873
+
874
+ III. License Summary
875
+ - Apache License 2.0
876
+ - BSD License
877
+
878
+ The Derby build relies on jar files supplied by the Apache Lucene
879
+ project. The following notice covers the Lucene files:
880
+
881
+ Apache Lucene
882
+ Copyright 2013 The Apache Software Foundation
883
+
884
+ Includes software from other Apache Software Foundation projects,
885
+ including, but not limited to:
886
+ - Apache Ant
887
+ - Apache Jakarta Regexp
888
+ - Apache Commons
889
+ - Apache Xerces
890
+
891
+ ICU4J, (under analysis/icu) is licensed under an MIT styles license
892
+ and Copyright (c) 1995-2008 International Business Machines Corporation and others
893
+
894
+ Some data files (under analysis/icu/src/data) are derived from Unicode data such
895
+ as the Unicode Character Database. See http://unicode.org/copyright.html for more
896
+ details.
897
+
898
+ Brics Automaton (under core/src/java/org/apache/lucene/util/automaton) is
899
+ BSD-licensed, created by Anders Møller. See http://www.brics.dk/automaton/
900
+
901
+ The levenshtein automata tables (under core/src/java/org/apache/lucene/util/automaton) were
902
+ automatically generated with the moman/finenight FSA library, created by
903
+ Jean-Philippe Barrette-LaPierre. This library is available under an MIT license,
904
+ see http://sites.google.com/site/rrettesite/moman and
905
+ http://bitbucket.org/jpbarrette/moman/overview/
906
+
907
+ The class org.apache.lucene.util.WeakIdentityMap was derived from
908
+ the Apache CXF project and is Apache License 2.0.
909
+
910
+ The Google Code Prettify is Apache License 2.0.
911
+ See http://code.google.com/p/google-code-prettify/
912
+
913
+ JUnit (junit-4.10) is licensed under the Common Public License v. 1.0
914
+ See http://junit.sourceforge.net/cpl-v10.html
915
+
916
+ This product includes code (JaspellTernarySearchTrie) from Java Spelling Checkin
917
+ g Package (jaspell): http://jaspell.sourceforge.net/
918
+ License: The BSD License (http://www.opensource.org/licenses/bsd-license.php)
919
+
920
+ This product includes software developed by the JDOM Project (http://www.jdom.org/)
921
+ License: https://raw.githubusercontent.com/hunterhacker/jdom/master/LICENSE.txt
922
+
923
+ The snowball stemmers in
924
+ analysis/common/src/java/net/sf/snowball
925
+ were developed by Martin Porter and Richard Boulton.
926
+ The snowball stopword lists in
927
+ analysis/common/src/resources/org/apache/lucene/analysis/snowball
928
+ were developed by Martin Porter and Richard Boulton.
929
+ The full snowball package is available from
930
+ http://snowball.tartarus.org/
931
+
932
+ The KStem stemmer in
933
+ analysis/common/src/org/apache/lucene/analysis/en
934
+ was developed by Bob Krovetz and Sergio Guzman-Lara (CIIR-UMass Amherst)
935
+ under the BSD-license.
936
+
937
+ The Arabic,Persian,Romanian,Bulgarian, and Hindi analyzers (common) come with a default
938
+ stopword list that is BSD-licensed created by Jacques Savoy. These files reside in:
939
+ analysis/common/src/resources/org/apache/lucene/analysis/ar/stopwords.txt,
940
+ analysis/common/src/resources/org/apache/lucene/analysis/fa/stopwords.txt,
941
+ analysis/common/src/resources/org/apache/lucene/analysis/ro/stopwords.txt,
942
+ analysis/common/src/resources/org/apache/lucene/analysis/bg/stopwords.txt,
943
+ analysis/common/src/resources/org/apache/lucene/analysis/hi/stopwords.txt
944
+ See http://members.unine.ch/jacques.savoy/clef/index.html.
945
+
946
+ The German,Spanish,Finnish,French,Hungarian,Italian,Portuguese,Russian and Swedish light stemmers
947
+ (common) are based on BSD-licensed reference implementations created by Jacques Savoy and
948
+ Ljiljana Dolamic. These files reside in:
949
+ analysis/common/src/java/org/apache/lucene/analysis/de/GermanLightStemmer.java
950
+ analysis/common/src/java/org/apache/lucene/analysis/de/GermanMinimalStemmer.java
951
+ analysis/common/src/java/org/apache/lucene/analysis/es/SpanishLightStemmer.java
952
+ analysis/common/src/java/org/apache/lucene/analysis/fi/FinnishLightStemmer.java
953
+ analysis/common/src/java/org/apache/lucene/analysis/fr/FrenchLightStemmer.java
954
+ analysis/common/src/java/org/apache/lucene/analysis/fr/FrenchMinimalStemmer.java
955
+ analysis/common/src/java/org/apache/lucene/analysis/hu/HungarianLightStemmer.java
956
+ analysis/common/src/java/org/apache/lucene/analysis/it/ItalianLightStemmer.java
957
+ analysis/common/src/java/org/apache/lucene/analysis/pt/PortugueseLightStemmer.java
958
+ analysis/common/src/java/org/apache/lucene/analysis/ru/RussianLightStemmer.java
959
+ analysis/common/src/java/org/apache/lucene/analysis/sv/SwedishLightStemmer.java
960
+
961
+ The Stempel analyzer (stempel) includes BSD-licensed software developed
962
+ by the Egothor project http://egothor.sf.net/, created by Leo Galambos, Martin Kvapil,
963
+ and Edmond Nolan.
964
+
965
+ The Polish analyzer (stempel) comes with a default
966
+ stopword list that is BSD-licensed created by the Carrot2 project. The file resides
967
+ in stempel/src/resources/org/apache/lucene/analysis/pl/stopwords.txt.
968
+ See http://project.carrot2.org/license.html.
969
+
970
+ The SmartChineseAnalyzer source code (smartcn) was
971
+ provided by Xiaoping Gao and copyright 2009 by www.imdict.net.
972
+
973
+ WordBreakTestUnicode_*.java (under modules/analysis/common/src/test/)
974
+ is derived from Unicode data such as the Unicode Character Database.
975
+ See http://unicode.org/copyright.html for more details.
976
+
977
+ The Morfologik analyzer (morfologik) includes BSD-licensed software
978
+ developed by Dawid Weiss and Marcin Miłkowski (http://morfologik.blogspot.com/).
979
+
980
+ Morfologik uses data from Polish ispell/myspell dictionary
981
+ (http://www.sjp.pl/slownik/en/) licenced on the terms of (inter alia)
982
+ LGPL and Creative Commons ShareAlike.
983
+
984
+ Morfologic includes data from BSD-licensed dictionary of Polish (SGJP)
985
+ (http://sgjp.pl/morfeusz/)
986
+
987
+ Servlet-api.jar and javax.servlet-*.jar are under the CDDL license, the original
988
+ source code for this can be found at http://www.eclipse.org/jetty/downloads.php
989
+
990
+ ===========================================================================
991
+ Kuromoji Japanese Morphological Analyzer - Apache Lucene Integration
992
+ ===========================================================================
993
+
994
+ This software includes a binary and/or source version of data from
995
+
996
+ mecab-ipadic-2.7.0-20070801
997
+
998
+ which can be obtained from
999
+
1000
+ http://atilika.com/releases/mecab-ipadic/mecab-ipadic-2.7.0-20070801.tar.gz
1001
+
1002
+ or
1003
+
1004
+ http://jaist.dl.sourceforge.net/project/mecab/mecab-ipadic/2.7.0-20070801/mecab-ipadic-2.7.0-20070801.tar.gz
1005
+
1006
+ ===========================================================================
1007
+ mecab-ipadic-2.7.0-20070801 Notice
1008
+ ===========================================================================
1009
+
1010
+ Nara Institute of Science and Technology (NAIST),
1011
+ the copyright holders, disclaims all warranties with regard to this
1012
+ software, including all implied warranties of merchantability and
1013
+ fitness, in no event shall NAIST be liable for
1014
+ any special, indirect or consequential damages or any damages
1015
+ whatsoever resulting from loss of use, data or profits, whether in an
1016
+ action of contract, negligence or other tortuous action, arising out
1017
+ of or in connection with the use or performance of this software.
1018
+
1019
+ A large portion of the dictionary entries
1020
+ originate from ICOT Free Software. The following conditions for ICOT
1021
+ Free Software applies to the current dictionary as well.
1022
+
1023
+ Each User may also freely distribute the Program, whether in its
1024
+ original form or modified, to any third party or parties, PROVIDED
1025
+ that the provisions of Section 3 ("NO WARRANTY") will ALWAYS appear
1026
+ on, or be attached to, the Program, which is distributed substantially
1027
+ in the same form as set out herein and that such intended
1028
+ distribution, if actually made, will neither violate or otherwise
1029
+ contravene any of the laws and regulations of the countries having
1030
+ jurisdiction over the User or the intended distribution itself.
1031
+
1032
+ NO WARRANTY
1033
+
1034
+ The program was produced on an experimental basis in the course of the
1035
+ research and development conducted during the project and is provided
1036
+ to users as so produced on an experimental basis. Accordingly, the
1037
+ program is provided without any warranty whatsoever, whether express,
1038
+ implied, statutory or otherwise. The term "warranty" used herein
1039
+ includes, but is not limited to, any warranty of the quality,
1040
+ performance, merchantability and fitness for a particular purpose of
1041
+ the program and the nonexistence of any infringement or violation of
1042
+ any right of any third party.
1043
+
1044
+ Each user of the program will agree and understand, and be deemed to
1045
+ have agreed and understood, that there is no warranty whatsoever for
1046
+ the program and, accordingly, the entire risk arising from or
1047
+ otherwise connected with the program is assumed by the user.
1048
+
1049
+ Therefore, neither ICOT, the copyright holder, or any other
1050
+ organization that participated in or was otherwise related to the
1051
+ development of the program and their respective officials, directors,
1052
+ officers and other employees shall be held liable for any and all
1053
+ damages, including, without limitation, general, special, incidental
1054
+ and consequential damages, arising out of or otherwise in connection
1055
+ with the use or inability to use the program or any product, material
1056
+ or result produced or otherwise obtained by using the program,
1057
+ regardless of whether they have been advised of, or otherwise had
1058
+ knowledge of, the possibility of such damages at any time during the
1059
+ project or thereafter. Each user will be deemed to have agreed to the
1060
+ foregoing by his or her commencement of use of the program. The term
1061
+ "use" as used herein includes, but is not limited to, the use,
1062
+ modification, copying and distribution of the program and the
1063
+ production of secondary products from the program.
1064
+
1065
+ In the case where the program, whether in its original form or
1066
+ modified, was distributed or delivered to or received by a user from
1067
+ any person, organization or entity other than ICOT, unless it makes or
1068
+ grants independently of ICOT any specific warranty to the user in
1069
+ writing, such person, organization or entity, will also be exempted
1070
+ from and not be held liable to the user for any such damages as noted
1071
+ above as far as the program is concerned.
1072
+
1073
+ The Derby build relies on a jar file supplied by the JSON Simple
1074
+ project, hosted at https://code.google.com/p/json-simple/.
1075
+ The JSON simple jar file is licensed under the Apache 2.0 License.
1076
+
1077
+ Hive CLI
1078
+ Copyright 2016 The Apache Software Foundation
1079
+
1080
+ Hive JDBC
1081
+ Copyright 2016 The Apache Software Foundation
1082
+
1083
+
1084
+ Chill is a set of Scala extensions for Kryo.
1085
+ Copyright 2012 Twitter, Inc.
1086
+
1087
+ Third Party Dependencies:
1088
+
1089
+ Kryo 2.17
1090
+ BSD 3-Clause License
1091
+ http://code.google.com/p/kryo
1092
+
1093
+ Commons-Codec 1.7
1094
+ Apache Public License 2.0
1095
+ http://hadoop.apache.org
1096
+
1097
+
1098
+
1099
+ Breeze is distributed under an Apache License V2.0 (See LICENSE)
1100
+
1101
+ ===============================================================================
1102
+
1103
+ Proximal algorithms outlined in Proximal.scala (package breeze.optimize.proximal)
1104
+ are based on https://github.com/cvxgrp/proximal (see LICENSE for details) and distributed with
1105
+ Copyright (c) 2014 by Debasish Das (Verizon), all rights reserved.
1106
+
1107
+ ===============================================================================
1108
+
1109
+ QuadraticMinimizer class in package breeze.optimize.proximal is distributed with Copyright (c)
1110
+ 2014, Debasish Das (Verizon), all rights reserved.
1111
+
1112
+ ===============================================================================
1113
+
1114
+ NonlinearMinimizer class in package breeze.optimize.proximal is distributed with Copyright (c)
1115
+ 2015, Debasish Das (Verizon), all rights reserved.
1116
+
1117
+
1118
+ stream-lib
1119
+ Copyright 2016 AddThis
1120
+
1121
+ This product includes software developed by AddThis.
1122
+
1123
+ This product also includes code adapted from:
1124
+
1125
+ Apache Solr (http://lucene.apache.org/solr/)
1126
+ Copyright 2014 The Apache Software Foundation
1127
+
1128
+ Apache Mahout (http://mahout.apache.org/)
1129
+ Copyright 2014 The Apache Software Foundation
1130
+
1131
+ scala-xml
1132
+ Copyright (c) 2002-2019 EPFL
1133
+ Copyright (c) 2011-2019 Lightbend, Inc.
1134
+
1135
+ scala-xml includes software developed at
1136
+ LAMP/EPFL (https://lamp.epfl.ch/) and
1137
+ Lightbend, Inc. (https://www.lightbend.com/).
1138
+
1139
+ Licensed under the Apache License, Version 2.0 (the "License").
1140
+ Unless required by applicable law or agreed to in writing, software
1141
+ distributed under the License is distributed on an "AS IS" BASIS,
1142
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1143
+ See the License for the specific language governing permissions and
1144
+ limitations under the License.
1145
+
1146
+ dropwizard-metrics-hadoop-metrics2-reporter
1147
+ Copyright 2016 Josh Elser
1148
+
1149
+ Hive Beeline
1150
+ Copyright 2019 The Apache Software Foundation
1151
+
1152
+ Hive CLI
1153
+ Copyright 2019 The Apache Software Foundation
1154
+
1155
+ Hive Common
1156
+ Copyright 2019 The Apache Software Foundation
1157
+
1158
+ Hive JDBC
1159
+ Copyright 2019 The Apache Software Foundation
1160
+
1161
+ Hive Query Language
1162
+ Copyright 2019 The Apache Software Foundation
1163
+
1164
+ Hive Llap Common
1165
+ Copyright 2019 The Apache Software Foundation
1166
+
1167
+ Hive Metastore
1168
+ Copyright 2019 The Apache Software Foundation
1169
+
1170
+ Hive Serde
1171
+ Copyright 2019 The Apache Software Foundation
1172
+
1173
+ Hive Service RPC
1174
+ Copyright 2019 The Apache Software Foundation
1175
+
1176
+ Hive Shims
1177
+ Copyright 2019 The Apache Software Foundation
1178
+
1179
+ Hive Shims 0.23
1180
+ Copyright 2019 The Apache Software Foundation
1181
+
1182
+ Hive Shims Common
1183
+ Copyright 2019 The Apache Software Foundation
1184
+
1185
+ Hive Shims Scheduler
1186
+ Copyright 2019 The Apache Software Foundation
1187
+
1188
+ Hive Storage API
1189
+ Copyright 2018 The Apache Software Foundation
1190
+
1191
+ Hive Vector-Code-Gen Utilities
1192
+ Copyright 2019 The Apache Software Foundation
1193
+
1194
+
1195
+ Apache License
1196
+ Version 2.0, January 2004
1197
+ http://www.apache.org/licenses/
1198
+
1199
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1200
+
1201
+ 1. Definitions.
1202
+
1203
+ "License" shall mean the terms and conditions for use, reproduction,
1204
+ and distribution as defined by Sections 1 through 9 of this document.
1205
+
1206
+ "Licensor" shall mean the copyright owner or entity authorized by
1207
+ the copyright owner that is granting the License.
1208
+
1209
+ "Legal Entity" shall mean the union of the acting entity and all
1210
+ other entities that control, are controlled by, or are under common
1211
+ control with that entity. For the purposes of this definition,
1212
+ "control" means (i) the power, direct or indirect, to cause the
1213
+ direction or management of such entity, whether by contract or
1214
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
1215
+ outstanding shares, or (iii) beneficial ownership of such entity.
1216
+
1217
+ "You" (or "Your") shall mean an individual or Legal Entity
1218
+ exercising permissions granted by this License.
1219
+
1220
+ "Source" form shall mean the preferred form for making modifications,
1221
+ including but not limited to software source code, documentation
1222
+ source, and configuration files.
1223
+
1224
+ "Object" form shall mean any form resulting from mechanical
1225
+ transformation or translation of a Source form, including but
1226
+ not limited to compiled object code, generated documentation,
1227
+ and conversions to other media types.
1228
+
1229
+ "Work" shall mean the work of authorship, whether in Source or
1230
+ Object form, made available under the License, as indicated by a
1231
+ copyright notice that is included in or attached to the work
1232
+ (an example is provided in the Appendix below).
1233
+
1234
+ "Derivative Works" shall mean any work, whether in Source or Object
1235
+ form, that is based on (or derived from) the Work and for which the
1236
+ editorial revisions, annotations, elaborations, or other modifications
1237
+ represent, as a whole, an original work of authorship. For the purposes
1238
+ of this License, Derivative Works shall not include works that remain
1239
+ separable from, or merely link (or bind by name) to the interfaces of,
1240
+ the Work and Derivative Works thereof.
1241
+
1242
+ "Contribution" shall mean any work of authorship, including
1243
+ the original version of the Work and any modifications or additions
1244
+ to that Work or Derivative Works thereof, that is intentionally
1245
+ submitted to Licensor for inclusion in the Work by the copyright owner
1246
+ or by an individual or Legal Entity authorized to submit on behalf of
1247
+ the copyright owner. For the purposes of this definition, "submitted"
1248
+ means any form of electronic, verbal, or written communication sent
1249
+ to the Licensor or its representatives, including but not limited to
1250
+ communication on electronic mailing lists, source code control systems,
1251
+ and issue tracking systems that are managed by, or on behalf of, the
1252
+ Licensor for the purpose of discussing and improving the Work, but
1253
+ excluding communication that is conspicuously marked or otherwise
1254
+ designated in writing by the copyright owner as "Not a Contribution."
1255
+
1256
+ "Contributor" shall mean Licensor and any individual or Legal Entity
1257
+ on behalf of whom a Contribution has been received by Licensor and
1258
+ subsequently incorporated within the Work.
1259
+
1260
+ 2. Grant of Copyright License. Subject to the terms and conditions of
1261
+ this License, each Contributor hereby grants to You a perpetual,
1262
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1263
+ copyright license to reproduce, prepare Derivative Works of,
1264
+ publicly display, publicly perform, sublicense, and distribute the
1265
+ Work and such Derivative Works in Source or Object form.
1266
+
1267
+ 3. Grant of Patent License. Subject to the terms and conditions of
1268
+ this License, each Contributor hereby grants to You a perpetual,
1269
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1270
+ (except as stated in this section) patent license to make, have made,
1271
+ use, offer to sell, sell, import, and otherwise transfer the Work,
1272
+ where such license applies only to those patent claims licensable
1273
+ by such Contributor that are necessarily infringed by their
1274
+ Contribution(s) alone or by combination of their Contribution(s)
1275
+ with the Work to which such Contribution(s) was submitted. If You
1276
+ institute patent litigation against any entity (including a
1277
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
1278
+ or a Contribution incorporated within the Work constitutes direct
1279
+ or contributory patent infringement, then any patent licenses
1280
+ granted to You under this License for that Work shall terminate
1281
+ as of the date such litigation is filed.
1282
+
1283
+ 4. Redistribution. You may reproduce and distribute copies of the
1284
+ Work or Derivative Works thereof in any medium, with or without
1285
+ modifications, and in Source or Object form, provided that You
1286
+ meet the following conditions:
1287
+
1288
+ (a) You must give any other recipients of the Work or
1289
+ Derivative Works a copy of this License; and
1290
+
1291
+ (b) You must cause any modified files to carry prominent notices
1292
+ stating that You changed the files; and
1293
+
1294
+ (c) You must retain, in the Source form of any Derivative Works
1295
+ that You distribute, all copyright, patent, trademark, and
1296
+ attribution notices from the Source form of the Work,
1297
+ excluding those notices that do not pertain to any part of
1298
+ the Derivative Works; and
1299
+
1300
+ (d) If the Work includes a "NOTICE" text file as part of its
1301
+ distribution, then any Derivative Works that You distribute must
1302
+ include a readable copy of the attribution notices contained
1303
+ within such NOTICE file, excluding those notices that do not
1304
+ pertain to any part of the Derivative Works, in at least one
1305
+ of the following places: within a NOTICE text file distributed
1306
+ as part of the Derivative Works; within the Source form or
1307
+ documentation, if provided along with the Derivative Works; or,
1308
+ within a display generated by the Derivative Works, if and
1309
+ wherever such third-party notices normally appear. The contents
1310
+ of the NOTICE file are for informational purposes only and
1311
+ do not modify the License. You may add Your own attribution
1312
+ notices within Derivative Works that You distribute, alongside
1313
+ or as an addendum to the NOTICE text from the Work, provided
1314
+ that such additional attribution notices cannot be construed
1315
+ as modifying the License.
1316
+
1317
+ You may add Your own copyright statement to Your modifications and
1318
+ may provide additional or different license terms and conditions
1319
+ for use, reproduction, or distribution of Your modifications, or
1320
+ for any such Derivative Works as a whole, provided Your use,
1321
+ reproduction, and distribution of the Work otherwise complies with
1322
+ the conditions stated in this License.
1323
+
1324
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
1325
+ any Contribution intentionally submitted for inclusion in the Work
1326
+ by You to the Licensor shall be under the terms and conditions of
1327
+ this License, without any additional terms or conditions.
1328
+ Notwithstanding the above, nothing herein shall supersede or modify
1329
+ the terms of any separate license agreement you may have executed
1330
+ with Licensor regarding such Contributions.
1331
+
1332
+ 6. Trademarks. This License does not grant permission to use the trade
1333
+ names, trademarks, service marks, or product names of the Licensor,
1334
+ except as required for reasonable and customary use in describing the
1335
+ origin of the Work and reproducing the content of the NOTICE file.
1336
+
1337
+ 7. Disclaimer of Warranty. Unless required by applicable law or
1338
+ agreed to in writing, Licensor provides the Work (and each
1339
+ Contributor provides its Contributions) on an "AS IS" BASIS,
1340
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
1341
+ implied, including, without limitation, any warranties or conditions
1342
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
1343
+ PARTICULAR PURPOSE. You are solely responsible for determining the
1344
+ appropriateness of using or redistributing the Work and assume any
1345
+ risks associated with Your exercise of permissions under this License.
1346
+
1347
+ 8. Limitation of Liability. In no event and under no legal theory,
1348
+ whether in tort (including negligence), contract, or otherwise,
1349
+ unless required by applicable law (such as deliberate and grossly
1350
+ negligent acts) or agreed to in writing, shall any Contributor be
1351
+ liable to You for damages, including any direct, indirect, special,
1352
+ incidental, or consequential damages of any character arising as a
1353
+ result of this License or out of the use or inability to use the
1354
+ Work (including but not limited to damages for loss of goodwill,
1355
+ work stoppage, computer failure or malfunction, or any and all
1356
+ other commercial damages or losses), even if such Contributor
1357
+ has been advised of the possibility of such damages.
1358
+
1359
+ 9. Accepting Warranty or Additional Liability. While redistributing
1360
+ the Work or Derivative Works thereof, You may choose to offer,
1361
+ and charge a fee for, acceptance of support, warranty, indemnity,
1362
+ or other liability obligations and/or rights consistent with this
1363
+ License. However, in accepting such obligations, You may act only
1364
+ on Your own behalf and on Your sole responsibility, not on behalf
1365
+ of any other Contributor, and only if You agree to indemnify,
1366
+ defend, and hold each Contributor harmless for any liability
1367
+ incurred by, or claims asserted against, such Contributor by reason
1368
+ of your accepting any such warranty or additional liability.
1369
+
1370
+ END OF TERMS AND CONDITIONS
1371
+
1372
+ Copyright 2015-2015 DataNucleus
1373
+
1374
+ Licensed under the Apache License, Version 2.0 (the "License");
1375
+ you may not use this file except in compliance with the License.
1376
+ You may obtain a copy of the License at
1377
+
1378
+ http://www.apache.org/licenses/LICENSE-2.0
1379
+
1380
+ Unless required by applicable law or agreed to in writing, software
1381
+ distributed under the License is distributed on an "AS IS" BASIS,
1382
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1383
+ See the License for the specific language governing permissions and
1384
+ limitations under the License.
1385
+
1386
+ Android JSON library
1387
+ Copyright (C) 2010 The Android Open Source Project
1388
+
1389
+ This product includes software developed by
1390
+ The Android Open Source Project
1391
+
1392
+ Apache Velocity
1393
+
1394
+ Copyright (C) 2000-2007 The Apache Software Foundation
1395
+
1396
+ This product includes software developed at
1397
+ The Apache Software Foundation (http://www.apache.org/).
1398
+
1399
+ Apache Yetus - Audience Annotations
1400
+ Copyright 2015-2017 The Apache Software Foundation
1401
+
1402
+ This product includes software developed at
1403
+ The Apache Software Foundation (http://www.apache.org/).
1404
+
1405
+ Ehcache V3
1406
+ Copyright 2014-2016 Terracotta, Inc.
1407
+
1408
+ The product includes software from the Apache Commons Lang project,
1409
+ under the Apache License 2.0 (see: org.ehcache.impl.internal.classes.commonslang)
1410
+
1411
+ Apache Geronimo JCache Spec 1.0
1412
+ Copyright 2003-2014 The Apache Software Foundation
1413
+
1414
+ This product includes software developed at
1415
+ The Apache Software Foundation (http://www.apache.org/).
1416
+
1417
+
1418
+ Kerby-kerb Admin
1419
+ Copyright 2014-2017 The Apache Software Foundation
1420
+
1421
+ This product includes software developed at
1422
+ The Apache Software Foundation (http://www.apache.org/).
1423
+
1424
+
1425
+ Kerby-kerb Client
1426
+ Copyright 2014-2017 The Apache Software Foundation
1427
+
1428
+ This product includes software developed at
1429
+ The Apache Software Foundation (http://www.apache.org/).
1430
+
1431
+
1432
+ Kerby-kerb Common
1433
+ Copyright 2014-2017 The Apache Software Foundation
1434
+
1435
+ This product includes software developed at
1436
+ The Apache Software Foundation (http://www.apache.org/).
1437
+
1438
+
1439
+ Kerby-kerb core
1440
+ Copyright 2014-2017 The Apache Software Foundation
1441
+
1442
+ This product includes software developed at
1443
+ The Apache Software Foundation (http://www.apache.org/).
1444
+
1445
+
1446
+ Kerby-kerb Crypto
1447
+ Copyright 2014-2017 The Apache Software Foundation
1448
+
1449
+ This product includes software developed at
1450
+ The Apache Software Foundation (http://www.apache.org/).
1451
+
1452
+
1453
+ Kerby-kerb Identity
1454
+ Copyright 2014-2017 The Apache Software Foundation
1455
+
1456
+ This product includes software developed at
1457
+ The Apache Software Foundation (http://www.apache.org/).
1458
+
1459
+
1460
+ Kerby-kerb Server
1461
+ Copyright 2014-2017 The Apache Software Foundation
1462
+
1463
+ This product includes software developed at
1464
+ The Apache Software Foundation (http://www.apache.org/).
1465
+
1466
+
1467
+ Kerb Simple Kdc
1468
+ Copyright 2014-2017 The Apache Software Foundation
1469
+
1470
+ This product includes software developed at
1471
+ The Apache Software Foundation (http://www.apache.org/).
1472
+
1473
+
1474
+ Kerby-kerb Util
1475
+ Copyright 2014-2017 The Apache Software Foundation
1476
+
1477
+ This product includes software developed at
1478
+ The Apache Software Foundation (http://www.apache.org/).
1479
+
1480
+
1481
+ Kerby ASN1 Project
1482
+ Copyright 2014-2017 The Apache Software Foundation
1483
+
1484
+ This product includes software developed at
1485
+ The Apache Software Foundation (http://www.apache.org/).
1486
+
1487
+
1488
+ Kerby Config
1489
+ Copyright 2014-2017 The Apache Software Foundation
1490
+
1491
+ This product includes software developed at
1492
+ The Apache Software Foundation (http://www.apache.org/).
1493
+
1494
+
1495
+ Kerby PKIX Project
1496
+ Copyright 2014-2017 The Apache Software Foundation
1497
+
1498
+ This product includes software developed at
1499
+ The Apache Software Foundation (http://www.apache.org/).
1500
+
1501
+
1502
+ Kerby Util
1503
+ Copyright 2014-2017 The Apache Software Foundation
1504
+
1505
+ This product includes software developed at
1506
+ The Apache Software Foundation (http://www.apache.org/).
1507
+
1508
+
1509
+ Kerby XDR Project
1510
+ Copyright 2014-2017 The Apache Software Foundation
1511
+
1512
+ This product includes software developed at
1513
+ The Apache Software Foundation (http://www.apache.org/).
1514
+
1515
+
1516
+ Token provider
1517
+ Copyright 2014-2017 The Apache Software Foundation
1518
+
1519
+ This product includes software developed at
1520
+ The Apache Software Foundation (http://www.apache.org/).
1521
+
1522
+
1523
+ Metrics
1524
+ Copyright 2010-2013 Coda Hale and Yammer, Inc.
1525
+
1526
+ This product includes software developed by Coda Hale and Yammer, Inc.
1527
+
1528
+ This product includes code derived from the JSR-166 project (ThreadLocalRandom, Striped64,
1529
+ LongAdder), which was released with the following comments:
1530
+
1531
+ Written by Doug Lea with assistance from members of JCP JSR-166
1532
+ Expert Group and released to the public domain, as explained at
1533
+ http://creativecommons.org/publicdomain/zero/1.0/