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
5e724675
Commit
5e724675
authored
9 years ago
by
Hemanth Yamijala
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ATLAS-689 Migrate Atlas-Storm integration to use Storm 1.0 dependencies. (svimal2106 via yhemanth)
parent
4f9cba4b
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
24 additions
and
22 deletions
+24
-22
pom.xml
addons/storm-bridge/pom.xml
+1
-1
StormAtlasHook.java
...main/java/org/apache/atlas/storm/hook/StormAtlasHook.java
+6
-6
StormTopologyUtil.java
...n/java/org/apache/atlas/storm/hook/StormTopologyUtil.java
+4
-4
StormAtlasHookIT.java
...st/java/org/apache/atlas/storm/hook/StormAtlasHookIT.java
+2
-2
StormTestUtil.java
.../test/java/org/apache/atlas/storm/hook/StormTestUtil.java
+10
-9
release-log.txt
release-log.txt
+1
-0
No files found.
addons/storm-bridge/pom.xml
View file @
5e724675
...
@@ -30,7 +30,7 @@
...
@@ -30,7 +30,7 @@
<packaging>
jar
</packaging>
<packaging>
jar
</packaging>
<properties>
<properties>
<storm.version>
0.10.0.2.3.99.0-195
</storm.version>
<storm.version>
1.0.0
</storm.version>
<hive.version>
1.2.1
</hive.version>
<hive.version>
1.2.1
</hive.version>
</properties>
</properties>
...
...
This diff is collapsed.
Click to expand it.
addons/storm-bridge/src/main/java/org/apache/atlas/storm/hook/StormAtlasHook.java
View file @
5e724675
...
@@ -18,12 +18,12 @@
...
@@ -18,12 +18,12 @@
package
org
.
apache
.
atlas
.
storm
.
hook
;
package
org
.
apache
.
atlas
.
storm
.
hook
;
import
backtyp
e.storm.ISubmitterHook
;
import
org.apach
e.storm.ISubmitterHook
;
import
backtyp
e.storm.generated.Bolt
;
import
org.apach
e.storm.generated.Bolt
;
import
backtyp
e.storm.generated.SpoutSpec
;
import
org.apach
e.storm.generated.SpoutSpec
;
import
backtyp
e.storm.generated.StormTopology
;
import
org.apach
e.storm.generated.StormTopology
;
import
backtyp
e.storm.generated.TopologyInfo
;
import
org.apach
e.storm.generated.TopologyInfo
;
import
backtyp
e.storm.utils.Utils
;
import
org.apach
e.storm.utils.Utils
;
import
org.apache.atlas.AtlasClient
;
import
org.apache.atlas.AtlasClient
;
import
org.apache.atlas.AtlasConstants
;
import
org.apache.atlas.AtlasConstants
;
import
org.apache.atlas.fs.model.FSDataTypes
;
import
org.apache.atlas.fs.model.FSDataTypes
;
...
...
This diff is collapsed.
Click to expand it.
addons/storm-bridge/src/main/java/org/apache/atlas/storm/hook/StormTopologyUtil.java
View file @
5e724675
...
@@ -18,10 +18,10 @@
...
@@ -18,10 +18,10 @@
package
org
.
apache
.
atlas
.
storm
.
hook
;
package
org
.
apache
.
atlas
.
storm
.
hook
;
import
backtyp
e.storm.generated.Bolt
;
import
org.apach
e.storm.generated.Bolt
;
import
backtyp
e.storm.generated.GlobalStreamId
;
import
org.apach
e.storm.generated.GlobalStreamId
;
import
backtyp
e.storm.generated.Grouping
;
import
org.apach
e.storm.generated.Grouping
;
import
backtyp
e.storm.generated.StormTopology
;
import
org.apach
e.storm.generated.StormTopology
;
import
com.google.common.base.Joiner
;
import
com.google.common.base.Joiner
;
import
org.slf4j.Logger
;
import
org.slf4j.Logger
;
...
...
This diff is collapsed.
Click to expand it.
addons/storm-bridge/src/test/java/org/apache/atlas/storm/hook/StormAtlasHookIT.java
View file @
5e724675
...
@@ -18,8 +18,6 @@
...
@@ -18,8 +18,6 @@
package
org
.
apache
.
atlas
.
storm
.
hook
;
package
org
.
apache
.
atlas
.
storm
.
hook
;
import
backtype.storm.ILocalCluster
;
import
backtype.storm.generated.StormTopology
;
import
com.sun.jersey.api.client.ClientResponse
;
import
com.sun.jersey.api.client.ClientResponse
;
import
org.apache.atlas.ApplicationProperties
;
import
org.apache.atlas.ApplicationProperties
;
import
org.apache.atlas.AtlasClient
;
import
org.apache.atlas.AtlasClient
;
...
@@ -33,6 +31,8 @@ import org.apache.atlas.typesystem.Referenceable;
...
@@ -33,6 +31,8 @@ import org.apache.atlas.typesystem.Referenceable;
import
org.apache.atlas.typesystem.TypesDef
;
import
org.apache.atlas.typesystem.TypesDef
;
import
org.apache.atlas.typesystem.json.TypesSerialization
;
import
org.apache.atlas.typesystem.json.TypesSerialization
;
import
org.apache.commons.configuration.Configuration
;
import
org.apache.commons.configuration.Configuration
;
import
org.apache.storm.ILocalCluster
;
import
org.apache.storm.generated.StormTopology
;
import
org.codehaus.jettison.json.JSONArray
;
import
org.codehaus.jettison.json.JSONArray
;
import
org.codehaus.jettison.json.JSONObject
;
import
org.codehaus.jettison.json.JSONObject
;
import
org.slf4j.Logger
;
import
org.slf4j.Logger
;
...
...
This diff is collapsed.
Click to expand it.
addons/storm-bridge/src/test/java/org/apache/atlas/storm/hook/StormTestUtil.java
View file @
5e724675
...
@@ -18,15 +18,15 @@
...
@@ -18,15 +18,15 @@
package
org
.
apache
.
atlas
.
storm
.
hook
;
package
org
.
apache
.
atlas
.
storm
.
hook
;
import
backtyp
e.storm.Config
;
import
org.apach
e.storm.Config
;
import
backtyp
e.storm.ILocalCluster
;
import
org.apach
e.storm.ILocalCluster
;
import
backtyp
e.storm.Testing
;
import
org.apach
e.storm.Testing
;
import
backtyp
e.storm.generated.StormTopology
;
import
org.apach
e.storm.generated.StormTopology
;
import
backtyp
e.storm.testing.TestGlobalCount
;
import
org.apach
e.storm.testing.TestGlobalCount
;
import
backtyp
e.storm.testing.TestWordCounter
;
import
org.apach
e.storm.testing.TestWordCounter
;
import
backtyp
e.storm.testing.TestWordSpout
;
import
org.apach
e.storm.testing.TestWordSpout
;
import
backtyp
e.storm.topology.TopologyBuilder
;
import
org.apach
e.storm.topology.TopologyBuilder
;
import
backtyp
e.storm.utils.Utils
;
import
org.apach
e.storm.utils.Utils
;
import
java.util.HashMap
;
import
java.util.HashMap
;
...
@@ -58,6 +58,7 @@ final class StormTestUtil {
...
@@ -58,6 +58,7 @@ final class StormTestUtil {
StormTopology
stormTopology
)
throws
Exception
{
StormTopology
stormTopology
)
throws
Exception
{
Config
stormConf
=
new
Config
();
Config
stormConf
=
new
Config
();
stormConf
.
putAll
(
Utils
.
readDefaultConfig
());
stormConf
.
putAll
(
Utils
.
readDefaultConfig
());
stormConf
.
put
(
"storm.cluster.mode"
,
"local"
);
stormConf
.
setDebug
(
true
);
stormConf
.
setDebug
(
true
);
stormConf
.
setMaxTaskParallelism
(
3
);
stormConf
.
setMaxTaskParallelism
(
3
);
stormConf
.
put
(
Config
.
STORM_TOPOLOGY_SUBMISSION_NOTIFIER_PLUGIN
,
stormConf
.
put
(
Config
.
STORM_TOPOLOGY_SUBMISSION_NOTIFIER_PLUGIN
,
...
...
This diff is collapsed.
Click to expand it.
release-log.txt
View file @
5e724675
...
@@ -20,6 +20,7 @@ ATLAS-409 Atlas will not import avro tables with schema read from a file (dosset
...
@@ -20,6 +20,7 @@ ATLAS-409 Atlas will not import avro tables with schema read from a file (dosset
ATLAS-379 Create sqoop and falcon metadata addons (venkatnrangan,bvellanki,sowmyaramesh via shwethags)
ATLAS-379 Create sqoop and falcon metadata addons (venkatnrangan,bvellanki,sowmyaramesh via shwethags)
ALL CHANGES:
ALL CHANGES:
ATLAS-689 Migrate Atlas-Storm integration to use Storm 1.0 dependencies. (svimal2106 via yhemanth)
ATLAS-754 InstanceSerialization does not serialize Reference in the values array of Reference.(harishjp via sumasai)
ATLAS-754 InstanceSerialization does not serialize Reference in the values array of Reference.(harishjp via sumasai)
ATLAS-626 Hive temporary table metadata is captured in atlas (sumasai)
ATLAS-626 Hive temporary table metadata is captured in atlas (sumasai)
ATLAS-747 Hive CTAS entity registration fails because userName is null (shwethags)
ATLAS-747 Hive CTAS entity registration fails because userName is null (shwethags)
...
...
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