Added a bit of javadoc regards non-important HBASE-2827
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1033353 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
66ca4976a8
commit
9f9de3410b
|
@ -57,7 +57,9 @@ import org.apache.hadoop.ipc.RemoteException;
|
|||
* administrative functions. Use HBaseAdmin to create, drop, list, enable and
|
||||
* disable tables. Use it also to add and drop table column families.
|
||||
*
|
||||
* See {@link HTable} to add, update, and delete data from an individual table.
|
||||
* <p>See {@link HTable} to add, update, and delete data from an individual table.
|
||||
* <p>Currently HBaseAdmin instances are not expected to be long-lived. For
|
||||
* example, an HBaseAdmin instance will not ride over a Master restart.
|
||||
*/
|
||||
public class HBaseAdmin implements Abortable {
|
||||
private final Log LOG = LogFactory.getLog(this.getClass().getName());
|
||||
|
@ -1151,4 +1153,4 @@ public class HBaseAdmin implements Abortable {
|
|||
copyOfConf.setInt("hbase.client.retries.number", 1);
|
||||
new HBaseAdmin(copyOfConf);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue