Uses of Class
org.apache.hadoop.hbase.client.TableDescriptorBuilder
Package
Description
Provides HBase Client
Restrict the domain of a data attribute, often times to fulfill business rules/requirements.
-
Uses of TableDescriptorBuilder in org.apache.hadoop.hbase
Modifier and TypeMethodDescriptionHBaseTestingUtility.createModifyableTableDescriptor
(String name) Deprecated.HBaseTestingUtility.createModifyableTableDescriptor
(TableName name, int minVersions, int versions, int ttl, KeepDeletedCells keepDeleted) Deprecated. -
Uses of TableDescriptorBuilder in org.apache.hadoop.hbase.client
Modifier and TypeMethodDescriptionTableDescriptorBuilder.modifyColumnFamily
(ColumnFamilyDescriptor family) static TableDescriptorBuilder
TableDescriptorBuilder.newBuilder
(TableDescriptor desc) Copy all values, families, and name from the input.static TableDescriptorBuilder
TableDescriptorBuilder.newBuilder
(TableName name) TableDescriptorBuilder.removeColumnFamily
(byte[] name) TableDescriptorBuilder.removeCoprocessor
(String className) TableDescriptorBuilder.removeValue
(byte[] key) TableDescriptorBuilder.removeValue
(String key) TableDescriptorBuilder.removeValue
(BiPredicate<Bytes, Bytes> predicate) TableDescriptorBuilder.removeValue
(Bytes key) TableDescriptorBuilder.setColumnFamilies
(Collection<ColumnFamilyDescriptor> families) TableDescriptorBuilder.setColumnFamily
(ColumnFamilyDescriptor family) TableDescriptorBuilder.setCompactionEnabled
(boolean isEnable) TableDescriptorBuilder.setCoprocessor
(String className) TableDescriptorBuilder.setCoprocessor
(CoprocessorDescriptor cpDesc) TableDescriptorBuilder.setCoprocessors
(Collection<CoprocessorDescriptor> cpDescs) TableDescriptorBuilder.setDurability
(Durability durability) TableDescriptorBuilder.setErasureCodingPolicy
(String policy) TableDescriptorBuilder.setFlushPolicyClassName
(String clazz) TableDescriptorBuilder.setMaxFileSize
(long maxFileSize) TableDescriptorBuilder.setMaxFileSize
(String maxFileSize) TableDescriptorBuilder.setMemStoreFlushSize
(long memstoreFlushSize) TableDescriptorBuilder.setMemStoreFlushSize
(String memStoreFlushSize) TableDescriptorBuilder.setMergeEnabled
(boolean isEnable) TableDescriptorBuilder.setNormalizationEnabled
(boolean isEnable) TableDescriptorBuilder.setNormalizerTargetRegionCount
(int regionCount) TableDescriptorBuilder.setNormalizerTargetRegionSize
(long regionSize) TableDescriptorBuilder.setPriority
(int priority) TableDescriptorBuilder.setReadOnly
(boolean readOnly) TableDescriptorBuilder.setRegionMemStoreReplication
(boolean memstoreReplication) TableDescriptorBuilder.setRegionReplication
(int regionReplication) TableDescriptorBuilder.setRegionServerGroup
(String group) TableDescriptorBuilder.setRegionSplitPolicyClassName
(String clazz) TableDescriptorBuilder.setReplicationScope
(int scope) Sets replication scope all & only the columns already in the builder.TableDescriptorBuilder.setSplitEnabled
(boolean isEnable) TableDescriptorBuilder.setValue
(byte[] key, byte[] value) -
Uses of TableDescriptorBuilder in org.apache.hadoop.hbase.constraint
Modifier and TypeMethodDescriptionstatic TableDescriptorBuilder
Constraints.add
(TableDescriptorBuilder builder, Class<? extends Constraint>... constraints) Add configuration-less constraints to the table.static TableDescriptorBuilder
Constraints.add
(TableDescriptorBuilder builder, Class<? extends Constraint> constraint, org.apache.hadoop.conf.Configuration conf) Add aConstraint
to the table with the given configurationstatic TableDescriptorBuilder
Constraints.add
(TableDescriptorBuilder builder, Pair<Class<? extends Constraint>, org.apache.hadoop.conf.Configuration>... constraints) Add constraints and their associated configurations to the table.private static TableDescriptorBuilder
Constraints.addConstraint
(TableDescriptorBuilder builder, Class<? extends Constraint> clazz, org.apache.hadoop.conf.Configuration conf, long priority) Write the raw constraint and configuration to the descriptor.private static TableDescriptorBuilder
Constraints.changeConstraintEnabled
(TableDescriptorBuilder builder, Class<? extends Constraint> clazz, boolean enabled) Change the whether the constraint (if it is already present) is enabled or disabled.static TableDescriptorBuilder
Constraints.disable
(TableDescriptorBuilder builder) Turn off processing constraints for a given table, even if constraints have been turned on or added.static TableDescriptorBuilder
Constraints.enable
(TableDescriptorBuilder builder) Enable constraints on a table.static TableDescriptorBuilder
Constraints.remove
(TableDescriptorBuilder builder) Remove allConstraints
that have been added to the table and turn off the constraint processing.static TableDescriptorBuilder
Constraints.remove
(TableDescriptorBuilder builder, Class<? extends Constraint> clazz) Remove the constraint (and associated information) for the table descriptor.static TableDescriptorBuilder
Constraints.setConfiguration
(TableDescriptorBuilder builder, Class<? extends Constraint> clazz, org.apache.hadoop.conf.Configuration configuration) Update the configuration for theConstraint
; does not change the order in which the constraint is run.private static TableDescriptorBuilder
Constraints.updateLatestPriority
(TableDescriptorBuilder builder, long priority) private static TableDescriptorBuilder
Constraints.writeConstraint
(TableDescriptorBuilder builder, String key, org.apache.hadoop.conf.Configuration conf) Write the given key and associated configuration to theTableDescriptorBuilder
.Modifier and TypeMethodDescriptionstatic TableDescriptorBuilder
Constraints.add
(TableDescriptorBuilder builder, Class<? extends Constraint>... constraints) Add configuration-less constraints to the table.static TableDescriptorBuilder
Constraints.add
(TableDescriptorBuilder builder, Class<? extends Constraint> constraint, org.apache.hadoop.conf.Configuration conf) Add aConstraint
to the table with the given configurationstatic TableDescriptorBuilder
Constraints.add
(TableDescriptorBuilder builder, Pair<Class<? extends Constraint>, org.apache.hadoop.conf.Configuration>... constraints) Add constraints and their associated configurations to the table.private static TableDescriptorBuilder
Constraints.addConstraint
(TableDescriptorBuilder builder, Class<? extends Constraint> clazz, org.apache.hadoop.conf.Configuration conf, long priority) Write the raw constraint and configuration to the descriptor.private static TableDescriptorBuilder
Constraints.changeConstraintEnabled
(TableDescriptorBuilder builder, Class<? extends Constraint> clazz, boolean enabled) Change the whether the constraint (if it is already present) is enabled or disabled.static TableDescriptorBuilder
Constraints.disable
(TableDescriptorBuilder builder) Turn off processing constraints for a given table, even if constraints have been turned on or added.static void
Constraints.disableConstraint
(TableDescriptorBuilder builder, Class<? extends Constraint> clazz) Disable the givenConstraint
.static TableDescriptorBuilder
Constraints.enable
(TableDescriptorBuilder builder) Enable constraints on a table.static void
Constraints.enableConstraint
(TableDescriptorBuilder builder, Class<? extends Constraint> clazz) Enable the givenConstraint
.Constraints.getKeyValueForClass
(TableDescriptorBuilder builder, Class<? extends Constraint> clazz) Get the kvMap.Entry
in the descriptor builder for the specified classprivate static long
Constraints.getNextPriority
(TableDescriptorBuilder builder) static TableDescriptorBuilder
Constraints.remove
(TableDescriptorBuilder builder) Remove allConstraints
that have been added to the table and turn off the constraint processing.static TableDescriptorBuilder
Constraints.remove
(TableDescriptorBuilder builder, Class<? extends Constraint> clazz) Remove the constraint (and associated information) for the table descriptor.static TableDescriptorBuilder
Constraints.setConfiguration
(TableDescriptorBuilder builder, Class<? extends Constraint> clazz, org.apache.hadoop.conf.Configuration configuration) Update the configuration for theConstraint
; does not change the order in which the constraint is run.private static TableDescriptorBuilder
Constraints.updateLatestPriority
(TableDescriptorBuilder builder, long priority) private static TableDescriptorBuilder
Constraints.writeConstraint
(TableDescriptorBuilder builder, String key, org.apache.hadoop.conf.Configuration conf) Write the given key and associated configuration to theTableDescriptorBuilder
. -
Uses of TableDescriptorBuilder in org.apache.hadoop.hbase.master.slowlog
Modifier and TypeFieldDescriptionprivate static final TableDescriptorBuilder
SlowLogMasterService.TABLE_DESCRIPTOR_BUILDER
-
Uses of TableDescriptorBuilder in org.apache.hadoop.hbase.master.waleventtracker
Modifier and TypeFieldDescriptionprivate static final TableDescriptorBuilder
WALEventTrackerTableCreator.TABLE_DESCRIPTOR_BUILDER
-
Uses of TableDescriptorBuilder in org.apache.hadoop.hbase.regionserver.storefiletracker
Modifier and TypeMethodDescriptionStoreFileTracker.updateWithTrackerConfigs
(TableDescriptorBuilder builder) Adds StoreFileTracker implementations specific configurations into the table descriptor.StoreFileTrackerBase.updateWithTrackerConfigs
(TableDescriptorBuilder builder) Modifier and TypeMethodDescriptionStoreFileTracker.updateWithTrackerConfigs
(TableDescriptorBuilder builder) Adds StoreFileTracker implementations specific configurations into the table descriptor.StoreFileTrackerBase.updateWithTrackerConfigs
(TableDescriptorBuilder builder) -
Uses of TableDescriptorBuilder in org.apache.hadoop.hbase.replication.master
Modifier and TypeFieldDescriptionprivate static final TableDescriptorBuilder
ReplicationSinkTrackerTableCreator.TABLE_DESCRIPTOR_BUILDER
-
Uses of TableDescriptorBuilder in org.apache.hadoop.hbase.util
Modifier and TypeMethodDescriptionprivate static TableDescriptorBuilder
FSTableDescriptors.createMetaTableDescriptorBuilder
(org.apache.hadoop.conf.Configuration conf)