Skip to content

Commit

Permalink
Version 3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nielsbasjes committed Jan 24, 2017
1 parent 8ecef16 commit f3b0434
Show file tree
Hide file tree
Showing 19 changed files with 20 additions and 20 deletions.
4 changes: 2 additions & 2 deletions README-Hive.md
Expand Up @@ -8,7 +8,7 @@ This is an annotated example on how you could make the logfiles directly accessi
First we must ensure that Hive has the right jar file available. This can be either using the ADD JAR option in the Hive Cli
or by installing it on the cluster.

ADD JAR target/httpdlog-serde-2.8-udf.jar;
ADD JAR target/httpdlog-serde-3.0-udf.jar;

We can now define an external table with column types are STRING, BIGINT and DOUBLE.

Expand Down Expand Up @@ -82,7 +82,7 @@ Finally we define that this is stored as a TEXTFILE and where the files are loca
Complete example
====

ADD JAR target/httpdlog-serde-2.8-udf.jar;
ADD JAR target/httpdlog-serde-3.0-udf.jar;

CREATE EXTERNAL TABLE nbasjes.clicks (
ip STRING
Expand Down
2 changes: 1 addition & 1 deletion README-Java.md
Expand Up @@ -14,7 +14,7 @@ First you put something like this in your pom.xml file:
<dependency>
<groupId>nl.basjes.parse.httpdlog</groupId>
<artifactId>httpdlog-parser</artifactId>
<version>2.8</version>
<version>3.0</version>
</dependency>

In addition you need joda-time 1.6 or newer.
Expand Down
2 changes: 1 addition & 1 deletion README-Pig.md
Expand Up @@ -7,7 +7,7 @@ The framework needs two things:

Usage (Pig)
===
You simply register the httpdlog-pigloader-2.8-udf.jar
You simply register the httpdlog-pigloader-3.0-udf.jar

REGISTER httpdlog-pigloader-*.jar

Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -71,7 +71,7 @@ So using it in a Java based project is as simple as adding this to your dependen
<dependency>
<groupId>nl.basjes.parse.httpdlog</groupId>
<artifactId>httpdlog-parser</artifactId>
<version>2.8</version>
<version>3.0</version>
</dependency>

In addition you need joda-time 1.6 or newer.
Expand Down
2 changes: 1 addition & 1 deletion devtools/pom.xml
Expand Up @@ -22,7 +22,7 @@
<parent>
<artifactId>parser-parent</artifactId>
<groupId>nl.basjes.parse</groupId>
<version>3.0-SNAPSHOT</version>
<version>3.0</version>
</parent>

<groupId>nl.basjes.parse.devtools</groupId>
Expand Down
2 changes: 1 addition & 1 deletion examples/hadoop-inputformat/pom.xml
Expand Up @@ -20,7 +20,7 @@
<parent>
<artifactId>httpdlog-examples</artifactId>
<groupId>nl.basjes.parse.httpdlog.examples</groupId>
<version>3.0-SNAPSHOT</version>
<version>3.0</version>
</parent>
<artifactId>httpdlog-inputformat-testclient</artifactId>
<name>Parser - Apache HTTPD - Examples - Hadoop</name>
Expand Down
2 changes: 1 addition & 1 deletion examples/pig/pom.xml
Expand Up @@ -22,7 +22,7 @@
<parent>
<artifactId>httpdlog-examples</artifactId>
<groupId>nl.basjes.parse.httpdlog.examples</groupId>
<version>3.0-SNAPSHOT</version>
<version>3.0</version>
</parent>
<artifactId>PigDemo</artifactId>
<name>Parser - Apache HTTPD - Examples - Pig</name>
Expand Down
2 changes: 1 addition & 1 deletion examples/pojo/pom.xml
Expand Up @@ -22,7 +22,7 @@
<parent>
<artifactId>httpdlog-examples</artifactId>
<groupId>nl.basjes.parse.httpdlog.examples</groupId>
<version>3.0-SNAPSHOT</version>
<version>3.0</version>
</parent>
<artifactId>httpdlog-testclient</artifactId>
<name>Parser - Apache HTTPD - Examples - Java</name>
Expand Down
2 changes: 1 addition & 1 deletion examples/pom.xml
Expand Up @@ -22,7 +22,7 @@
<parent>
<artifactId>parser-parent</artifactId>
<groupId>nl.basjes.parse</groupId>
<version>3.0-SNAPSHOT</version>
<version>3.0</version>
</parent>

<groupId>nl.basjes.parse.httpdlog.examples</groupId>
Expand Down
2 changes: 1 addition & 1 deletion httpdlog/httpdlog-inputformat/pom.xml
Expand Up @@ -22,7 +22,7 @@
<parent>
<artifactId>httpdlog</artifactId>
<groupId>nl.basjes.parse.httpdlog</groupId>
<version>3.0-SNAPSHOT</version>
<version>3.0</version>
</parent>
<artifactId>httpdlog-inputformat</artifactId>
<name>Parser - Apache HTTPD - Hadoop InputFormat</name>
Expand Down
2 changes: 1 addition & 1 deletion httpdlog/httpdlog-parser/pom.xml
Expand Up @@ -23,7 +23,7 @@
<parent>
<artifactId>httpdlog</artifactId>
<groupId>nl.basjes.parse.httpdlog</groupId>
<version>3.0-SNAPSHOT</version>
<version>3.0</version>
</parent>

<artifactId>httpdlog-parser</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion httpdlog/httpdlog-pigloader/pom.xml
Expand Up @@ -23,7 +23,7 @@
<parent>
<artifactId>httpdlog</artifactId>
<groupId>nl.basjes.parse.httpdlog</groupId>
<version>3.0-SNAPSHOT</version>
<version>3.0</version>
</parent>

<artifactId>httpdlog-pigloader</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion httpdlog/httpdlog-serde/pom.xml
Expand Up @@ -25,7 +25,7 @@
<parent>
<artifactId>httpdlog</artifactId>
<groupId>nl.basjes.parse.httpdlog</groupId>
<version>3.0-SNAPSHOT</version>
<version>3.0</version>
</parent>
<artifactId>httpdlog-serde</artifactId>
<name>Parser - Apache HTTPD - HCatalog SerDe</name>
Expand Down
2 changes: 1 addition & 1 deletion httpdlog/httpdlog-stormbolt/pom.xml
Expand Up @@ -23,7 +23,7 @@
<parent>
<artifactId>httpdlog</artifactId>
<groupId>nl.basjes.parse.httpdlog</groupId>
<version>3.0-SNAPSHOT</version>
<version>3.0</version>
</parent>

<artifactId>httpdlog-stormbolt</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion httpdlog/pom.xml
Expand Up @@ -22,7 +22,7 @@
<parent>
<artifactId>parser-parent</artifactId>
<groupId>nl.basjes.parse</groupId>
<version>3.0-SNAPSHOT</version>
<version>3.0</version>
</parent>

<groupId>nl.basjes.parse.httpdlog</groupId>
Expand Down
2 changes: 1 addition & 1 deletion parser-core/pom.xml
Expand Up @@ -21,7 +21,7 @@
<parent>
<artifactId>parser-parent</artifactId>
<groupId>nl.basjes.parse</groupId>
<version>3.0-SNAPSHOT</version>
<version>3.0</version>
</parent>
<artifactId>parser-core</artifactId>
<name>Parser - Core</name>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -21,7 +21,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>nl.basjes.parse</groupId>
<artifactId>parser-parent</artifactId>
<version>3.0-SNAPSHOT</version>
<version>3.0</version>
<packaging>pom</packaging>
<name>Parser (group)</name>
<description>A library to allow easy parsing of Apache HTTPD access logs with Java, Hadoop and Pig.</description>
Expand Down
2 changes: 1 addition & 1 deletion utils/PojoGenerator/pom.xml
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>nl.basjes.parse.utils</groupId>
<artifactId>parse-utils</artifactId>
<version>3.0-SNAPSHOT</version>
<version>3.0</version>
</parent>

<artifactId>PojoGenerator</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion utils/pom.xml
Expand Up @@ -22,7 +22,7 @@
<parent>
<artifactId>parser-parent</artifactId>
<groupId>nl.basjes.parse</groupId>
<version>3.0-SNAPSHOT</version>
<version>3.0</version>
</parent>

<groupId>nl.basjes.parse.utils</groupId>
Expand Down

0 comments on commit f3b0434

Please sign in to comment.