http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/cce166b7/bin/src/main/resources/data-schema.xsd ---------------------------------------------------------------------- diff --git a/bin/src/main/resources/data-schema.xsd b/bin/src/main/resources/data-schema.xsd new file mode 100644 index 0000000..7384409 --- /dev/null +++ b/bin/src/main/resources/data-schema.xsd @@ -0,0 +1,84 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<!-- + ~ Licensed to the Apache Software Foundation (ASF) under one or more + ~ contributor license agreements. See the NOTICE file distributed with + ~ this work for additional information regarding copyright ownership. + ~ The ASF licenses this file to You under the Apache License, Version 2.0 + ~ (the "License"); you may not use this file except in compliance with + ~ the License. You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://pirk.apache.org" xmlns="http://pirk.apache.org" + elementFormDefault="qualified"> + + <xs:element name="schema"> + <xs:complexType> + <xs:sequence> + + <xs:element name="schemaName" type="xs:string"> + <xs:annotation> + <xs:documentation>The name of the data schema. + The name omits leading and trailing + whitespace, and is case sensitive. + </xs:documentation> + </xs:annotation> + </xs:element> + + <xs:element name="element" maxOccurs="unbounded"> + <xs:complexType> + <xs:sequence> + + <xs:element name="name" type="xs:string"> + <xs:annotation> + <xs:documentation>The name of the + data element. + The name omits + leading and trailing whitespace, + and is case sensitive. + </xs:documentation> + </xs:annotation> + </xs:element> + + <xs:element name="type" type="xs:string"> + <xs:annotation> + <xs:documentation>The type of the data element. + The type name is the fully qualified class name, + or the primitive Java type of the element. + </xs:documentation> + </xs:annotation> + </xs:element> + + <xs:element name="isArray" type="xs:boolean" + default="true" minOccurs="0"> + <xs:annotation> + <xs:documentation>Whether or not the schema element is + an array within the data. False if unspecified. + </xs:documentation> + </xs:annotation> + </xs:element> + + <xs:element name="partitioner" + type="xs:string" minOccurs="0"> + <xs:annotation> + <xs:documentation>Partitioner type for the element. + The type name is the fully qualified class name. + Uses the primitive Java type partitioner if unspecified. + </xs:documentation> + </xs:annotation> + </xs:element> + </xs:sequence> + </xs:complexType> + </xs:element> + </xs:sequence> + </xs:complexType> + </xs:element> + +</xs:schema> \ No newline at end of file
http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/cce166b7/bin/src/main/resources/log4j2.xml ---------------------------------------------------------------------- diff --git a/bin/src/main/resources/log4j2.xml b/bin/src/main/resources/log4j2.xml new file mode 100644 index 0000000..7501aaa --- /dev/null +++ b/bin/src/main/resources/log4j2.xml @@ -0,0 +1,49 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ Licensed to the Apache Software Foundation (ASF) under one or more + ~ contributor license agreements. See the NOTICE file distributed with + ~ this work for additional information regarding copyright ownership. + ~ The ASF licenses this file to You under the Apache License, Version 2.0 + ~ (the "License"); you may not use this file except in compliance with + ~ the License. You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> +<Configuration> + <Properties> + <Property name="projectPrefix">pirk</Property> + <Property name="Directory">./logs</Property> + <Property name="Filename">${projectPrefix}.log</Property> + </Properties> + + <Appenders> + <Console name="STDOUT" target="SYSTEM_OUT"> + <PatternLayout pattern="%5p [%t] %d (%F:%L) - %m%n"/> + </Console> + + <RollingFile name="RollingFile" fileName="${Directory}/${Filename}" filePattern="${projectPrefix}-%i.log"> + <PatternLayout pattern="%d %-5p %-17c{2} %3x - %m%n"/> + <Policies> + <SizeBasedTriggeringPolicy size="1 MB"/> + </Policies> + <DefaultRolloverStrategy max="2"/> + </RollingFile> + </Appenders> + + <Loggers> + <Logger name="org.apache.hadoop.hbase" level="info" additivity="false"/> + <Logger name="org.apache.hadoop.hbase.zookeeper" level="warn" additivity="false"/> + <Logger name="org.apache.zookeeper" level="error" additivity="false"/> + <Root level="info"> + <AppenderRef ref="STDOUT" level="info"/> + <AppenderRef ref="RollingFile" level="info"/> + </Root> + </Loggers> + +</Configuration> http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/cce166b7/bin/src/main/resources/pirk.properties ---------------------------------------------------------------------- diff --git a/bin/src/main/resources/pirk.properties b/bin/src/main/resources/pirk.properties new file mode 100755 index 0000000..a88c846 --- /dev/null +++ b/bin/src/main/resources/pirk.properties @@ -0,0 +1,230 @@ +############################################################################### +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +############################################################################### + +## +## Default System Configuration Properties +## + +#Name of the local properties file - used when running with the +#hadoop jar command +local.pirk.properties.dir=/root/ + +## +##Spark path for SparkLauncher +## +spark.home = /usr + +## +## Data schema properties +## +## Each data schema should be specified in an xml file of the form: +## +##<schema> +## <schemaName> name of the schema </schemaName> +## <element> +## <name> element name </name> +## <type> class name or type name (if Java primitive type) of the element </type> +## <isArray> true or false -- whether or not the schema element is an array within the data </isArray> +## <partitioner> optional - Partitioner class for the element; defaults to primitive java type partitioner </partitioner> +## </element> +## </schema> +## +## Primitive Java types must be one of the following: "byte", "short", "int", "long", "float", +## "double", "char", "string", "boolean" +## + +#Comma separated list of local data schema files to load, fully qualified file names +data.schemas = none + +## +## Query schema properties +## +## Each query schema should be specified in an xml file of the form; +## all items are treated in a case insensitive manner: +## +##<schema> +## <schemaName> name of the schema </schemaName> +## <dataSchemaName> name of the data schema over which this query is run </dataSchemaName> +## <selectorName> name of the element in the data schema that will be the selector </selectorName> +## <elements> +## <name> element name of element in the data schema to include in the query response </name> +## </elements> +## <filter> (optional) name of the filter class to use to filter the data </filter> +## <filterNames> +## <name> (optional) element name of element in the data schema to apply pre-processing filters </name> +## </filterNames> +## </schema> +## +## + +#Comma separated list of local query schema files to load, fully qualified file names +query.schemas = none + +## +##Properties for ElasticSearch compatibility +## + +#ES host address - One Elasticsearch node in the cluster - may include port specification +es.nodes=none + +#Default HTTP/REST port used for connecting to Elasticsearch +es.port=9200 + +#Number of results/items returned by each individual scroll +es.scroll.size = 1000 + +#Whether elasticsearch-hadoop will treat empty fields as null +es.field.read.empty.as.null=yes + + +## +##Properties for functional testing +## + +#Test index to create in ES (created and deleted within the tests) +#Need final form to be: <host>:<port>/<test.esTestIndex> +test.es.index = testindex + +#Type of elements to insert in ES +test.es.type = pkt + +#Elasticsearch resource - Elasticsearch resource location where data is read and written to. +#Requires the format <index>/<type> +test.es.resource= /testindex/pkt + +#Pathname in hdfs to place input JSON file testing +test.inputJSONFile = /tmp/testJSONInput + +#Pathname in hdfs to place output file for testing +test.outputHDFSFile = /tmp/testOutput + +#Query input dir in hdfs for testing +test.queryInputDir = none + +#Test stoplist file +test.stopListFile = /tmp/testStopListFile + +#Whether or not we are running PIR testing (used as a flag to dump intermediate RDDs for checking) +#This should default to false; it is changed to true in the test suite, as applicable +pir.test = false + +#HDFS output dir for PIR intermediate testing +#Should default to none; changed to a real hdfs path in the test suite, as applicable +pir.testOut = none + + +## +## Properties to enable/disable JNA-GMP modPow acceleration for Paillier +## + +paillier.useGMPForModPow = true + +# The JNA-GMP library we use to invoke the much faster, natively compiled GMP +# can be called in a way that tries to make all modPow calls take a constant amount +# of time to execute. This will slow down the modPow performance (still better than +# Java's BigInteger.modPow() ). +# If you are using this package in a multi-tenant computing environment and have +# concerns about other tenants being able to closely inspect the runtime of your +# software, you may want to enable this property. +paillier.GMPConstantTimeMode = false + +# This property controls the more rigorous prime generation checks in PrimeMaker.java +# which are based on FIPS SP 800-56B and FIPS 186-4 (extra Miller-Rabin rounds, limits +# on how close the primes p and q can be, and bounds on the values of the primes) +# These checks slow down prime generation considerably +pallier.FIPSPrimeGenerationChecks = true + +## These properties control the secure random number generator algorithm and provider. +## You can specify just the algorithm, or both algorithm and provider. The system's +## default secure random is used when the algorithm is left unspecified. +pallier.secureRandom.algorithm=NativePRNG +#pallier.secureRandom.provider=SUN + +## +## Properties for PIR query and response +## + +#Number of bits to return when encoding/returning string values as part of return data elements +pir.stringBits = 64 + +#Number of array elements to return when encoding/returning array valued elements +pir.numReturnArrayElements = 2 + +#Default prime certainty +pir.primeCertainty = 128 + +#Fully qualified dir in hdfs of Query files +pir.queryInput = none + +#Data input format type -- 'base' or 'elasticsearch' (given in InputFormatsConst class) +pir.dataInputFormat = base + +#Fully qualified name of input file/directory in hdfs; used if pir.dataInputFormat = base +pir.inputData = none + +#Inputformat for 'base' data input format type -- must extend BaseInputFormat +pir.baseInputFormat = none + +#ElasticSearch-like query if using 'base' input format +pir.baseQuery = none + +#ES resource for input data +pir.esResource = null + +#ES query for input data +pir.esQuery = none + +#Fully qualified name of output file in hdfs +pir.outputFile = none + +#Fully qualified dir in hdfs of file containing stoplist terms +pir.stopListFile = stopListFile + +#Number of reduce tasks +pir.numReduceTasks = 100 + +#Whether or not to use the local cache during PIR computations +pir.useLocalCache = true + +#Whether or not to limit the hits for each query term +pir.limitHitsPerSelector = true + +#Number of hits to limit for each query term, if pir.limitHitsPerSelector = true +pir.maxHitsPerSelector = 100 + +#Whether or not to embed the selector in the results for false positive reduction +pir.embedSelector = true + +#Whether or not to generate and use the HDFS modular exponentiation lookup table +pir.useHDFSLookupTable = false + +#Number of partitions to coalesce the input data into in Spark +pir.numDataPartitions = 1500 + +#Mapreduce memory options +mapreduce.map.memory.mb = 3000 +mapreduce.reduce.memory.mb = 3000 +mapreduce.map.java.opts = -Xmx2800m +mapreduce.reduce.java.opts = -Xmx2800m + +#HDFS directory for the expLookupTable +pir.expDir = none + +#Parallelism for expLookupTable creation in hdfs +pir.expCreationSplits = 600 http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/cce166b7/bin/src/main/resources/querier.properties ---------------------------------------------------------------------- diff --git a/bin/src/main/resources/querier.properties b/bin/src/main/resources/querier.properties new file mode 100644 index 0000000..15e3acd --- /dev/null +++ b/bin/src/main/resources/querier.properties @@ -0,0 +1,120 @@ +############################################################################### +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +############################################################################### + +## +## Required Properties +## + +#action -- required - 'encrypt' or 'decrypt' -- The action performed by the QuerierDriver +querier.action= + +#inputFile - required - Fully qualified file containing input +#The input is either: +#(1) For Encryption: A query file - Contains the query selectors, one per line; +#the first line must be the query number +#OR +#(2) For Decryption: A response file - Contains the serialized Response object +querier.inputFile= + +#outputFile -- required - Fully qualified file for the result output. +#The output file specifies either: +#(1) For encryption: +#(a) A file to contain the serialized Querier object named: <outputFile>-querier +#AND +#(b) A file to contain the serialized Query object named: <outputFile>-query +#OR +#(2) A file to contain the decryption results where each line is where each line +#corresponds to one hit and is a JSON object with the schema QuerySchema +querier.outputFile= + +#numThreads -- required -- Number of threads to use for encryption/decryption +querier.numThreads= + +## +## Optional Args +## + +#dataSchemas -- optional -- Comma separated list of data schema file names to load +#querier.dataSchemas= + +#querySchemas -- optional -- Comma separated list of query schema file names to load +#querier.querySchemas= + + +## Optional, but required for Encryption (ignored if not encrypting) + +#bitset -- required for encryption -- Ensure that this bit position is set in the Paillier +#modulus (will generate Paillier moduli until finding one in which this bit is set) +#querier.bitSet= + +#certainty -- required for encryption -- Certainty of prime generation for Paillier +#must be greater than or equal to 128 +#querier.certainty= + +#dataPartitionBitSize -- required for encryption -- Partition bit size in data partitioning +#querier.dataPartitionBitSize= + +#embedSelector - required for encryption -- 'true' or 'false' +#Whether or not to embed the selector in the results to reduce false positives +#Defaults to 'true' +#querier.embedSelector= + +#embedQuerySchema - true or false +#Whether or not to embed the QuerySchema in the Query (via QueryInfo) +#Defaults to 'false' +#querier.embedQuerySchema= + +#hashBitSize - required for encryption-- Bit size of keyed hash +#querier.hashBitSize= + +#hashKey -- required for encryption -- String key for the keyed hash functionality +#querier.hashKey= + +#useHDFSLookupTable -- required for encryption -- 'true' or 'false' +#Whether or not to generate and use a hdfs modular exponentation lookup table +#Defaults to 'false' +#querier.useHDFSLookupTable= + +#memLookupTable -- required for encryption -- 'true' or 'false' +#Whether or not to generate and use an in memory modular exponentation lookup table - only for +#standalone/testing right now... +#Defaults to 'false' +#querier.memLookupTable= + +#paillierBitSize -- required for encryption -- Paillier modulus size N +#querier.paillierBitSize= + +#queryType -- required for encryption +#Type of the query as defined in the 'schemaName' tag of the corresponding query schema file +#querier.queryType= + +#secureRandomAlg -- specify the SecureRandom algorithm +#Defaults to NativePRNG +#querier.secureRandomAlg= + +#secureRandomProvider -- specify the SecureRandom provider +#Defaults to SUN +#querier.secureRandomProvider= + +## Optional, but required for Decryption (ignored if not decrypting) + +#querierFile -- required for decryption +#Fully qualified file containing the serialized Querier object +#querier.querierFile= + \ No newline at end of file http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/cce166b7/bin/src/main/resources/query-schema.xsd ---------------------------------------------------------------------- diff --git a/bin/src/main/resources/query-schema.xsd b/bin/src/main/resources/query-schema.xsd new file mode 100644 index 0000000..65a36ce --- /dev/null +++ b/bin/src/main/resources/query-schema.xsd @@ -0,0 +1,119 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<!-- + ~ Licensed to the Apache Software Foundation (ASF) under one or more + ~ contributor license agreements. See the NOTICE file distributed with + ~ this work for additional information regarding copyright ownership. + ~ The ASF licenses this file to You under the Apache License, Version 2.0 + ~ (the "License"); you may not use this file except in compliance with + ~ the License. You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> +<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://pirk.apache.org" xmlns="http://pirk.apache.org" + elementFormDefault="qualified"> + + <xs:element name="schema"> + <xs:complexType> + <xs:sequence> + <xs:element name="schemaName" type="xs:string"> + <xs:annotation> + <xs:documentation> + The name of the query schema. + The name omits leading and trailing + whitespace, and is case sensitive. + </xs:documentation> + </xs:annotation> + </xs:element> + + <xs:element name="dataSchemaName" type="xs:string"> + <xs:annotation> + <xs:documentation> + The name of the data schema + over which this query is run. The name omits + leading and trailing whitespace, and is case + sensitive. + </xs:documentation> + </xs:annotation> + </xs:element> + + <xs:element name="selectorName" type="xs:string"> + <xs:annotation> + <xs:documentation>The name of the name of the + element in the data schema that will be the + selector for this query. + </xs:documentation> + </xs:annotation> + </xs:element> + + <xs:element name="elements"> + <xs:annotation> + <xs:documentation> + The set of element names to + include in the query response. + </xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:sequence> + + <xs:element name="name" type="xs:string" + maxOccurs="unbounded"> + <xs:annotation> + <xs:documentation> + The name of an + element in the data schema to + include in the query response. + </xs:documentation> + </xs:annotation> + </xs:element> + + </xs:sequence> + </xs:complexType> + </xs:element> + + <xs:element name="filter" type="xs:string" + minOccurs="0"> + <xs:annotation> + <xs:documentation> + The name of a class used to + filter the query response data. + </xs:documentation> + </xs:annotation> + </xs:element> + + <xs:element name="filterNames" minOccurs="0" + maxOccurs="unbounded"> + <xs:annotation> + <xs:documentation> + The set of data element names + over which the + response filter is applied. + </xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:sequence> + + <xs:element name="name" type="xs:string"> + <xs:annotation> + <xs:documentation> + The name of an + element in the data schema over + which to apply the filter. + </xs:documentation> + </xs:annotation> + </xs:element> + + </xs:sequence> + </xs:complexType> + </xs:element> + </xs:sequence> + </xs:complexType> + </xs:element> + +</xs:schema> http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/cce166b7/bin/src/main/resources/responder.properties ---------------------------------------------------------------------- diff --git a/bin/src/main/resources/responder.properties b/bin/src/main/resources/responder.properties new file mode 100644 index 0000000..ac6cb35 --- /dev/null +++ b/bin/src/main/resources/responder.properties @@ -0,0 +1,200 @@ +############################################################################### +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +############################################################################### + +## +## Required Properties +## + +#dataInputFormat -- required -- 'base', 'elasticsearch', or 'standalone' -- Specify the input format +pir.dataInputFormat= + +#outputFile -- required -- Fully qualified name of output file in hdfs +pir.outputFile= + +#platform -- required -- 'mapreduce', 'spark', 'sparkstreaming', or 'standalone' +#Processing platform technology for the responder +platform= + +#queryInput -- required -- Fully qualified dir in hdfs of Query files +pir.queryInput= + + +## +## Optional Args - Leave empty if not using/not changing default values +## + +#inputData -- required if baseInputFormat = 'base' +#Fully qualified name of input file/directory in hdfs; used if inputFormat = 'base' +#pir.inputData= + +#dataSchemas -- optional -- Comma separated list of data schema file names to load +#responder.dataSchemas= + +#querySchemas -- optional -- Comma separated list of query schema file names to load +#responder.querySchemas= + +#allowAdHocQuerySchemas -- 'true' or 'false' +#If true, allows embedded QuerySchemas for a query. +#Defaults to 'false' +#pir.allowEmbeddedQuerySchemas= + +#colMultReduceByKey -- 'true' or 'false' -- Spark only +#If true, uses reduceByKey in performing column multiplication; if false, uses groupByKey -> reduce +#Defaults to 'false' +#pir.colMultReduceByKey= + +#baseInputFormat -- required if baseInputFormat = 'base' +#Full class name of the InputFormat to use when reading in the data - must extend BaseInputFormat +#pir.baseInputFormat= + +#esQuery -- required if baseInputFormat = 'elasticsearch' -- ElasticSearch query +#if using 'elasticsearch' input format +#pir.esQuery= + +#esResource -- required if baseInputFormat = 'elasticsearch' +#Requires the format <index>/<type> : Elasticsearch resource where data is read and written to +#pir.esResource= + +#useHDFSLookupTable -- 'true' or 'false' - Whether or not to generate and use the +#hdfs lookup table for modular exponentiation +#Defaults to 'false' +#pir.useHDFSLookupTable= + +#baseQuery -- ElasticSearch-like query if using 'base' input format - +#used to filter records in the RecordReader +#Defaults to ?q=* +#pir.baseQuery= + +#limitHitsPerSelector -- 'true' or 'false' +#Whether or not to limit the number of hits per selector +#Defaults to 'true' +#pir.limitHitsPerSelector= + +#mapreduceMapJavaOpts -- Amount of heap (in MB) to allocate per map task +#Defaults to -Xmx2800m +#mapreduce.map.java.opts= + +#mapreduceMapMemoryMb -- Amount of memory (in MB) to allocate per map task +#Defaults to 3000 +#mapreduce.map.memory.mb= + +#mapreduceReduceJavaOpts +#Amount of heap (in MB) to allocate per reduce task +#Defaults to -Xmx2800m +#mapreduce.reduce.java.opts= + +#mapreduceReduceMemoryMb +#Amount of memory (in MB) to allocate per reduce task +#Defaults to 3000 +#mapreduce.reduce.memory.mb= + +#stopListFile -- optional (unless using StopListFilter) -- Fully qualified file in hdfs +#containing stoplist terms; used by the StopListFilter +#pir.stopListFile= + +#useLocalCache -- 'true' or 'false' +#Whether or not to use the local cache for modular exponentiation +#Defaults to 'true' +#pir.useLocalCache= + +#useModExpJoin -- 'true' or 'false' -- Spark only +#Whether or not to pre-compute the modular exponentiation table and join it to the data +#partitions when performing the encrypted row calculations +#Defaults to 'false' +#pir.useModExpJoin= + +#numReduceTasks -- optional -- Number of reduce tasks +#pir.numReduceTasks= + +#numColMultPartitions -- optional, Spark only +#Number of partitions to use when performing column multiplication +#pir.numColMultPartitions= + +#maxHitsPerSelector -- optional -- Max number of hits encrypted per selector +#pir.maxHitsPerSelector= + +#dataParts -- optional -- Number of partitions for the input data +#pir.numDataPartitions= + +#numExpLookupPartitions -- optional -- Number of partitions for the exp lookup table +#pir.numExpLookupPartitions= + +##Props for Spark Streaming + +#batchSeconds - optional - Batch size (in seconds) for Spark Streaming - defaults to 30 sec +#pir.sparkstreaming.batchSeconds= + +#windowLength - optional - Window size (in seconds) for Spark Streaming - defaults to 60 sec +#pir.sparkstreaming.windowLength= + +#queueStream - optional - Use queue stream for Spark Streaming - defaults to false +#pir.sparkstreaming.useQueueStream= + +#pir.sparkstreaming.maxBatches - optional - Spark Streaming - Max number of batches to process +#defaults to -1 (no maximum) +#pir.sparkstreaming.maxBatches= + +#spark.streaming.stopGracefullyOnShutdown - Spark Streaming - Whether or not to stop 'gracefully' during shutdown +#default is false +#spark.streaming.stopGracefullyOnShutdown= + + ##Properties for Kafka + #kafka.topic = topicName + #kafka.clientId = pirk_spout + + # Kafka Zookeepers + #kafka.zk = localhost:2181 + # Read from beginning of Kafka topic on startup + #kafka.forceFromStart = false + + + ##Properties for Storm + #storm.topoName = pir + #storm.workers = 1 + #storm.numAckers = 1 + #storm.maxSpoutPending=10 + #storm.worker.heapMemory=6000 + #storm.componentOnheapMem= 600.0 + + # This should be set to the number of Kafka partitions + #storm.spout.parallelism = 1 + + #storm.hashbolt.parallelism = 1 + #storm.encrowcalcbolt.parallelism = 1 + # This bolt is most computationally expensive and should have the highest value + #storm.enccolmultbolt.parallelism = 2 + + # These may be useful for tuning + #storm.executor.receiveBufferSize = 1024 + #storm.executor.sendBufferSize = 1024 + #storm.transferBufferSize = 8 + + # Frequency with which PIR matrix elements are flushed out + #storm.encrowcalcbolt.ticktuple = 60 + + # Design configurations: + # Hashbolt emits individual tuples for each data partition when splitPartitions =true + # emits the batch of data partitions for a record in a single tuple when =false + #storm.splitPartitions = true + # A task running EncColMultBolt will only be responsible for multiplying a subset of the row + # for any individual column when saltColumns = true + # All multiplication for a single column is done on a single EncColMultBolt instance when = false + #storm.saltColumns = true + # Only makes sense to tune if saltColumns=true + #storm.rowDivs = 1 http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/cce166b7/bin/src/test/java/org/apache/pirk/general/ISO8601DateParserTest.class ---------------------------------------------------------------------- diff --git a/bin/src/test/java/org/apache/pirk/general/ISO8601DateParserTest.class b/bin/src/test/java/org/apache/pirk/general/ISO8601DateParserTest.class new file mode 100644 index 0000000..d7bd1fd Binary files /dev/null and b/bin/src/test/java/org/apache/pirk/general/ISO8601DateParserTest.class differ http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/cce166b7/bin/src/test/java/org/apache/pirk/general/KeyedHashTest.class ---------------------------------------------------------------------- diff --git a/bin/src/test/java/org/apache/pirk/general/KeyedHashTest.class b/bin/src/test/java/org/apache/pirk/general/KeyedHashTest.class new file mode 100644 index 0000000..e809b4f Binary files /dev/null and b/bin/src/test/java/org/apache/pirk/general/KeyedHashTest.class differ http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/cce166b7/bin/src/test/java/org/apache/pirk/general/PaillierTest.class ---------------------------------------------------------------------- diff --git a/bin/src/test/java/org/apache/pirk/general/PaillierTest.class b/bin/src/test/java/org/apache/pirk/general/PaillierTest.class new file mode 100644 index 0000000..7c9c1db Binary files /dev/null and b/bin/src/test/java/org/apache/pirk/general/PaillierTest.class differ http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/cce166b7/bin/src/test/java/org/apache/pirk/general/PartitionUtilsTest.class ---------------------------------------------------------------------- diff --git a/bin/src/test/java/org/apache/pirk/general/PartitionUtilsTest.class b/bin/src/test/java/org/apache/pirk/general/PartitionUtilsTest.class new file mode 100644 index 0000000..9e3a519 Binary files /dev/null and b/bin/src/test/java/org/apache/pirk/general/PartitionUtilsTest.class differ http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/cce166b7/bin/src/test/java/org/apache/pirk/general/QueryParserUtilsTest.class ---------------------------------------------------------------------- diff --git a/bin/src/test/java/org/apache/pirk/general/QueryParserUtilsTest.class b/bin/src/test/java/org/apache/pirk/general/QueryParserUtilsTest.class new file mode 100644 index 0000000..cfe74d1 Binary files /dev/null and b/bin/src/test/java/org/apache/pirk/general/QueryParserUtilsTest.class differ http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/cce166b7/bin/src/test/java/org/apache/pirk/schema/data/LoadDataSchemaTest.class ---------------------------------------------------------------------- diff --git a/bin/src/test/java/org/apache/pirk/schema/data/LoadDataSchemaTest.class b/bin/src/test/java/org/apache/pirk/schema/data/LoadDataSchemaTest.class new file mode 100644 index 0000000..41776b2 Binary files /dev/null and b/bin/src/test/java/org/apache/pirk/schema/data/LoadDataSchemaTest.class differ http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/cce166b7/bin/src/test/java/org/apache/pirk/schema/query/LoadQuerySchemaTest.class ---------------------------------------------------------------------- diff --git a/bin/src/test/java/org/apache/pirk/schema/query/LoadQuerySchemaTest.class b/bin/src/test/java/org/apache/pirk/schema/query/LoadQuerySchemaTest.class new file mode 100644 index 0000000..4d2c88a Binary files /dev/null and b/bin/src/test/java/org/apache/pirk/schema/query/LoadQuerySchemaTest.class differ http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/cce166b7/bin/src/test/java/org/apache/pirk/serialization/SerializationTest$DummyRecord.class ---------------------------------------------------------------------- diff --git a/bin/src/test/java/org/apache/pirk/serialization/SerializationTest$DummyRecord.class b/bin/src/test/java/org/apache/pirk/serialization/SerializationTest$DummyRecord.class new file mode 100644 index 0000000..e6a1eb2 Binary files /dev/null and b/bin/src/test/java/org/apache/pirk/serialization/SerializationTest$DummyRecord.class differ http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/cce166b7/bin/src/test/java/org/apache/pirk/serialization/SerializationTest.class ---------------------------------------------------------------------- diff --git a/bin/src/test/java/org/apache/pirk/serialization/SerializationTest.class b/bin/src/test/java/org/apache/pirk/serialization/SerializationTest.class new file mode 100644 index 0000000..830913f Binary files /dev/null and b/bin/src/test/java/org/apache/pirk/serialization/SerializationTest.class differ http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/cce166b7/bin/src/test/java/org/apache/pirk/storm/KafkaStormIntegrationTest.class ---------------------------------------------------------------------- diff --git a/bin/src/test/java/org/apache/pirk/storm/KafkaStormIntegrationTest.class b/bin/src/test/java/org/apache/pirk/storm/KafkaStormIntegrationTest.class new file mode 100644 index 0000000..9990bcd Binary files /dev/null and b/bin/src/test/java/org/apache/pirk/storm/KafkaStormIntegrationTest.class differ http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/cce166b7/bin/src/test/java/org/apache/pirk/storm/SystemTime.class ---------------------------------------------------------------------- diff --git a/bin/src/test/java/org/apache/pirk/storm/SystemTime.class b/bin/src/test/java/org/apache/pirk/storm/SystemTime.class new file mode 100644 index 0000000..d666438 Binary files /dev/null and b/bin/src/test/java/org/apache/pirk/storm/SystemTime.class differ http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/cce166b7/bin/src/test/java/org/apache/pirk/wideskies/standalone/StandaloneTest.class ---------------------------------------------------------------------- diff --git a/bin/src/test/java/org/apache/pirk/wideskies/standalone/StandaloneTest.class b/bin/src/test/java/org/apache/pirk/wideskies/standalone/StandaloneTest.class new file mode 100644 index 0000000..31bff62 Binary files /dev/null and b/bin/src/test/java/org/apache/pirk/wideskies/standalone/StandaloneTest.class differ http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/cce166b7/bin/target/apache-pirk-0.0.1-SNAPSHOT-exe.jar ---------------------------------------------------------------------- diff --git a/bin/target/apache-pirk-0.0.1-SNAPSHOT-exe.jar b/bin/target/apache-pirk-0.0.1-SNAPSHOT-exe.jar new file mode 100644 index 0000000..4cf5fa7 Binary files /dev/null and b/bin/target/apache-pirk-0.0.1-SNAPSHOT-exe.jar differ http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/cce166b7/bin/target/apache-pirk-0.0.1-SNAPSHOT.jar ---------------------------------------------------------------------- diff --git a/bin/target/apache-pirk-0.0.1-SNAPSHOT.jar b/bin/target/apache-pirk-0.0.1-SNAPSHOT.jar new file mode 100644 index 0000000..dd851ec Binary files /dev/null and b/bin/target/apache-pirk-0.0.1-SNAPSHOT.jar differ http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/cce166b7/bin/target/classes/META-INF/BenchmarkList ---------------------------------------------------------------------- diff --git a/bin/target/classes/META-INF/BenchmarkList b/bin/target/classes/META-INF/BenchmarkList new file mode 100644 index 0000000..81a185a --- /dev/null +++ b/bin/target/classes/META-INF/BenchmarkList @@ -0,0 +1,3 @@ +org.apache.pirk.benchmark.PaillierBenchmark===,===org.apache.pirk.benchmark.generated.PaillierBenchmark_testWithGMP_jmhTest===,===testWithGMP===,===Throughput===,===1====,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[] +org.apache.pirk.benchmark.PaillierBenchmark===,===org.apache.pirk.benchmark.generated.PaillierBenchmark_testWithoutGMP_jmhTest===,===testWithoutGMP===,===Throughput===,===1====,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[] +org.apache.pirk.benchmark.PaillierBenchmark===,===org.apache.pirk.benchmark.generated.PaillierBenchmark_testWithGMPConstantTime_jmhTest===,===testWithGMPConstantTime===,===Throughput===,===1====,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[]===,===[] http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/cce166b7/bin/target/classes/META-INF/CompilerHints ---------------------------------------------------------------------- diff --git a/bin/target/classes/META-INF/CompilerHints b/bin/target/classes/META-INF/CompilerHints new file mode 100644 index 0000000..ee161aa --- /dev/null +++ b/bin/target/classes/META-INF/CompilerHints @@ -0,0 +1,10 @@ +dontinline,*.*_all_jmhStub +dontinline,*.*_avgt_jmhStub +dontinline,*.*_sample_jmhStub +dontinline,*.*_ss_jmhStub +dontinline,*.*_thrpt_jmhStub +inline,org/apache/pirk/benchmark/PaillierBenchmark$PaillierBenchmarkState.setUp +inline,org/apache/pirk/benchmark/PaillierBenchmark.testWithGMP +inline,org/apache/pirk/benchmark/PaillierBenchmark.testWithGMPConstantTime +inline,org/apache/pirk/benchmark/PaillierBenchmark.testWithoutGMP +inline,org/openjdk/jmh/infra/Blackhole.clearSinks http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/cce166b7/bin/target/classes/META-INF/DEPENDENCIES ---------------------------------------------------------------------- diff --git a/bin/target/classes/META-INF/DEPENDENCIES b/bin/target/classes/META-INF/DEPENDENCIES new file mode 100644 index 0000000..f0b1b39 --- /dev/null +++ b/bin/target/classes/META-INF/DEPENDENCIES @@ -0,0 +1,501 @@ +// ------------------------------------------------------------------ +// Transitive dependencies of this project determined from the +// maven pom organized by organization. +// ------------------------------------------------------------------ + +Apache Pirk (incubating) Project + + +From: 'an unknown organization' + - AntLR Parser Generator (http://www.antlr.org/) antlr:antlr:jar:2.7.7 + License: BSD License (http://www.antlr.org/license.html) + - AOP alliance (http://aopalliance.sourceforge.net) aopalliance:aopalliance:jar:1.0 + License: Public Domain + - stream-lib (https://github.com/addthis/stream-lib) com.clearspring.analytics:stream:jar:2.7.0 + License: Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - Kryo Shaded (https://github.com/EsotericSoftware/kryo/kryo-shaded) com.esotericsoftware:kryo-shaded:bundle:3.0.3 + License: New BSD License (http://www.opensource.org/licenses/bsd-license.php) + - MinLog (https://github.com/EsotericSoftware/minlog) com.esotericsoftware:minlog:bundle:1.3.0 + License: New BSD License (http://www.opensource.org/licenses/bsd-license.php) + - Kryo (http://code.google.com/p/kryo/) com.esotericsoftware.kryo:kryo:bundle:2.21 + License: New BSD License (http://www.opensource.org/licenses/bsd-license.php) + - MinLog (http://code.google.com/p/minlog/) com.esotericsoftware.minlog:minlog:jar:1.2 + License: New BSD License (http://www.opensource.org/licenses/bsd-license.php) + - ReflectASM (http://code.google.com/p/reflectasm/) com.esotericsoftware.reflectasm:reflectasm:jar:1.07 + License: New BSD License (http://www.opensource.org/licenses/bsd-license.php) + - FindBugs-jsr305 (http://findbugs.sourceforge.net/) com.google.code.findbugs:jsr305:jar:3.0.0 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - Guava: Google Core Libraries for Java (http://code.google.com/p/guava-libraries/guava) com.google.guava:guava:jar:11.0.2 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - JSON.simple (http://code.google.com/p/json-simple/) com.googlecode.json-simple:json-simple:jar:1.1 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - java-xmlbuilder (http://code.google.com/p/java-xmlbuilder/) com.jamesmurty.utils:java-xmlbuilder:jar:0.4 + License: Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0) + - Compress-LZF (http://github.com/ning/compress) com.ning:compress-lzf:bundle:1.0.3 + License: Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0.html) + - ParaNamer Core (http://paranamer.codehaus.org/paranamer) com.thoughtworks.paranamer:paranamer:jar:2.3 + License: BSD (LICENSE.txt) + - commons-beanutils commons-beanutils:commons-beanutils:jar:1.7.0 + + - Automaton (http://www.brics.dk/automaton/) dk.brics.automaton:automaton:jar:1.11-8 + License: BSD (http://www.opensource.org/licenses/bsd-license.php) + - HSQLDB (http://hsqldb.org/) hsqldb:hsqldb:jar:1.8.0.10 + License: HSQLDB License (http://hsqldb.org/web/hsqlLicense.html) + - Metrics Core (http://metrics.codahale.com/metrics-core/) io.dropwizard.metrics:metrics-core:bundle:3.1.2 + License: Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0.html) + - Graphite Integration for Metrics (http://metrics.codahale.com/metrics-graphite/) io.dropwizard.metrics:metrics-graphite:bundle:3.1.2 + License: Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0.html) + - Jackson Integration for Metrics (http://metrics.codahale.com/metrics-json/) io.dropwizard.metrics:metrics-json:bundle:3.1.2 + License: Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0.html) + - JVM Integration for Metrics (http://metrics.codahale.com/metrics-jvm/) io.dropwizard.metrics:metrics-jvm:bundle:3.1.2 + License: Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0.html) + - JavaBeans Activation Framework (JAF) (http://java.sun.com/products/javabeans/jaf/index.jsp) javax.activation:activation:jar:1.1 + License: Common Development and Distribution License (CDDL) v1.0 (https://glassfish.dev.java.net/public/CDDLv1.0.html) + - javax.inject (http://code.google.com/p/atinject/) javax.inject:javax.inject:jar:1 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - servlet-api javax.servlet:servlet-api:jar:2.5 + + - jsp-api javax.servlet.jsp:jsp-api:jar:2.1 + + - Bean Validation API (http://beanvalidation.org) javax.validation:validation-api:jar:1.1.0.Final + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - Streaming API for XML javax.xml.stream:stax-api:jar:1.0-2 + License: GNU General Public Library (http://www.gnu.org/licenses/gpl.txt) License: COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0 (http://www.sun.com/cddl/cddl.html) + - JLine (http://jline.sourceforge.net) jline:jline:jar:1.0 + License: BSD (LICENSE.txt) + - An open source Java toolkit for Amazon S3 (http://www.jets3t.org) net.java.dev.jets3t:jets3t:jar:0.9.0 + License: Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0) + - Java Native Access (https://github.com/twall/jna) net.java.dev.jna:jna:jar:4.0.0 + License: LGPL, version 2.1 (http://www.gnu.org/licenses/licenses.html) License: ASL, version 2 (http://www.apache.org/licenses/) + - LZ4 and xxHash (https://github.com/jpountz/lz4-java) net.jpountz.lz4:lz4:jar:1.3.0 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - pyrolite (https://github.com/irmen/Pyrolite) net.razorvine:pyrolite:jar:4.9 + License: MIT License (https://raw.githubusercontent.com/irmen/Pyrolite/master/LICENSE) + - kosmosfs (http://kosmosfs.sourceforge.net/) net.sf.kosmosfs:kfs:jar:0.3 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - Py4J (http://www.py4j.org/) net.sf.py4j:py4j:jar:0.9 + License: The New BSD License (http://www.opensource.org/licenses/bsd-license.html) + - ANTLR ST4 4.0.4 (http://www.stringtemplate.org) org.antlr:ST4:jar:4.0.4 + License: BSD licence (http://antlr.org/license.html) + - Antlr 3.4 Runtime (http://www.antlr.org) org.antlr:antlr-runtime:jar:3.4 + + - ANTLR StringTemplate (http://www.stringtemplate.org) org.antlr:stringtemplate:jar:3.2.1 + License: BSD licence (http://antlr.org/license.html) + - pig org.apache.pig:pig:jar:0.15.0 + + - zookeeper org.apache.zookeeper:zookeeper:pom:3.4.6 + + - Commons Compiler (http://docs.codehaus.org/display/JANINO/Home/commons-compiler) org.codehaus.janino:commons-compiler:jar:2.7.8 + License: New BSD License (http://dist.codehaus.org/janino/new_bsd_license.txt) + - Janino (http://docs.codehaus.org/display/JANINO/Home/janino) org.codehaus.janino:janino:jar:2.7.8 + License: New BSD License (http://dist.codehaus.org/janino/new_bsd_license.txt) + - Jettison org.codehaus.jettison:jettison:bundle:1.1 + + - Eclipse JDT Core (http://www.eclipse.org/jdt/) org.eclipse.jdt:core:jar:3.1.1 + License: Eclipse Public License v1.0 (http://www.eclipse.org/org/documents/epl-v10.php) + - Hamcrest Core (https://github.com/hamcrest/JavaHamcrest/hamcrest-core) org.hamcrest:hamcrest-core:jar:1.3 + License: New BSD License (http://www.opensource.org/licenses/bsd-license.php) + - Javassist (http://www.javassist.org/) org.javassist:javassist:bundle:3.18.1-GA + License: MPL 1.1 (http://www.mozilla.org/MPL/MPL-1.1.html) License: LGPL 2.1 (http://www.gnu.org/licenses/lgpl-2.1.html) License: Apache License 2.0 (http://www.apache.org/licenses/) + - RoaringBitmap (https://github.com/lemire/RoaringBitmap) org.roaringbitmap:RoaringBitmap:bundle:0.5.11 + License: Apache 2 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - empty (http://nexus.sonatype.org/oss-repository-hosting.html/unused) org.spark-project.spark:unused:jar:1.0.0 + License: The Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - Tachyon Clients - Distribution (http://tachyon-project.org/tachyon-clients/tachyon-client/) org.tachyonproject:tachyon-client:jar:0.8.2 + License: Apache License (https://github.com/amplab/tachyon/blob/master/LICENSE) + - Tachyon Under File System - HDFS (http://tachyon-project.org/tachyon-underfs/tachyon-underfs-hdfs/) org.tachyonproject:tachyon-underfs-hdfs:jar:0.8.2 + License: Apache License (https://github.com/amplab/tachyon/blob/master/LICENSE) + - Tachyon Under File System - Local FS (http://tachyon-project.org/tachyon-underfs/tachyon-underfs-local/) org.tachyonproject:tachyon-underfs-local:jar:0.8.2 + License: Apache License (https://github.com/amplab/tachyon/blob/master/LICENSE) + - Tachyon Under File System - S3 (http://tachyon-project.org/tachyon-underfs/tachyon-underfs-s3/) org.tachyonproject:tachyon-underfs-s3:jar:0.8.2 + License: Apache License (https://github.com/amplab/tachyon/blob/master/LICENSE) + - XZ for Java (http://tukaani.org/xz/java.html) org.tukaani:xz:jar:1.0 + License: Public Domain + - Uncommons Maths (http://maths.uncommons.org/) org.uncommons.maths:uncommons-maths:jar:1.2.2a + License: Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.html) + - oro oro:oro:jar:2.0.8 + + - jasper-compiler tomcat:jasper-compiler:jar:5.5.12 + + - jasper-runtime tomcat:jasper-runtime:jar:5.5.12 + + - xmlenc Library (http://xmlenc.sourceforge.net) xmlenc:xmlenc:jar:0.52 + License: The BSD License (http://www.opensource.org/licenses/bsd-license.php) + +From: 'Apache Software Foundation' (http://jakarta.apache.org/) + - HttpClient (http://jakarta.apache.org/httpcomponents/httpclient-3.x/) commons-httpclient:commons-httpclient:jar:3.1 + License: Apache License (http://www.apache.org/licenses/LICENSE-2.0) + +From: 'Apache Software Foundation' (http://www.apache.org) + - Apache Log4j (http://logging.apache.org/log4j/1.2/) log4j:log4j:bundle:1.2.17 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - Apache Hadoop Annotations org.apache.hadoop:hadoop-annotations:jar:2.7.2 + License: Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - Apache Hadoop Auth org.apache.hadoop:hadoop-auth:jar:2.7.2 + License: Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - Apache Hadoop Client org.apache.hadoop:hadoop-client:jar:2.7.2 + License: Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - Apache Hadoop Common org.apache.hadoop:hadoop-common:jar:2.7.2 + License: Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - Apache Hadoop HDFS org.apache.hadoop:hadoop-hdfs:jar:2.7.2 + License: Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - hadoop-mapreduce-client-app org.apache.hadoop:hadoop-mapreduce-client-app:jar:2.7.2 + License: Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - hadoop-mapreduce-client-common org.apache.hadoop:hadoop-mapreduce-client-common:jar:2.7.2 + License: Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - hadoop-mapreduce-client-core org.apache.hadoop:hadoop-mapreduce-client-core:jar:2.7.2 + License: Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - hadoop-mapreduce-client-jobclient org.apache.hadoop:hadoop-mapreduce-client-jobclient:jar:2.7.2 + License: Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - hadoop-mapreduce-client-shuffle org.apache.hadoop:hadoop-mapreduce-client-shuffle:jar:2.7.2 + License: Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - hadoop-yarn-api org.apache.hadoop:hadoop-yarn-api:jar:2.7.2 + License: Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - hadoop-yarn-client org.apache.hadoop:hadoop-yarn-client:jar:2.7.2 + License: Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - hadoop-yarn-common org.apache.hadoop:hadoop-yarn-common:jar:2.7.2 + License: Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - hadoop-yarn-server-common org.apache.hadoop:hadoop-yarn-server-common:jar:2.7.2 + License: Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - Apache Log4j API (http://logging.apache.org/log4j/2.x/log4j-api/) org.apache.logging.log4j:log4j-api:jar:2.6.2 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - Apache Log4j Core (http://logging.apache.org/log4j/2.x/log4j-core/) org.apache.logging.log4j:log4j-core:jar:2.6.2 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - Apache Log4j SLF4J Binding (http://logging.apache.org/log4j/2.x/log4j-slf4j-impl/) org.apache.logging.log4j:log4j-slf4j-impl:jar:2.6.2 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + +From: 'Apache Software Foundation' (http://www.apache.org/) + - XML Commons External Components XML APIs (http://xml.apache.org/commons/components/external/) xml-apis:xml-apis:jar:1.3.04 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + +From: 'com.fasterxml.jackson.module' + - jackson-module-scala (http://wiki.fasterxml.com/JacksonModuleScala) com.fasterxml.jackson.module:jackson-module-scala_2.10:bundle:2.6.5 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - jackson-module-scala (http://wiki.fasterxml.com/JacksonModuleScala) com.fasterxml.jackson.module:jackson-module-scala_2.11:bundle:2.4.4 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + +From: 'com.twitter' + - chill-java (https://github.com/twitter/chill) com.twitter:chill-java:jar:0.5.0 + License: Apache 2 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - chill (https://github.com/twitter/chill) com.twitter:chill_2.10:jar:0.8.0 + License: Apache 2 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - chill (https://github.com/twitter/chill) com.twitter:chill_2.11:jar:0.5.0 + License: Apache 2 (http://www.apache.org/licenses/LICENSE-2.0.txt) + +From: 'com.typesafe' + - config (https://github.com/typesafehub/config) com.typesafe:config:bundle:1.2.1 + License: Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0) + +From: 'Elastic' (http://www.elastic.co/) + - Elasticsearch Hadoop (http://github.com/elastic/elasticsearch-hadoop) org.elasticsearch:elasticsearch-hadoop:jar:2.3.3 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + +From: 'FasterXML' (http://fasterxml.com) + - Jackson (http://jackson.codehaus.org) org.codehaus.jackson:jackson-core-asl:jar:1.9.13 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - JAX-RS provider for JSON content type (http://jackson.codehaus.org) org.codehaus.jackson:jackson-jaxrs:jar:1.8.3 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) License: GNU Lesser General Public License (LGPL), Version 2.1 (http://www.fsf.org/licensing/licenses/lgpl.txt) + - Data Mapper for Jackson (http://jackson.codehaus.org) org.codehaus.jackson:jackson-mapper-asl:jar:1.9.13 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - Xml Compatibility extensions for Jackson (http://jackson.codehaus.org) org.codehaus.jackson:jackson-xc:jar:1.8.3 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) License: GNU Lesser General Public License (LGPL), Version 2.1 (http://www.fsf.org/licensing/licenses/lgpl.txt) + +From: 'FasterXML' (http://fasterxml.com/) + - Jackson-annotations (http://github.com/FasterXML/jackson) com.fasterxml.jackson.core:jackson-annotations:bundle:2.4.4 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - Jackson-core (https://github.com/FasterXML/jackson) com.fasterxml.jackson.core:jackson-core:bundle:2.4.4 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - jackson-databind (http://github.com/FasterXML/jackson) com.fasterxml.jackson.core:jackson-databind:bundle:2.4.4 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - Jackson-module-paranamer (http://wiki.fasterxml.com/JacksonHome) com.fasterxml.jackson.module:jackson-module-paranamer:bundle:2.6.5 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + +From: 'FuseSource, Corp.' (http://fusesource.com/) + - leveldbjni-all (http://leveldbjni.fusesource.org/leveldbjni-all) org.fusesource.leveldbjni:leveldbjni-all:bundle:1.8 + License: The BSD 3-Clause License (http://www.opensource.org/licenses/BSD-3-Clause) + +From: 'GlassFish Community' (https://glassfish.dev.java.net) + - Java Servlet API (http://servlet-spec.java.net) javax.servlet:javax.servlet-api:jar:3.1.0 + License: CDDL + GPLv2 with classpath exception (https://glassfish.dev.java.net/nonav/public/CDDL+GPL.html) + - OSGi resource locator bundle - used by various API providers that rely on META-INF/services mechanism to locate providers. (http://glassfish.org/osgi-resource-locator/) org.glassfish.hk2:osgi-resource-locator:jar:1.0.1 + License: CDDL + GPLv2 with classpath exception (https://glassfish.dev.java.net/nonav/public/CDDL+GPL.html) + +From: 'GlassFish Community' (https://glassfish.java.net) + - javax.annotation API (http://jcp.org/en/jsr/detail?id=250) javax.annotation:javax.annotation-api:jar:1.2 + License: CDDL + GPLv2 with classpath exception (https://glassfish.dev.java.net/nonav/public/CDDL+GPL.html) + +From: 'Google' (http://www.google.com/) + - Protocol Buffer Java API (http://code.google.com/p/protobuf) com.google.protobuf:protobuf-java:bundle:2.5.0 + License: New BSD license (http://www.opensource.org/licenses/bsd-license.php) + +From: 'Google, Inc.' (http://www.google.com) + - Gson (http://code.google.com/p/google-gson/) com.google.code.gson:gson:jar:2.2.4 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - Google Guice - Core Library (http://code.google.com/p/google-guice/guice/) com.google.inject:guice:jar:3.0 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - Google Guice - Extensions - Servlet (http://code.google.com/p/google-guice/extensions-parent/guice-servlet/) com.google.inject.extensions:guice-servlet:jar:3.0 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + +From: 'jcraft' (http://www.jcraft.com/jsch) + - JSch (http://www.jcraft.com/jsch/) com.jcraft:jsch:jar:0.1.42 + License: BSD (http://www.jcraft.com/jsch/LICENSE.txt) + +From: 'Joda.org' (http://www.joda.org) + - Joda time (http://joda-time.sourceforge.net) joda-time:joda-time:jar:2.1 + License: Apache 2 (http://www.apache.org/licenses/LICENSE-2.0.txt) + +From: 'Joe Walnes, Henri Tremblay, Leonardo Mesquita' + - Objenesis (http://objenesis.googlecode.com/svn/docs/index.html) org.objenesis:objenesis:jar:1.2 + License: Apache 2 (http://www.apache.org/licenses/LICENSE-2.0.txt) + +From: 'JUnit' (http://www.junit.org) + - JUnit (http://junit.org) junit:junit:jar:4.12 + License: Eclipse Public License 1.0 (http://www.eclipse.org/legal/epl-v10.html) + +From: 'LAMP/EPFL' (http://lamp.epfl.ch/) + - Scala Compiler (http://www.scala-lang.org/) org.scala-lang:scala-compiler:jar:2.11.0 + License: BSD 3-Clause (http://www.scala-lang.org/license.html) + - Scala Library (http://www.scala-lang.org/) org.scala-lang:scala-library:jar:2.11.7 + License: BSD 3-Clause (http://www.scala-lang.org/license.html) + - Scala Compiler (http://www.scala-lang.org/) org.scala-lang:scala-reflect:jar:2.11.2 + License: BSD 3-Clause (http://www.scala-lang.org/license.html) + - Scalap (http://www.scala-lang.org/) org.scala-lang:scalap:jar:2.11.0 + License: BSD 3-Clause (http://www.scala-lang.org/license.html) + +From: 'Mort Bay Consulting' (http://www.mortbay.com) + - Jetty Orbit :: Servlet API (http://www.eclipse.org/jetty/jetty-orbit/javax.servlet) org.eclipse.jetty.orbit:javax.servlet:orbit:3.0.0.v201112011016 + License: Apache Software License - Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0) License: Eclipse Public License - Version 1.0 (http://www.eclipse.org/org/documents/epl-v10.php) + - Jetty Server (http://www.eclipse.org/jetty/jetty-parent/project/modules/jetty) org.mortbay.jetty:jetty:jar:6.1.26 + License: Apache Software License - Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0) License: Eclipse Public License - Version 1.0 (http://www.eclipse.org/org/documents/epl-v10.php) + - Jetty Utilities (http://www.eclipse.org/jetty/jetty-parent/project/jetty-util) org.mortbay.jetty:jetty-util:jar:6.1.26 + License: Apache Software License - Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0) License: Eclipse Public License - Version 1.0 (http://www.eclipse.org/org/documents/epl-v10.php) + - Glassfish Jasper (http://jetty.mortbay.org/project/modules/jsp-2.1) org.mortbay.jetty:jsp-2.1:jar:6.1.14 + License: CDDL 1.0 (https://glassfish.dev.java.net/public/CDDLv1.0.html) + - Glassfish Jasper API (http://jetty.mortbay.org/project/modules/jsp-api-2.1) org.mortbay.jetty:jsp-api-2.1:jar:6.1.14 + License: Apache License Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0) + - Servlet Specification 2.5 API (http://jetty.mortbay.org/project/modules/servlet-api-2.5) org.mortbay.jetty:servlet-api-2.5:jar:6.1.14 + License: CDDL 1.0 (https://glassfish.dev.java.net/public/CDDLv1.0.html) + +From: 'ObjectWeb' (http://www.objectweb.org/) + - ASM Core (http://asm.objectweb.org/asm/) asm:asm:jar:3.1 + + +From: 'Oracle Corporation' (http://www.oracle.com) + - HK2 API module (https://hk2.java.net/hk2-api) org.glassfish.hk2:hk2-api:jar:2.4.0-b34 + License: CDDL + GPLv2 with classpath exception (https://glassfish.java.net/nonav/public/CDDL+GPL_1_1.html) + - ServiceLocator Default Implementation (https://hk2.java.net/hk2-locator) org.glassfish.hk2:hk2-locator:jar:2.4.0-b34 + License: CDDL + GPLv2 with classpath exception (https://glassfish.java.net/nonav/public/CDDL+GPL_1_1.html) + - HK2 Implementation Utilities (https://hk2.java.net/hk2-utils) org.glassfish.hk2:hk2-utils:jar:2.4.0-b34 + License: CDDL + GPLv2 with classpath exception (https://glassfish.java.net/nonav/public/CDDL+GPL_1_1.html) + - aopalliance version 1.0 repackaged as a module (https://hk2.java.net/external/aopalliance-repackaged) org.glassfish.hk2.external:aopalliance-repackaged:jar:2.4.0-b34 + License: CDDL + GPLv2 with classpath exception (https://glassfish.java.net/nonav/public/CDDL+GPL_1_1.html) + - javax.inject:1 as OSGi bundle (https://hk2.java.net/external/javax.inject) org.glassfish.hk2.external:javax.inject:jar:2.4.0-b34 + License: CDDL + GPLv2 with classpath exception (https://glassfish.java.net/nonav/public/CDDL+GPL_1_1.html) + +From: 'Oracle Corporation' (http://www.oracle.com/) + - jersey-client (https://jersey.java.net/jersey-client/) com.sun.jersey:jersey-client:bundle:1.9 + License: CDDL 1.1 (http://glassfish.java.net/public/CDDL+GPL_1_1.html) License: GPL2 w/ CPE (http://glassfish.java.net/public/CDDL+GPL_1_1.html) + - jersey-core (https://jersey.java.net/jersey-core/) com.sun.jersey:jersey-core:bundle:1.9 + License: CDDL 1.1 (http://glassfish.java.net/public/CDDL+GPL_1_1.html) License: GPL2 w/ CPE (http://glassfish.java.net/public/CDDL+GPL_1_1.html) + - jersey-json (https://jersey.java.net/jersey-json/) com.sun.jersey:jersey-json:bundle:1.9 + License: CDDL 1.1 (http://glassfish.java.net/public/CDDL+GPL_1_1.html) License: GPL2 w/ CPE (http://glassfish.java.net/public/CDDL+GPL_1_1.html) + - jersey-server (https://jersey.java.net/jersey-server/) com.sun.jersey:jersey-server:bundle:1.9 + License: CDDL 1.1 (http://glassfish.java.net/public/CDDL+GPL_1_1.html) License: GPL2 w/ CPE (http://glassfish.java.net/public/CDDL+GPL_1_1.html) + - jersey-guice (https://jersey.java.net/jersey-contribs/jersey-guice/) com.sun.jersey.contribs:jersey-guice:jar:1.9 + License: CDDL 1.1 (http://glassfish.java.net/public/CDDL+GPL_1_1.html) License: GPL2 w/ CPE (http://glassfish.java.net/public/CDDL+GPL_1_1.html) + - JAXB RI (http://jaxb.java.net/) com.sun.xml.bind:jaxb-impl:jar:2.2.3-1 + License: CDDL 1.1 (https://glassfish.java.net/public/CDDL+GPL_1_1.html) License: GPL2 w/ CPE (https://glassfish.java.net/public/CDDL+GPL_1_1.html) + - javax.ws.rs-api (http://jax-rs-spec.java.net) javax.ws.rs:javax.ws.rs-api:jar:2.0.1 + License: CDDL 1.1 (http://glassfish.java.net/public/CDDL+GPL_1_1.html) License: GPL2 w/ CPE (http://glassfish.java.net/public/CDDL+GPL_1_1.html) + - JAXB API bundle for GlassFish V3 (https://jaxb.dev.java.net/) javax.xml.bind:jaxb-api:jar:2.2.2 + License: CDDL 1.1 (https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html) License: GPL2 w/ CPE (https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html) + - jersey-repackaged-guava (https://jersey.java.net/project/project/jersey-guava/) org.glassfish.jersey.bundles.repackaged:jersey-guava:bundle:2.22.2 + License: CDDL+GPL License (http://glassfish.java.net/public/CDDL+GPL_1_1.html) + - jersey-container-servlet (https://jersey.java.net/project/jersey-container-servlet/) org.glassfish.jersey.containers:jersey-container-servlet:jar:2.22.2 + License: CDDL+GPL License (http://glassfish.java.net/public/CDDL+GPL_1_1.html) + - jersey-container-servlet-core (https://jersey.java.net/project/jersey-container-servlet-core/) org.glassfish.jersey.containers:jersey-container-servlet-core:jar:2.22.2 + License: CDDL+GPL License (http://glassfish.java.net/public/CDDL+GPL_1_1.html) + - jersey-core-client (https://jersey.java.net/jersey-client/) org.glassfish.jersey.core:jersey-client:jar:2.22.2 + License: CDDL+GPL License (http://glassfish.java.net/public/CDDL+GPL_1_1.html) + - jersey-core-common (https://jersey.java.net/jersey-common/) org.glassfish.jersey.core:jersey-common:jar:2.22.2 + License: CDDL+GPL License (http://glassfish.java.net/public/CDDL+GPL_1_1.html) + - jersey-core-server (https://jersey.java.net/jersey-server/) org.glassfish.jersey.core:jersey-server:jar:2.22.2 + License: CDDL+GPL License (http://glassfish.java.net/public/CDDL+GPL_1_1.html) + - jersey-media-jaxb (https://jersey.java.net/project/jersey-media-jaxb/) org.glassfish.jersey.media:jersey-media-jaxb:jar:2.22.2 + License: CDDL+GPL License (http://glassfish.java.net/public/CDDL+GPL_1_1.html) + +From: 'org.json4s' (https://github.com/json4s/json4s) + - json4s-ast (https://github.com/json4s/json4s) org.json4s:json4s-ast_2.10:jar:3.2.11 + License: ASL (http://github.com/json4s/json4s/raw/HEAD/LICENSE) + - json4s-ast (https://github.com/json4s/json4s) org.json4s:json4s-ast_2.11:jar:3.2.10 + License: ASL (http://github.com/json4s/json4s/raw/HEAD/LICENSE) + - json4s-core (https://github.com/json4s/json4s) org.json4s:json4s-core_2.10:jar:3.2.11 + License: ASL (http://github.com/json4s/json4s/raw/HEAD/LICENSE) + - json4s-core (https://github.com/json4s/json4s) org.json4s:json4s-core_2.11:jar:3.2.10 + License: ASL (http://github.com/json4s/json4s/raw/HEAD/LICENSE) + - json4s-jackson (https://github.com/json4s/json4s) org.json4s:json4s-jackson_2.10:jar:3.2.11 + License: ASL (http://github.com/json4s/json4s/raw/HEAD/LICENSE) + - json4s-jackson (https://github.com/json4s/json4s) org.json4s:json4s-jackson_2.11:jar:3.2.10 + License: ASL (http://github.com/json4s/json4s/raw/HEAD/LICENSE) + +From: 'org.scala-lang.modules' (http://www.scala-lang.org/) + - scala-parser-combinators (http://www.scala-lang.org/) org.scala-lang.modules:scala-parser-combinators_2.11:bundle:1.0.1 + License: BSD 3-clause (http://opensource.org/licenses/BSD-3-Clause) + - scala-xml (http://www.scala-lang.org/) org.scala-lang.modules:scala-xml_2.11:bundle:1.0.1 + License: BSD 3-clause (http://opensource.org/licenses/BSD-3-Clause) + +From: 'org.scalatest' + - scalatest (http://www.scalatest.org) org.scalatest:scalatest_2.10:bundle:2.2.6 + License: the Apache License, ASL Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0) + +From: 'QOS.ch' (http://www.qos.ch) + - JCL 1.1.1 implemented over SLF4J (http://www.slf4j.org) org.slf4j:jcl-over-slf4j:jar:1.7.10 + License: MIT License (http://www.opensource.org/licenses/mit-license.php) + - JUL to SLF4J bridge (http://www.slf4j.org) org.slf4j:jul-to-slf4j:jar:1.7.10 + License: MIT License (http://www.opensource.org/licenses/mit-license.php) + - SLF4J API Module (http://www.slf4j.org) org.slf4j:slf4j-api:jar:1.7.21 + License: MIT License (http://www.opensource.org/licenses/mit-license.php) + - SLF4J LOG4J-12 Binding (http://www.slf4j.org) org.slf4j:slf4j-log4j12:jar:1.7.16 + License: MIT License (http://www.opensource.org/licenses/mit-license.php) + +From: 'Square, Inc.' (http://squareup.com) + - JNA GMP (http://nexus.sonatype.org/oss-repository-hosting.html/jnagmp-parent/jnagmp) com.squareup.jnagmp:jnagmp:jar:1.1.0 + License: Apache License Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + +From: 'The Apache Software Foundation' (http://commons.apache.org/) + - Commons Configuration (http://commons.apache.org/${pom.artifactId.substring(8)}/) commons-configuration:commons-configuration:jar:1.6 + License: The Apache Software License, Version 2.0 (/LICENSE.txt) + +From: 'The Apache Software Foundation' (http://jakarta.apache.org) + - Digester (http://jakarta.apache.org/commons/digester/) commons-digester:commons-digester:jar:1.8 + License: The Apache Software License, Version 2.0 (/LICENSE.txt) + - EL (http://jakarta.apache.org/commons/el/) commons-el:commons-el:jar:1.0 + License: The Apache Software License, Version 2.0 (/LICENSE.txt) + +From: 'The Apache Software Foundation' (http://www.apache.org) + - Apache XBean :: ASM 5 shaded (repackaged) (http://geronimo.apache.org/maven/xbean/4.4/xbean-asm5-shaded) org.apache.xbean:xbean-asm5-shaded:bundle:4.4 + License: $license.name (http://asm.ow2.org/license.html) License: $license.name (http://www.apache.org/licenses/LICENSE-2.0.txt) + +From: 'The Apache Software Foundation' (http://www.apache.org/) + - ant (http://www.apache.org/ant/) ant:ant:jar:1.6.5 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - Commons BeanUtils Core (http://commons.apache.org/beanutils/) commons-beanutils:commons-beanutils-core:jar:1.8.0 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - Commons CLI (http://commons.apache.org/cli/) commons-cli:commons-cli:jar:1.2 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - Commons Codec (http://commons.apache.org/codec/) commons-codec:commons-codec:jar:1.4 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - Apache Commons Collections (http://commons.apache.org/collections/) commons-collections:commons-collections:jar:3.2.2 + License: Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - Commons IO (http://commons.apache.org/io/) commons-io:commons-io:jar:2.4 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - Commons Lang (http://commons.apache.org/lang/) commons-lang:commons-lang:jar:2.6 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - Commons Logging (http://commons.apache.org/proper/commons-logging/) commons-logging:commons-logging:jar:1.1.3 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - Commons Net (http://commons.apache.org/proper/commons-net/) commons-net:commons-net:jar:3.3 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - Apache Avro (http://avro.apache.org) org.apache.avro:avro:jar:1.7.4 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - Apache Avro IPC (http://avro.apache.org) org.apache.avro:avro-ipc:bundle:1.7.7 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - Apache Avro IPC (http://avro.apache.org) org.apache.avro:avro-ipc:bundle:1.7.7 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - Apache Avro Mapred API (http://avro.apache.org/avro-mapred) org.apache.avro:avro-mapred:bundle:1.7.7 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - Commons Compress (http://commons.apache.org/compress/) org.apache.commons:commons-compress:jar:1.4.1 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - Apache Commons Lang (http://commons.apache.org/proper/commons-lang/) org.apache.commons:commons-lang3:jar:3.3.2 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - Apache Commons Math (http://commons.apache.org/proper/commons-math/) org.apache.commons:commons-math3:jar:3.3 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - Curator Client (http://curator.apache.org/curator-client) org.apache.curator:curator-client:bundle:2.7.1 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - Curator Framework (http://curator.apache.org/curator-framework) org.apache.curator:curator-framework:bundle:2.7.1 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - Curator Recipes (http://curator.apache.org/curator-recipes) org.apache.curator:curator-recipes:bundle:2.7.1 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - Apache Directory API ASN.1 API (http://directory.apache.org/api-parent/api-asn1-parent/api-asn1-api/) org.apache.directory.api:api-asn1-api:bundle:1.0.0-M20 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - Apache Directory LDAP API Utilities (http://directory.apache.org/api-parent/api-util/) org.apache.directory.api:api-util:bundle:1.0.0-M20 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - ApacheDS I18n (http://directory.apache.org/apacheds/1.5/apacheds-i18n) org.apache.directory.server:apacheds-i18n:bundle:2.0.0-M15 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - ApacheDS Protocol Kerberos Codec (http://directory.apache.org/apacheds/1.5/apacheds-kerberos-codec) org.apache.directory.server:apacheds-kerberos-codec:bundle:2.0.0-M15 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - htrace-core (http://incubator.apache.org/projects/htrace.html) org.apache.htrace:htrace-core:jar:3.1.0-incubating + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - HttpClient (http://hc.apache.org/httpcomponents-client) org.apache.httpcomponents:httpclient:jar:4.1.2 + License: Apache License (LICENSE.txt) + - HttpCore (http://hc.apache.org/httpcomponents-core-ga) org.apache.httpcomponents:httpcore:jar:4.1.2 + License: Apache License (LICENSE.txt) + - Apache Ivy (http://ant.apache.org/ivy/) org.apache.ivy:ivy:jar:2.4.0 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - mesos (http://mesos.apache.org) org.apache.mesos:mesos:jar:0.21.1 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - Apache Parquet Column (https://parquet.apache.org) org.apache.parquet:parquet-column:jar:1.7.0 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - Apache Parquet Common (https://parquet.apache.org) org.apache.parquet:parquet-common:jar:1.7.0 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - Apache Parquet Encodings (https://parquet.apache.org) org.apache.parquet:parquet-encoding:jar:1.7.0 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - Apache Parquet Format (Incubating) (http://parquet.incubator.apache.org/) org.apache.parquet:parquet-format:jar:2.3.0-incubating + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - Apache Parquet Generator (https://parquet.apache.org) org.apache.parquet:parquet-generator:jar:1.7.0 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - Apache Parquet Hadoop (https://parquet.apache.org) org.apache.parquet:parquet-hadoop:jar:1.7.0 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - Apache Parquet Jackson (https://parquet.apache.org) org.apache.parquet:parquet-jackson:jar:1.7.0 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + - Spark Project Catalyst (http://spark.apache.org/) org.apache.spark:spark-catalyst_2.10:jar:1.6.1 + License: Apache 2.0 License (http://www.apache.org/licenses/LICENSE-2.0.html) + - Spark Project Core (http://spark.apache.org/) org.apache.spark:spark-core_2.10:jar:1.6.1 + License: Apache 2.0 License (http://www.apache.org/licenses/LICENSE-2.0.html) + - Spark Project Core (http://spark.apache.org/) org.apache.spark:spark-core_2.11:jar:1.6.1 + License: Apache 2.0 License (http://www.apache.org/licenses/LICENSE-2.0.html) + - Spark Project Launcher (http://spark.apache.org/) org.apache.spark:spark-launcher_2.10:jar:2.0.0 + License: Apache 2.0 License (http://www.apache.org/licenses/LICENSE-2.0.html) + - Spark Project Launcher (http://spark.apache.org/) org.apache.spark:spark-launcher_2.11:jar:1.6.1 + License: Apache 2.0 License (http://www.apache.org/licenses/LICENSE-2.0.html) + - Spark Project Networking (http://spark.apache.org/) org.apache.spark:spark-network-common_2.10:jar:2.0.0 + License: Apache 2.0 License (http://www.apache.org/licenses/LICENSE-2.0.html) + - Spark Project Networking (http://spark.apache.org/) org.apache.spark:spark-network-common_2.11:jar:1.6.1 + License: Apache 2.0 License (http://www.apache.org/licenses/LICENSE-2.0.html) + - Spark Project Shuffle Streaming Service (http://spark.apache.org/) org.apache.spark:spark-network-shuffle_2.10:jar:2.0.0 + License: Apache 2.0 License (http://www.apache.org/licenses/LICENSE-2.0.html) + - Spark Project Shuffle Streaming Service (http://spark.apache.org/) org.apache.spark:spark-network-shuffle_2.11:jar:1.6.1 + License: Apache 2.0 License (http://www.apache.org/licenses/LICENSE-2.0.html) + - Spark Project SQL (http://spark.apache.org/) org.apache.spark:spark-sql_2.10:jar:1.6.1 + License: Apache 2.0 License (http://www.apache.org/licenses/LICENSE-2.0.html) + - Spark Project Streaming (http://spark.apache.org/) org.apache.spark:spark-streaming_2.10:jar:2.0.0 + License: Apache 2.0 License (http://www.apache.org/licenses/LICENSE-2.0.html) + - Spark Project Tags (http://spark.apache.org/) org.apache.spark:spark-tags_2.10:jar:2.0.0 + License: Apache 2.0 License (http://www.apache.org/licenses/LICENSE-2.0.html) + - Spark Project Unsafe (http://spark.apache.org/) org.apache.spark:spark-unsafe_2.10:jar:2.0.0 + License: Apache 2.0 License (http://www.apache.org/licenses/LICENSE-2.0.html) + - Spark Project Unsafe (http://spark.apache.org/) org.apache.spark:spark-unsafe_2.11:jar:1.6.1 + License: Apache 2.0 License (http://www.apache.org/licenses/LICENSE-2.0.html) + - Xerces2 Java Parser (http://xerces.apache.org/xerces2-j) xerces:xercesImpl:jar:2.9.1 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + +From: 'The Netty Project' (http://netty.io/) + - The Netty Project (http://netty.io/) io.netty:netty:bundle:3.6.2.Final + License: Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0) + - Netty/All-in-One (http://netty.io/netty-all/) io.netty:netty-all:jar:4.0.29.Final + License: Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0) + +From: 'Typesafe Inc.' (http://www.typesafe.com) + - akka-actor (http://akka.io/) com.typesafe.akka:akka-actor_2.11:jar:2.3.11 + License: Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0) + - akka-remote (http://akka.io/) com.typesafe.akka:akka-remote_2.11:jar:2.3.11 + License: Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0) + - akka-slf4j (http://akka.io/) com.typesafe.akka:akka-slf4j_2.11:jar:2.3.11 + License: Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0) + +From: 'xerial.org' + - snappy-java (https://github.com/xerial/snappy-java) org.xerial.snappy:snappy-java:bundle:1.1.2 + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) + + + +
