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
7217f678
Commit
7217f678
authored
6 years ago
by
Laszlo Denes Terjeki
Committed by
rmani
6 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ATLAS-2921: Update import scripts exit status in case of java error
Signed-off-by:
rmani
<
rmani@hortonworks.com
>
parent
fdab2efd
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
0 deletions
+8
-0
import-hbase.sh
addons/hbase-bridge/src/bin/import-hbase.sh
+2
-0
import-hive.sh
addons/hive-bridge/src/bin/import-hive.sh
+3
-0
import-kafka.sh
addons/kafka-bridge/src/bin/import-kafka.sh
+3
-0
No files found.
addons/hbase-bridge/src/bin/import-hbase.sh
View file @
7217f678
...
...
@@ -153,3 +153,5 @@ echo "Log file for import is $LOGFILE"
RETVAL
=
$?
[
$RETVAL
-eq
0
]
&&
echo
HBase Data Model imported successfully!!!
[
$RETVAL
-ne
0
]
&&
echo
Failed to import HBase Data Model!!!
exit
$RETVAL
This diff is collapsed.
Click to expand it.
addons/hive-bridge/src/bin/import-hive.sh
View file @
7217f678
...
...
@@ -148,3 +148,6 @@ echo "Log file for import is $LOGFILE"
RETVAL
=
$?
[
$RETVAL
-eq
0
]
&&
echo
Hive Meta Data imported successfully!!!
[
$RETVAL
-ne
0
]
&&
echo
Failed to import Hive Meta Data!!!
exit
$RETVAL
This diff is collapsed.
Click to expand it.
addons/kafka-bridge/src/bin/import-kafka.sh
View file @
7217f678
...
...
@@ -143,3 +143,6 @@ echo "Log file for import is $LOGFILE"
RETVAL
=
$?
[
$RETVAL
-eq
0
]
&&
echo
Kafka Data Model imported successfully!!!
[
$RETVAL
-ne
0
]
&&
echo
Failed to import Kafka Data Model!!!
exit
$RETVAL
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