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
630a562b
Commit
630a562b
authored
Oct 04, 2016
by
Shwetha GS
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ATLAS-1205 Improve atlas build time (shwethags)
parent
2a441bec
Show whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
276 additions
and
62 deletions
+276
-62
pom.xml
addons/falcon-bridge-shim/pom.xml
+10
-0
pom.xml
addons/falcon-bridge/pom.xml
+19
-1
pom.xml
addons/hdfs-model/pom.xml
+54
-0
FSDataModelGenerator.java
.../java/org/apache/atlas/fs/model/FSDataModelGenerator.java
+0
-3
pom.xml
addons/hive-bridge/pom.xml
+9
-1
pom.xml
addons/sqoop-bridge/pom.xml
+9
-1
pom.xml
addons/storm-bridge/pom.xml
+64
-0
standalone-package.xml
distro/src/main/assemblies/standalone-package.xml
+0
-1
pom.xml
pom.xml
+0
-55
release-log.txt
release-log.txt
+1
-0
pom.xml
repository/pom.xml
+55
-0
pom.xml
typesystem/pom.xml
+55
-0
No files found.
addons/falcon-bridge-shim/pom.xml
View file @
630a562b
...
...
@@ -47,6 +47,16 @@
<artifactId>
falcon-common
</artifactId>
<version>
${falcon.version}
</version>
<scope>
provided
</scope>
<exclusions>
<exclusion>
<groupId>
org.apache.spark
</groupId>
<artifactId>
*
</artifactId>
</exclusion>
<exclusion>
<groupId>
com.thinkaurelius.titan
</groupId>
<artifactId>
*
</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</project>
addons/falcon-bridge/pom.xml
View file @
630a562b
...
...
@@ -66,6 +66,16 @@
<artifactId>
falcon-common
</artifactId>
<version>
${falcon.version}
</version>
<scope>
provided
</scope>
<exclusions>
<exclusion>
<groupId>
org.apache.spark
</groupId>
<artifactId>
*
</artifactId>
</exclusion>
<exclusion>
<groupId>
com.thinkaurelius.titan
</groupId>
<artifactId>
*
</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
...
...
@@ -92,6 +102,9 @@
</dependency>
</dependencies>
<profiles>
<profile>
<id>
dist
</id>
<build>
<plugins>
<plugin>
...
...
@@ -235,7 +248,12 @@
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<groupId>
org.eclipse.jetty
</groupId>
<artifactId>
jetty-maven-plugin
</artifactId>
...
...
addons/hdfs-model/pom.xml
View file @
630a562b
...
...
@@ -87,6 +87,60 @@
<build>
<plugins>
<plugin>
<groupId>
net.alchim31.maven
</groupId>
<artifactId>
scala-maven-plugin
</artifactId>
<version>
3.2.0
</version>
<executions>
<execution>
<id>
scala-compile-first
</id>
<phase>
process-resources
</phase>
<goals>
<goal>
compile
</goal>
</goals>
</execution>
<execution>
<id>
scala-test-compile-first
</id>
<phase>
process-test-resources
</phase>
<goals>
<goal>
testCompile
</goal>
</goals>
</execution>
</executions>
<configuration>
<scalaVersion>
${scala.version}
</scalaVersion>
<recompileMode>
incremental
</recompileMode>
<useZincServer>
true
</useZincServer>
<source>
1.7
</source>
<target>
1.7
</target>
<args>
<arg>
-unchecked
</arg>
<arg>
-deprecation
</arg>
<arg>
-feature
</arg>
</args>
<jvmArgs>
<jvmArg>
-Xmx512m
</jvmArg>
<jvmArg>
-XX:MaxPermSize=128m
</jvmArg>
</jvmArgs>
<!--
<javacArgs>
<javacArg>-source</javacArg>
<javacArg>${java.version}</javacArg>
<javacArg>-target</javacArg>
<javacArg>${java.version}</javacArg>
</javacArgs>
-->
<!-- The following plugin is required to use quasiquotes in Scala 2.10 and is used
by Spark SQL for code generation. -->
<!--<compilerPlugins>
<compilerPlugin>
<groupId>org.scalamacros</groupId>
<artifactId>paradise_${scala.version}</artifactId>
<version>${scala.macros.version}</version>
</compilerPlugin>
</compilerPlugins>-->
</configuration>
</plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
...
...
addons/hdfs-model/src/main/java/org/apache/atlas/fs/model/FSDataModelGenerator.java
View file @
630a562b
...
...
@@ -17,9 +17,6 @@
*/
package
org
.
apache
.
atlas
.
fs
.
model
;
import
com.sun.jersey.api.client.ClientResponse
;
import
org.apache.atlas.AtlasClient
;
import
org.apache.atlas.AtlasServiceException
;
import
org.apache.atlas.addons.ModelDefinitionDump
;
import
org.apache.atlas.typesystem.TypesDef
;
import
org.apache.atlas.typesystem.json.TypesSerialization
;
...
...
addons/hive-bridge/pom.xml
View file @
630a562b
...
...
@@ -155,6 +155,9 @@
</dependency>
</dependencies>
<profiles>
<profile>
<id>
dist
</id>
<build>
<plugins>
<plugin>
...
...
@@ -288,7 +291,12 @@
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<groupId>
org.eclipse.jetty
</groupId>
<artifactId>
jetty-maven-plugin
</artifactId>
...
...
addons/sqoop-bridge/pom.xml
View file @
630a562b
...
...
@@ -157,6 +157,9 @@
</dependency>
</dependencies>
<profiles>
<profile>
<id>
dist
</id>
<build>
<plugins>
<plugin>
...
...
@@ -300,7 +303,12 @@
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<groupId>
org.eclipse.jetty
</groupId>
<artifactId>
jetty-maven-plugin
</artifactId>
...
...
addons/storm-bridge/pom.xml
View file @
630a562b
...
...
@@ -132,6 +132,9 @@
</dependency>
</dependencies>
<profiles>
<profile>
<id>
dist
</id>
<build>
<plugins>
<plugin>
...
...
@@ -360,6 +363,67 @@
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<groupId>
net.alchim31.maven
</groupId>
<artifactId>
scala-maven-plugin
</artifactId>
<version>
3.2.0
</version>
<executions>
<execution>
<id>
scala-compile-first
</id>
<phase>
process-resources
</phase>
<goals>
<goal>
compile
</goal>
</goals>
</execution>
<execution>
<id>
scala-test-compile-first
</id>
<phase>
process-test-resources
</phase>
<goals>
<goal>
testCompile
</goal>
</goals>
</execution>
</executions>
<configuration>
<scalaVersion>
${scala.version}
</scalaVersion>
<recompileMode>
incremental
</recompileMode>
<useZincServer>
true
</useZincServer>
<source>
1.7
</source>
<target>
1.7
</target>
<args>
<arg>
-unchecked
</arg>
<arg>
-deprecation
</arg>
<arg>
-feature
</arg>
</args>
<jvmArgs>
<jvmArg>
-Xmx512m
</jvmArg>
<jvmArg>
-XX:MaxPermSize=128m
</jvmArg>
</jvmArgs>
<!--
<javacArgs>
<javacArg>-source</javacArg>
<javacArg>${java.version}</javacArg>
<javacArg>-target</javacArg>
<javacArg>${java.version}</javacArg>
</javacArgs>
-->
<!-- The following plugin is required to use quasiquotes in Scala 2.10 and is used
by Spark SQL for code generation. -->
<!--<compilerPlugins>
<compilerPlugin>
<groupId>org.scalamacros</groupId>
<artifactId>paradise_${scala.version}</artifactId>
<version>${scala.macros.version}</version>
</compilerPlugin>
</compilerPlugins>-->
</configuration>
</plugin>
<plugin>
<groupId>
org.eclipse.jetty
</groupId>
...
...
distro/src/main/assemblies/standalone-package.xml
View file @
630a562b
...
...
@@ -21,7 +21,6 @@
xsi:schemaLocation=
"http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd"
>
<formats>
<format>
tar.gz
</format>
<format>
zip
</format>
<format>
dir
</format>
</formats>
<id>
bin
</id>
...
...
pom.xml
View file @
630a562b
...
...
@@ -1494,61 +1494,6 @@
</plugin>
<plugin>
<groupId>
net.alchim31.maven
</groupId>
<artifactId>
scala-maven-plugin
</artifactId>
<version>
3.2.0
</version>
<executions>
<execution>
<id>
scala-compile-first
</id>
<phase>
process-resources
</phase>
<goals>
<goal>
compile
</goal>
</goals>
</execution>
<execution>
<id>
scala-test-compile-first
</id>
<phase>
process-test-resources
</phase>
<goals>
<goal>
testCompile
</goal>
</goals>
</execution>
</executions>
<configuration>
<scalaVersion>
${scala.version}
</scalaVersion>
<recompileMode>
incremental
</recompileMode>
<useZincServer>
true
</useZincServer>
<source>
1.7
</source>
<target>
1.7
</target>
<args>
<arg>
-unchecked
</arg>
<arg>
-deprecation
</arg>
<arg>
-feature
</arg>
</args>
<jvmArgs>
<jvmArg>
-Xmx512m
</jvmArg>
<jvmArg>
-XX:MaxPermSize=128m
</jvmArg>
</jvmArgs>
<!--
<javacArgs>
<javacArg>-source</javacArg>
<javacArg>${java.version}</javacArg>
<javacArg>-target</javacArg>
<javacArg>${java.version}</javacArg>
</javacArgs>
-->
<!-- The following plugin is required to use quasiquotes in Scala 2.10 and is used
by Spark SQL for code generation. -->
<!--<compilerPlugins>
<compilerPlugin>
<groupId>org.scalamacros</groupId>
<artifactId>paradise_${scala.version}</artifactId>
<version>${scala.macros.version}</version>
</compilerPlugin>
</compilerPlugins>-->
</configuration>
</plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-remote-resources-plugin
</artifactId>
<version>
1.5
</version>
...
...
release-log.txt
View file @
630a562b
...
...
@@ -9,6 +9,7 @@ ATLAS-1060 Add composite indexes for exact match performance improvements for al
ATLAS-1127 Modify creation and modification timestamps to Date instead of Long(sumasai)
ALL CHANGES:
ATLAS-1205 Improve atlas build time (shwethags)
ATLAS-1203 'Invalid type definition' due to no new types to be created at startup (mneethiraj via shwethags)
ATLAS-1171 Structured, high-level public APIs (mneethiraj via shwethags)
ATLAS-247 Hive Column level lineage (rhbutani,svimal2106 via shwethags)
...
...
repository/pom.xml
View file @
630a562b
...
...
@@ -161,6 +161,61 @@
<build>
<plugins>
<plugin>
<groupId>
net.alchim31.maven
</groupId>
<artifactId>
scala-maven-plugin
</artifactId>
<version>
3.2.0
</version>
<executions>
<execution>
<id>
scala-compile-first
</id>
<phase>
process-resources
</phase>
<goals>
<goal>
compile
</goal>
</goals>
</execution>
<execution>
<id>
scala-test-compile-first
</id>
<phase>
process-test-resources
</phase>
<goals>
<goal>
testCompile
</goal>
</goals>
</execution>
</executions>
<configuration>
<scalaVersion>
${scala.version}
</scalaVersion>
<recompileMode>
incremental
</recompileMode>
<useZincServer>
true
</useZincServer>
<source>
1.7
</source>
<target>
1.7
</target>
<args>
<arg>
-unchecked
</arg>
<arg>
-deprecation
</arg>
<arg>
-feature
</arg>
</args>
<jvmArgs>
<jvmArg>
-Xmx512m
</jvmArg>
<jvmArg>
-XX:MaxPermSize=128m
</jvmArg>
</jvmArgs>
<!--
<javacArgs>
<javacArg>-source</javacArg>
<javacArg>${java.version}</javacArg>
<javacArg>-target</javacArg>
<javacArg>${java.version}</javacArg>
</javacArgs>
-->
<!-- The following plugin is required to use quasiquotes in Scala 2.10 and is used
by Spark SQL for code generation. -->
<!--<compilerPlugins>
<compilerPlugin>
<groupId>org.scalamacros</groupId>
<artifactId>paradise_${scala.version}</artifactId>
<version>${scala.macros.version}</version>
</compilerPlugin>
</compilerPlugins>-->
</configuration>
</plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-jar-plugin
</artifactId>
<version>
2.4
</version>
...
...
typesystem/pom.xml
View file @
630a562b
...
...
@@ -121,6 +121,61 @@
<build>
<plugins>
<plugin>
<groupId>
net.alchim31.maven
</groupId>
<artifactId>
scala-maven-plugin
</artifactId>
<version>
3.2.0
</version>
<executions>
<execution>
<id>
scala-compile-first
</id>
<phase>
process-resources
</phase>
<goals>
<goal>
compile
</goal>
</goals>
</execution>
<execution>
<id>
scala-test-compile-first
</id>
<phase>
process-test-resources
</phase>
<goals>
<goal>
testCompile
</goal>
</goals>
</execution>
</executions>
<configuration>
<scalaVersion>
${scala.version}
</scalaVersion>
<recompileMode>
incremental
</recompileMode>
<useZincServer>
true
</useZincServer>
<source>
1.7
</source>
<target>
1.7
</target>
<args>
<arg>
-unchecked
</arg>
<arg>
-deprecation
</arg>
<arg>
-feature
</arg>
</args>
<jvmArgs>
<jvmArg>
-Xmx512m
</jvmArg>
<jvmArg>
-XX:MaxPermSize=128m
</jvmArg>
</jvmArgs>
<!--
<javacArgs>
<javacArg>-source</javacArg>
<javacArg>${java.version}</javacArg>
<javacArg>-target</javacArg>
<javacArg>${java.version}</javacArg>
</javacArgs>
-->
<!-- The following plugin is required to use quasiquotes in Scala 2.10 and is used
by Spark SQL for code generation. -->
<!--<compilerPlugins>
<compilerPlugin>
<groupId>org.scalamacros</groupId>
<artifactId>paradise_${scala.version}</artifactId>
<version>${scala.macros.version}</version>
</compilerPlugin>
</compilerPlugins>-->
</configuration>
</plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-jar-plugin
</artifactId>
<version>
2.4
</version>
...
...
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