We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12085fb commit eeca132Copy full SHA for eeca132
1 file changed
load.sh
@@ -160,6 +160,14 @@ function LoadMasterData() {
160
--batch $BATCH_SIZE
161
python3 $SCRIPT_DIR/src/data_load/load.py status --wait
162
echo "-- Master Well Data: End $(convertsecs $[ $(date +%s) - ${_START} ])"
163
+
164
+ # Manifest Ingest Master Wellbore
165
+ echo "-- Master Wellbore Data: Start" && _START="$(date +%s)"
166
+ python3 $SCRIPT_DIR/src/data_load/load.py ingest \
167
+ --dir $MANIFEST_DIR/master-wellbore-data-manifests \
168
+ --batch $BATCH_SIZE
169
+ python3 $SCRIPT_DIR/src/data_load/load.py status --wait
170
+ echo "-- Master Wellbore Data: End $(convertsecs $[ $(date +%s) - ${_START} ])"
171
else
172
echo "Load Master Data - Bypassed"
173
echo "-----"
0 commit comments