Command Line Installation
Also available as:
PDF
loading table of contents...

Smoke Testing Accumulo

Perform a smoke test to ensure that Accumulo is working properly by using the Accumulo shell.

  1. Using the Accumulo shell, create a table in Accumulo:

    createtable testtable
  2. Insert a row and assign a value:

    insert row colfam colqual value 
  3. Check to ensure the table exists:

    scan
    flush -w
    scan
  4. Delete your test table:

    deletetable -f testtable