Dear Wiki user, You have subscribed to a wiki page or wiki category on "Hadoop Wiki" for change notification.
The following page has been changed by BillyPearson: http://wiki.apache.org/hadoop/Hbase/FAQ ------------------------------------------------------------------------------ // Add content to 'column:' on a row named 'row_x' Text row = new Text("row_x"); BatchUpdate update = new BatchUpdate(row); - update.put("content:", + update.put(new Text("content:"), "some content".getBytes(HConstants.UTF8_ENCODING)); table.commit(update); // Now fetch the content just added
