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
Oct 16, 2018
by
Laszlo Denes Terjeki
Committed by
rmani
Oct 16, 2018
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
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
2 deletions
+9
-2
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
+4
-2
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
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
addons/kafka-bridge/src/bin/import-kafka.sh
View file @
7217f678
...
...
@@ -142,4 +142,7 @@ 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!!!
\ No newline at end of file
[
$RETVAL
-ne
0
]
&&
echo
Failed to import Kafka Data Model!!!
exit
$RETVAL
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