Uses of Class
org.apache.hadoop.hbase.client.TableDescriptorBuilder
Packages that use 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
Methods in org.apache.hadoop.hbase that return TableDescriptorBuilderModifier 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
Methods in org.apache.hadoop.hbase.client that return TableDescriptorBuilderModifier and TypeMethodDescriptionTableDescriptorBuilder.modifyColumnFamily(ColumnFamilyDescriptor family) static TableDescriptorBuilderTableDescriptorBuilder.newBuilder(TableDescriptor desc) Copy all values, families, and name from the input.static TableDescriptorBuilderTableDescriptorBuilder.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
Methods in org.apache.hadoop.hbase.constraint that return TableDescriptorBuilderModifier and TypeMethodDescriptionstatic TableDescriptorBuilderConstraints.add(TableDescriptorBuilder builder, Class<? extends Constraint>... constraints) Add configuration-less constraints to the table.static TableDescriptorBuilderConstraints.add(TableDescriptorBuilder builder, Class<? extends Constraint> constraint, org.apache.hadoop.conf.Configuration conf) Add aConstraintto the table with the given configurationstatic TableDescriptorBuilderConstraints.add(TableDescriptorBuilder builder, Pair<Class<? extends Constraint>, org.apache.hadoop.conf.Configuration>... constraints) Add constraints and their associated configurations to the table.private static TableDescriptorBuilderConstraints.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 TableDescriptorBuilderConstraints.changeConstraintEnabled(TableDescriptorBuilder builder, Class<? extends Constraint> clazz, boolean enabled) Change the whether the constraint (if it is already present) is enabled or disabled.static TableDescriptorBuilderConstraints.disable(TableDescriptorBuilder builder) Turn off processing constraints for a given table, even if constraints have been turned on or added.static TableDescriptorBuilderConstraints.enable(TableDescriptorBuilder builder) Enable constraints on a table.static TableDescriptorBuilderConstraints.remove(TableDescriptorBuilder builder) Remove allConstraintsthat have been added to the table and turn off the constraint processing.static TableDescriptorBuilderConstraints.remove(TableDescriptorBuilder builder, Class<? extends Constraint> clazz) Remove the constraint (and associated information) for the table descriptor.static TableDescriptorBuilderConstraints.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 TableDescriptorBuilderConstraints.updateLatestPriority(TableDescriptorBuilder builder, long priority) private static TableDescriptorBuilderConstraints.writeConstraint(TableDescriptorBuilder builder, String key, org.apache.hadoop.conf.Configuration conf) Write the given key and associated configuration to theTableDescriptorBuilder.Methods in org.apache.hadoop.hbase.constraint with parameters of type TableDescriptorBuilderModifier and TypeMethodDescriptionstatic TableDescriptorBuilderConstraints.add(TableDescriptorBuilder builder, Class<? extends Constraint>... constraints) Add configuration-less constraints to the table.static TableDescriptorBuilderConstraints.add(TableDescriptorBuilder builder, Class<? extends Constraint> constraint, org.apache.hadoop.conf.Configuration conf) Add aConstraintto the table with the given configurationstatic TableDescriptorBuilderConstraints.add(TableDescriptorBuilder builder, Pair<Class<? extends Constraint>, org.apache.hadoop.conf.Configuration>... constraints) Add constraints and their associated configurations to the table.private static TableDescriptorBuilderConstraints.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 TableDescriptorBuilderConstraints.changeConstraintEnabled(TableDescriptorBuilder builder, Class<? extends Constraint> clazz, boolean enabled) Change the whether the constraint (if it is already present) is enabled or disabled.static TableDescriptorBuilderConstraints.disable(TableDescriptorBuilder builder) Turn off processing constraints for a given table, even if constraints have been turned on or added.static voidConstraints.disableConstraint(TableDescriptorBuilder builder, Class<? extends Constraint> clazz) Disable the givenConstraint.static TableDescriptorBuilderConstraints.enable(TableDescriptorBuilder builder) Enable constraints on a table.static voidConstraints.enableConstraint(TableDescriptorBuilder builder, Class<? extends Constraint> clazz) Enable the givenConstraint.Constraints.getKeyValueForClass(TableDescriptorBuilder builder, Class<? extends Constraint> clazz) Get the kvMap.Entryin the descriptor builder for the specified classprivate static longConstraints.getNextPriority(TableDescriptorBuilder builder) static TableDescriptorBuilderConstraints.remove(TableDescriptorBuilder builder) Remove allConstraintsthat have been added to the table and turn off the constraint processing.static TableDescriptorBuilderConstraints.remove(TableDescriptorBuilder builder, Class<? extends Constraint> clazz) Remove the constraint (and associated information) for the table descriptor.static TableDescriptorBuilderConstraints.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 TableDescriptorBuilderConstraints.updateLatestPriority(TableDescriptorBuilder builder, long priority) private static TableDescriptorBuilderConstraints.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
Fields in org.apache.hadoop.hbase.master.slowlog declared as TableDescriptorBuilderModifier and TypeFieldDescriptionprivate static final TableDescriptorBuilderSlowLogMasterService.TABLE_DESCRIPTOR_BUILDER -
Uses of TableDescriptorBuilder in org.apache.hadoop.hbase.master.waleventtracker
Fields in org.apache.hadoop.hbase.master.waleventtracker declared as TableDescriptorBuilderModifier and TypeFieldDescriptionprivate static final TableDescriptorBuilderWALEventTrackerTableCreator.TABLE_DESCRIPTOR_BUILDER -
Uses of TableDescriptorBuilder in org.apache.hadoop.hbase.regionserver.storefiletracker
Methods in org.apache.hadoop.hbase.regionserver.storefiletracker that return TableDescriptorBuilderModifier and TypeMethodDescriptionStoreFileTracker.updateWithTrackerConfigs(TableDescriptorBuilder builder) Adds StoreFileTracker implementations specific configurations into the table descriptor.StoreFileTrackerBase.updateWithTrackerConfigs(TableDescriptorBuilder builder) Methods in org.apache.hadoop.hbase.regionserver.storefiletracker with parameters of type TableDescriptorBuilderModifier 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
Fields in org.apache.hadoop.hbase.replication.master declared as TableDescriptorBuilderModifier and TypeFieldDescriptionprivate static final TableDescriptorBuilderReplicationSinkTrackerTableCreator.TABLE_DESCRIPTOR_BUILDER -
Uses of TableDescriptorBuilder in org.apache.hadoop.hbase.util
Methods in org.apache.hadoop.hbase.util that return TableDescriptorBuilderModifier and TypeMethodDescriptionprivate static TableDescriptorBuilderFSTableDescriptors.createMetaTableDescriptorBuilder(org.apache.hadoop.conf.Configuration conf)