Name | Description |
Creates the specified table in Apache HBase. | |
Deletes the specified table from Apache HBase. | |
Updates (adds or modifies the column family) the specified table in Apache HBase. |
Name | Type | Description |
TableName | String | The name of the table you wish to create. If the table already exists in Apache HBase, the existing schema will be replaced with the one specified by ColumnFamily. |
ColumnFamily# | String | The name of the column family to add to the table. At least one is required. |
Name | Type | Description |
Success | String | Returns true if the operation is successful, else an exception is returned. |
Name | Type | Description |
TableName | String | The name of the table you wish to delete. |
Name | Type | Description |
Success | String | Returns true if the operation is successful, else an exception is returned. |
Name | Type | Description |
TableName | String | The name of the table you wish to update. If the table does not exist, it will be created. |
ColumnFamily# | String | The name of the column family to add or modify in the table. At least one is required. |
Name | Type | Description |
Success | String | Returns true if the operation is successful, else an exception is returned. |