Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
atlas
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
dataplatform
atlas
Commits
54c31d5c
Commit
54c31d5c
authored
6 years ago
by
rdsolani
Committed by
Madhan Neethiraj
6 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ATLAS-2545: updated Storm hook to use V2 notifications
Signed-off-by:
Madhan Neethiraj
<
madhan@apache.org
>
parent
75415862
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
50 additions
and
0 deletions
+50
-0
pom.xml
addons/storm-bridge/pom.xml
+44
-0
StormAtlasHook.java
...main/java/org/apache/atlas/storm/hook/StormAtlasHook.java
+0
-0
pom.xml
pom.xml
+6
-0
No files found.
addons/storm-bridge/pom.xml
View file @
54c31d5c
...
@@ -254,6 +254,11 @@
...
@@ -254,6 +254,11 @@
<artifactId>
commons-configuration
</artifactId>
<artifactId>
commons-configuration
</artifactId>
<version>
${commons-conf.version}
</version>
<version>
${commons-conf.version}
</version>
</artifactItem>
</artifactItem>
<dependency>
<groupId>
org.apache.commons
</groupId>
<artifactId>
commons-configuration2
</artifactId>
<version>
${commons-conf2.version}
</version>
</dependency>
<artifactItem>
<artifactItem>
<groupId>
commons-logging
</groupId>
<groupId>
commons-logging
</groupId>
<artifactId>
commons-logging
</artifactId>
<artifactId>
commons-logging
</artifactId>
...
@@ -295,6 +300,40 @@
...
@@ -295,6 +300,40 @@
<version>
${hadoop.version}
</version>
<version>
${hadoop.version}
</version>
</artifactItem>
</artifactItem>
<artifactItem>
<artifactItem>
<groupId>
org.apache.hadoop
</groupId>
<artifactId>
hadoop-auth
</artifactId>
<version>
${hadoop.version}
</version>
</artifactItem>
<artifactItem>
<groupId>
com.fasterxml.jackson.core
</groupId>
<artifactId>
jackson-databind
</artifactId>
<version>
${jackson.version}
</version>
</artifactItem>
<artifactItem>
<groupId>
com.fasterxml.jackson.core
</groupId>
<artifactId>
jackson-core
</artifactId>
<version>
${jackson.version}
</version>
</artifactItem>
<artifactItem>
<groupId>
com.fasterxml.jackson.core
</groupId>
<artifactId>
jackson-annotations
</artifactId>
<version>
${jackson.version}
</version>
</artifactItem>
<dependency>
<groupId>
org.codehaus.woodstox
</groupId>
<artifactId>
stax2-api
</artifactId>
<version>
${codehaus.woodstox.stax2-api.version}
</version>
</dependency>
<dependency>
<groupId>
org.apache.hadoop
</groupId>
<artifactId>
hadoop-hdfs-client
</artifactId>
<version>
${hadoop.hdfs-client.version}
</version>
</dependency>
<artifactItem>
<groupId>
log4j
</groupId>
<groupId>
log4j
</groupId>
<artifactId>
log4j
</artifactId>
<artifactId>
log4j
</artifactId>
<version>
${log4j.version}
</version>
<version>
${log4j.version}
</version>
...
@@ -309,6 +348,11 @@
...
@@ -309,6 +348,11 @@
<artifactId>
jsr311-api
</artifactId>
<artifactId>
jsr311-api
</artifactId>
<version>
${jsr.version}
</version>
<version>
${jsr.version}
</version>
</artifactItem>
</artifactItem>
<artifactItem>
<groupId>
com.fasterxml.woodstox
</groupId>
<artifactId>
woodstox-core
</artifactId>
<version>
${woodstox-core.version}
</version>
</artifactItem>
</artifactItems>
</artifactItems>
</configuration>
</configuration>
</execution>
</execution>
...
...
This diff is collapsed.
Click to expand it.
addons/storm-bridge/src/main/java/org/apache/atlas/storm/hook/StormAtlasHook.java
View file @
54c31d5c
This diff is collapsed.
Click to expand it.
pom.xml
View file @
54c31d5c
...
@@ -570,6 +570,8 @@
...
@@ -570,6 +570,8 @@
<aopalliance.version>
1.0
</aopalliance.version>
<aopalliance.version>
1.0
</aopalliance.version>
<jackson.version>
2.9.2
</jackson.version>
<jackson.version>
2.9.2
</jackson.version>
<commons-conf.version>
1.10
</commons-conf.version>
<commons-conf.version>
1.10
</commons-conf.version>
<commons-conf2.version>
2.2
</commons-conf2.version>
<commons-collections.version>
3.2.2
</commons-collections.version>
<commons-collections.version>
3.2.2
</commons-collections.version>
<commons-logging.version>
1.1.3
</commons-logging.version>
<commons-logging.version>
1.1.3
</commons-logging.version>
<commons-lang.version>
2.6
</commons-lang.version>
<commons-lang.version>
2.6
</commons-lang.version>
...
@@ -582,6 +584,10 @@
...
@@ -582,6 +584,10 @@
<maven-site-plugin.version>
3.7
</maven-site-plugin.version>
<maven-site-plugin.version>
3.7
</maven-site-plugin.version>
<doxia.version>
1.8
</doxia.version>
<doxia.version>
1.8
</doxia.version>
<dropwizard-metrics>
3.2.2
</dropwizard-metrics>
<dropwizard-metrics>
3.2.2
</dropwizard-metrics>
<!-- hadoop.hdfs-client.version should same as hadoop version -->
<hadoop.hdfs-client.version>
2.8.1
</hadoop.hdfs-client.version>
<codehaus.woodstox.stax2-api.version>
3.1.4
</codehaus.woodstox.stax2-api.version>
<woodstox-core.version>
5.0.3
</woodstox-core.version>
<PermGen>
64m
</PermGen>
<PermGen>
64m
</PermGen>
<MaxPermGen>
512m
</MaxPermGen>
<MaxPermGen>
512m
</MaxPermGen>
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment