|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use HTableDescriptor | |
---|---|
org.apache.hadoop.hbase | |
org.apache.hadoop.hbase.client | Provides HBase Client |
org.apache.hadoop.hbase.protobuf | Holds classes generated from protobuf
src/main/protobuf definition files. |
Uses of HTableDescriptor in org.apache.hadoop.hbase |
---|
Fields in org.apache.hadoop.hbase declared as HTableDescriptor | |
---|---|
static HTableDescriptor |
HTableDescriptor.META_TABLEDESC
Deprecated. Use TableDescriptors#get(TableName.META_TABLE_NAME) or HBaseAdmin#getTableDescriptor(TableName.META_TABLE_NAME) instead. |
static HTableDescriptor |
HTableDescriptor.NAMESPACE_TABLEDESC
Table descriptor for namespace table |
Methods in org.apache.hadoop.hbase that return HTableDescriptor | |
---|---|
HTableDescriptor |
HTableDescriptor.addCoprocessorWithSpec(String specStr)
Add a table coprocessor to this table. |
static HTableDescriptor |
HTableDescriptor.convert(org.apache.hadoop.hbase.protobuf.generated.HBaseProtos.TableSchema ts)
|
static HTableDescriptor |
HTableDescriptor.metaTableDescriptor(org.apache.hadoop.conf.Configuration conf)
|
static HTableDescriptor |
HTableDescriptor.parseFrom(byte[] bytes)
|
HTableDescriptor |
HTableDescriptor.setPriority(int priority)
|
Methods in org.apache.hadoop.hbase with parameters of type HTableDescriptor | |
---|---|
int |
HTableDescriptor.compareTo(HTableDescriptor other)
Compares the descriptor with another descriptor which is passed as a parameter. |
Constructors in org.apache.hadoop.hbase with parameters of type HTableDescriptor | |
---|---|
HTableDescriptor(HTableDescriptor desc)
Construct a table descriptor by cloning the descriptor passed as a parameter. |
Uses of HTableDescriptor in org.apache.hadoop.hbase.client |
---|
Subclasses of HTableDescriptor in org.apache.hadoop.hbase.client | |
---|---|
class |
UnmodifyableHTableDescriptor
Read-only table descriptor. |
Methods in org.apache.hadoop.hbase.client that return HTableDescriptor | |
---|---|
HTableDescriptor[] |
HBaseAdmin.deleteTables(Pattern pattern)
Delete tables matching the passed in pattern and wait on completion. |
HTableDescriptor[] |
HBaseAdmin.deleteTables(String regex)
Deletes tables matching the passed in pattern and wait on completion. |
HTableDescriptor[] |
HBaseAdmin.disableTables(Pattern pattern)
Disable tables matching the passed in pattern and wait on completion. |
HTableDescriptor[] |
HBaseAdmin.disableTables(String regex)
Disable tables matching the passed in pattern and wait on completion. |
HTableDescriptor[] |
HBaseAdmin.enableTables(Pattern pattern)
Enable tables matching the passed in pattern and wait on completion. |
HTableDescriptor[] |
HBaseAdmin.enableTables(String regex)
Enable tables matching the passed in pattern and wait on completion. |
HTableDescriptor |
HConnectionManager.HConnectionImplementation.getHTableDescriptor(byte[] tableName)
|
HTableDescriptor |
HConnection.getHTableDescriptor(byte[] tableName)
Deprecated. |
HTableDescriptor |
HConnectionManager.HConnectionImplementation.getHTableDescriptor(TableName tableName)
Connects to the master to get the table descriptor. |
HTableDescriptor |
HConnection.getHTableDescriptor(TableName tableName)
|
HTableDescriptor[] |
HConnectionManager.HConnectionImplementation.getHTableDescriptors(List<String> names)
|
HTableDescriptor[] |
HConnection.getHTableDescriptors(List<String> tableNames)
Deprecated. |
HTableDescriptor[] |
HConnectionManager.HConnectionImplementation.getHTableDescriptorsByTableName(List<TableName> tableNames)
|
HTableDescriptor[] |
HConnection.getHTableDescriptorsByTableName(List<TableName> tableNames)
|
HTableDescriptor |
HTable.getTableDescriptor()
Gets the table descriptor for this table. |
HTableDescriptor |
HTableInterface.getTableDescriptor()
Gets the table descriptor for this table. |
HTableDescriptor |
HBaseAdmin.getTableDescriptor(byte[] tableName)
|
HTableDescriptor |
HBaseAdmin.getTableDescriptor(TableName tableName)
Method for getting the tableDescriptor |
HTableDescriptor[] |
HBaseAdmin.getTableDescriptors(List<String> names)
Get tableDescriptors |
HTableDescriptor[] |
HBaseAdmin.getTableDescriptorsByTableName(List<TableName> tableNames)
Get tableDescriptors |
HTableDescriptor[] |
HBaseAdmin.listTableDescriptorsByNamespace(String name)
Get list of table descriptors by namespace |
HTableDescriptor[] |
HConnectionManager.HConnectionImplementation.listTables()
|
HTableDescriptor[] |
HBaseAdmin.listTables()
List all the userspace tables. |
HTableDescriptor[] |
HConnection.listTables()
List all the userspace tables. |
HTableDescriptor[] |
HBaseAdmin.listTables(Pattern pattern)
List all the userspace tables matching the given pattern. |
HTableDescriptor[] |
HBaseAdmin.listTables(String regex)
List all the userspace tables matching the given regular expression. |
Methods in org.apache.hadoop.hbase.client with parameters of type HTableDescriptor | |
---|---|
void |
HBaseAdmin.createTable(HTableDescriptor desc)
Creates a new table. |
void |
HBaseAdmin.createTable(HTableDescriptor desc,
byte[][] splitKeys)
Creates a new table with an initial set of empty regions defined by the specified split keys. |
void |
HBaseAdmin.createTable(HTableDescriptor desc,
byte[] startKey,
byte[] endKey,
int numRegions)
Creates a new table with the specified number of regions. |
void |
HBaseAdmin.createTableAsync(HTableDescriptor desc,
byte[][] splitKeys)
Creates a new table but does not block and wait for it to come online. |
void |
HBaseAdmin.modifyTable(byte[] tableName,
HTableDescriptor htd)
|
void |
HBaseAdmin.modifyTable(String tableName,
HTableDescriptor htd)
|
void |
HBaseAdmin.modifyTable(TableName tableName,
HTableDescriptor htd)
Modify an existing table, more IRB friendly version. |
Uses of HTableDescriptor in org.apache.hadoop.hbase.protobuf |
---|
Methods in org.apache.hadoop.hbase.protobuf that return HTableDescriptor | |
---|---|
static HTableDescriptor[] |
ProtobufUtil.getHTableDescriptorArray(org.apache.hadoop.hbase.protobuf.generated.MasterProtos.GetTableDescriptorsResponse proto)
Get HTableDescriptor[] from GetTableDescriptorsResponse protobuf |
Methods in org.apache.hadoop.hbase.protobuf with parameters of type HTableDescriptor | |
---|---|
static org.apache.hadoop.hbase.protobuf.generated.MasterProtos.CreateTableRequest |
RequestConverter.buildCreateTableRequest(HTableDescriptor hTableDesc,
byte[][] splitKeys)
Creates a protocol buffer CreateTableRequest |
static org.apache.hadoop.hbase.protobuf.generated.MasterProtos.ModifyTableRequest |
RequestConverter.buildModifyTableRequest(TableName tableName,
HTableDescriptor hTableDesc)
Creates a protocol buffer ModifyTableRequest |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |