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
314f4937
Commit
314f4937
authored
Sep 13, 2019
by
Sarath Subramanian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ATLAS-3378: Update JanusGraph to 0.4.0
parent
8792f162
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
40 additions
and
7 deletions
+40
-7
pom.xml
addons/falcon-bridge/pom.xml
+4
-0
pom.xml
addons/hbase-bridge/pom.xml
+4
-0
pom.xml
addons/hive-bridge/pom.xml
+4
-0
pom.xml
addons/impala-bridge/pom.xml
+4
-0
pom.xml
addons/kafka-bridge/pom.xml
+4
-0
pom.xml
addons/sqoop-bridge/pom.xml
+4
-0
pom.xml
addons/storm-bridge/pom.xml
+4
-0
pom.xml
graphdb/api/pom.xml
+1
-1
pom.xml
graphdb/janus/pom.xml
+1
-3
AtlasJanusGraph.java
...pache/atlas/repository/graphdb/janus/AtlasJanusGraph.java
+1
-1
pom.xml
pom.xml
+4
-1
pom.xml
webapp/pom.xml
+5
-1
No files found.
addons/falcon-bridge/pom.xml
View file @
314f4937
...
...
@@ -269,6 +269,10 @@
<key>
embedded.solr.directory
</key>
<value>
${project.build.directory}
</value>
</systemProperty>
<systemProperty>
<name>
org.eclipse.jetty.annotations.maxWait
</name>
<value>
5000
</value>
</systemProperty>
</systemProperties>
<stopKey>
atlas-stop
</stopKey>
<stopPort>
31001
</stopPort>
...
...
addons/hbase-bridge/pom.xml
View file @
314f4937
...
...
@@ -435,6 +435,10 @@
<key>
embedded.solr.directory
</key>
<value>
${project.build.directory}
</value>
</systemProperty>
<systemProperty>
<name>
org.eclipse.jetty.annotations.maxWait
</name>
<value>
5000
</value>
</systemProperty>
</systemProperties>
<stopKey>
atlas-stop
</stopKey>
<stopPort>
31001
</stopPort>
...
...
addons/hive-bridge/pom.xml
View file @
314f4937
...
...
@@ -409,6 +409,10 @@
<key>
embedded.solr.directory
</key>
<value>
${project.build.directory}
</value>
</systemProperty>
<systemProperty>
<name>
org.eclipse.jetty.annotations.maxWait
</name>
<value>
5000
</value>
</systemProperty>
</systemProperties>
<stopKey>
atlas-stop
</stopKey>
<stopPort>
31001
</stopPort>
...
...
addons/impala-bridge/pom.xml
View file @
314f4937
...
...
@@ -440,6 +440,10 @@
<key>
embedded.solr.directory
</key>
<value>
${project.build.directory}
</value>
</systemProperty>
<systemProperty>
<name>
org.eclipse.jetty.annotations.maxWait
</name>
<value>
5000
</value>
</systemProperty>
</systemProperties>
<stopKey>
atlas-stop
</stopKey>
<stopPort>
31001
</stopPort>
...
...
addons/kafka-bridge/pom.xml
View file @
314f4937
...
...
@@ -287,6 +287,10 @@
<key>
embedded.solr.directory
</key>
<value>
${project.build.directory}
</value>
</systemProperty>
<systemProperty>
<name>
org.eclipse.jetty.annotations.maxWait
</name>
<value>
5000
</value>
</systemProperty>
</systemProperties>
<stopKey>
atlas-stop
</stopKey>
<stopPort>
31001
</stopPort>
...
...
addons/sqoop-bridge/pom.xml
View file @
314f4937
...
...
@@ -338,6 +338,10 @@
<key>
embedded.solr.directory
</key>
<value>
${project.build.directory}
</value>
</systemProperty>
<systemProperty>
<name>
org.eclipse.jetty.annotations.maxWait
</name>
<value>
5000
</value>
</systemProperty>
</systemProperties>
<stopKey>
atlas-stop
</stopKey>
<stopPort>
31001
</stopPort>
...
...
addons/storm-bridge/pom.xml
View file @
314f4937
...
...
@@ -450,6 +450,10 @@
<key>
embedded.solr.directory
</key>
<value>
${project.build.directory}
</value>
</systemProperty>
<systemProperty>
<name>
org.eclipse.jetty.annotations.maxWait
</name>
<value>
5000
</value>
</systemProperty>
</systemProperties>
<stopKey>
atlas-stop
</stopKey>
<stopPort>
31001
</stopPort>
...
...
graphdb/api/pom.xml
View file @
314f4937
...
...
@@ -49,7 +49,7 @@
<dependency>
<groupId>
org.apache.tinkerpop
</groupId>
<artifactId>
gremlin-core
</artifactId>
<version>
3.3.3
</version>
<version>
${tinkerpop.version}
</version>
</dependency>
</dependencies>
...
...
graphdb/janus/pom.xml
View file @
314f4937
...
...
@@ -34,9 +34,7 @@
Some dependencies, like slf4j are excluded from the jar because they are included in Atlas -->
<properties>
<tinkerpop.version>
3.3.3
</tinkerpop.version>
<checkstyle.failOnViolation>
false
</checkstyle.failOnViolation>
<lucene-solr.version>
7.3.0
</lucene-solr.version>
</properties>
<dependencies>
...
...
@@ -236,7 +234,7 @@
<classifier>
tests
</classifier>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
org.mockito
</groupId>
<artifactId>
mockito-all
</artifactId>
...
...
graphdb/janus/src/main/java/org/apache/atlas/repository/graphdb/janus/AtlasJanusGraph.java
View file @
314f4937
...
...
@@ -343,7 +343,7 @@ public class AtlasJanusGraph implements AtlasGraph<AtlasJanusVertex, AtlasJanusE
public
void
releaseGremlinScriptEngine
(
ScriptEngine
scriptEngine
)
{
if
(
scriptEngine
instanceof
GremlinGroovyScriptEngine
)
{
try
{
((
GremlinGroovyScriptEngine
)
scriptEngine
).
close
();
((
GremlinGroovyScriptEngine
)
scriptEngine
).
reset
();
}
catch
(
Exception
e
)
{
// ignore
}
...
...
pom.xml
View file @
314f4937
...
...
@@ -657,7 +657,10 @@
<jersey.version>
1.19
</jersey.version>
<jsr.version>
1.1
</jsr.version>
<janus.version>
0.3.1
</janus.version>
<janus.version>
0.4.0
</janus.version>
<tinkerpop.version>
3.4.1
</tinkerpop.version>
<lucene-solr.version>
7.3.0
</lucene-solr.version>
<hadoop.version>
3.1.1
</hadoop.version>
<hbase.version>
2.0.2
</hbase.version>
<solr.version>
7.5.0
</solr.version>
...
...
webapp/pom.xml
View file @
314f4937
...
...
@@ -689,7 +689,11 @@
</systemProperty>
<systemProperty>
<name>
org.eclipse.jetty.annotations.maxWait
</name>
<value>
3000
</value>
<value>
5000
</value>
</systemProperty>
<systemProperty>
<name>
org.eclipse.jetty.annotations.maxWait
</name>
<value>
5000
</value>
</systemProperty>
</systemProperties>
<stopKey>
atlas-stop
</stopKey>
...
...
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