This is an automated email from the ASF dual-hosted git repository.

kturner pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/accumulo-testing.git


The following commit(s) were added to refs/heads/master by this push:
     new 28492f4  update bulk docs (#85)
28492f4 is described below

commit 28492f4f87a5f041af4f9777f46b566c64540438
Author: Keith Turner <ktur...@apache.org>
AuthorDate: Mon Jul 1 14:42:38 2019 -0400

    update bulk docs (#85)
---
 docs/bulk-test.md | 21 ++++++++++++++++-----
 1 file changed, 16 insertions(+), 5 deletions(-)

diff --git a/docs/bulk-test.md b/docs/bulk-test.md
index 3216882..df5dc45 100644
--- a/docs/bulk-test.md
+++ b/docs/bulk-test.md
@@ -24,15 +24,26 @@ for i in $(seq 1 10); do
   ./bin/cingest bulk /tmp/bt/$i
 done
 
-(
-  echo "table ci"
-  for i in $(seq 1 10); do
+for i in $(seq 1 10); do
+  (
+    echo table ci
     echo "importdirectory /tmp/bt/$i/files true"
-  done
-) | accumulo shell -u root -p secret
+  ) | accumulo shell -u root -p secret
+  sleep 5
+done
+
 ./bin/cingest verify
 ```
 
 Bulk ingest could be run concurrently with live ingest into the same table.  It
 could also be run while the agitator is running.
 
+After bulk imports complete, could run the following commands in the Accumulo 
shell
+to see if there are any BLIP (bulk load in progress) or load markers.  There 
should
+not be any.
+
+```
+scan -t accumulo.metadata -b ~blip -e ~blip~
+scan -t accumulo.metadata -c loaded
+```
+

Reply via email to