Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions addons/hbase-bridge/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -596,6 +596,16 @@
<artifactId>logback-classic</artifactId>
<version>${logback.version}</version>
</artifactItem>
<artifactItem>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>${logback.version}</version>
</artifactItem>
<artifactItem>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</artifactItem>
</artifactItems>
</configuration>
</execution>
Expand Down
6 changes: 3 additions & 3 deletions addons/hbase-bridge/src/bin/import-hbase.sh
Original file line number Diff line number Diff line change
Expand Up @@ -125,9 +125,9 @@ else
fi

if [ ! -z "$HADOOP_CP" ]; then
CP="${HBASE_CP}:${HADOOP_CP}:${ATLASCPPATH}"
CP="${ATLASCPPATH}:${HBASE_CP}:${HADOOP_CP}"
else
CP="${HBASE_CP}:${ATLASCPPATH}"
CP="${ATLASCPPATH}:${HBASE_CP}"
fi

# If running in cygwin, convert pathnames and classpath to Windows format.
Expand All @@ -141,7 +141,7 @@ then
fi

JAVA_PROPERTIES="$ATLAS_OPTS -Datlas.log.dir=$ATLAS_LOG_DIR -Datlas.log.file=import-hbase.log
-Dlog4j.configuration=atlas-hbase-import-log4j.xml"
-Dlogback.configurationFile=atlas-hbase-import-logback.xml"

IMPORT_ARGS=
JVM_ARGS=
Expand Down
10 changes: 10 additions & 0 deletions addons/hive-bridge/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -530,6 +530,16 @@
<artifactId>logback-classic</artifactId>
<version>${logback.version}</version>
</artifactItem>
<artifactItem>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>${logback.version}</version>
</artifactItem>
<artifactItem>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</artifactItem>
</artifactItems>
</configuration>
</execution>
Expand Down
2 changes: 1 addition & 1 deletion addons/hive-bridge/src/bin/import-hive.sh
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ then
fi

JAVA_PROPERTIES="$ATLAS_OPTS -Datlas.log.dir=$ATLAS_LOG_DIR -Datlas.log.file=import-hive.log
-Dlog4j.configuration=atlas-hive-import-log4j.xml"
-Dlogback.configurationFile=atlas-hive-import-logback.xml"

IMPORT_ARGS=
JVM_ARGS=
Expand Down
15 changes: 15 additions & 0 deletions addons/kafka-bridge/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -509,6 +509,21 @@
<artifactId>hadoop-common</artifactId>
<version>${hadoop.version}</version>
</artifactItem>
<artifactItem>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${logback.version}</version>
</artifactItem>
<artifactItem>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>${logback.version}</version>
</artifactItem>
<artifactItem>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</artifactItem>
</artifactItems>
</configuration>
</execution>
Expand Down
2 changes: 1 addition & 1 deletion addons/kafka-bridge/src/bin/import-kafka.sh
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ then
fi

JAVA_PROPERTIES="$ATLAS_OPTS -Datlas.log.dir=$ATLAS_LOG_DIR -Datlas.log.file=import-kafka.log
-Dlog4j.configuration=atlas-kafka-import-log4j.xml"
-Dlogback.configurationFile=atlas-kafka-import-logback.xml"
shift

while [[ ${1} =~ ^\-D ]]; do
Expand Down
Loading