Yup, it stays as "Unknown". It's been about 30 min and still says that. I tried to look in the log and didn't detect any errors either. I'm able to do CRUD operations on my table "myTable". If I do create table "test1" through the shell then the status stays "ONLINE". Very strange...
Currently, I'm trying to learn the basics to get through interview. So far, it seems pretty easy to use. I was able to install Accumulo in cluster mode and do some basic admin and table cruds. However... I'm really puzzled on how to architect DAO around Accumulo. Do I create DAO per column family? Is there a another library like hibernate where it would automatically deserialize to Java objects? Thanks again! If you have recommended Accumulo book then please let me know as well. On Sun, Mar 2, 2014 at 11:35 PM, Christopher <[email protected]> wrote: > Which version? And, does it stay Unknown, or does it switch to > something else after some time (perhaps after refreshing the page)? > Chances are (just speculating at this early point), the monitor has > not yet seen the table deletion/creation fully yet, and it just needs > some time for its cached view of zookeeper to update. > > -- > Christopher L Tubbs II > http://gravatar.com/ctubbsii > > > On Sun, Mar 2, 2014 at 10:33 PM, Kevin Cho <[email protected]> wrote: > > Connector connector = instance.getConnector(principal, > token); > > > > String tableName = "myTable"; > > TableOperations ops = connector.tableOperations(); > > if (ops.exists(tableName)) { > > ops.delete(tableName); > > } > > ops.create(tableName); > > > > Mutation m = new Mutation("rowId"); > > m.put("columnFamily0", "columnQualifer0", "some value"); > > > > BatchWriter bw = connector.createBatchWriter(tableName, new > > BatchWriterConfig()); > > bw.addMutation(m); > > bw.close(); > > > > I verified that I am able to connect to Accumulo server and that > "myTable" > > has been created. When I viewed from Accumul Monitor -> Tables, I see > the > > State to be "Unknown". What's weird is that I'm even able to add > > entries..so it looks normal... but why does it say "Unknown"? Thanks a > > bunch! >
