Uses of Class
org.apache.hadoop.hbase.HColumnDescriptor

Packages that use HColumnDescriptor
org.apache.hadoop.hbase   
org.apache.hadoop.hbase.avro Provides an HBase Avro service. 
org.apache.hadoop.hbase.client Provides HBase Client 
org.apache.hadoop.hbase.coprocessor Table of Contents 
org.apache.hadoop.hbase.io.hfile Provides the hbase data+index+metadata file. 
org.apache.hadoop.hbase.ipc Tools to help define network clients and servers. 
org.apache.hadoop.hbase.master   
org.apache.hadoop.hbase.master.handler   
org.apache.hadoop.hbase.regionserver   
org.apache.hadoop.hbase.thrift Provides an HBase Thrift service. 
org.apache.hadoop.hbase.tool   
 

Uses of HColumnDescriptor in org.apache.hadoop.hbase
 

Methods in org.apache.hadoop.hbase that return HColumnDescriptor
 HColumnDescriptor[] HTableDescriptor.getColumnFamilies()
          Returns an array all the HColumnDescriptor of the column families of the table.
 HColumnDescriptor HTableDescriptor.getFamily(byte[] column)
          Returns the HColumnDescriptor for a specific column family with name as specified by the parameter column.
 HColumnDescriptor HTableDescriptor.removeFamily(byte[] column)
          Removes the HColumnDescriptor with name specified by the parameter column from the table descriptor
 HColumnDescriptor HColumnDescriptor.setBlockCacheEnabled(boolean blockCacheEnabled)
           
 HColumnDescriptor HColumnDescriptor.setBlocksize(int s)
           
 HColumnDescriptor HColumnDescriptor.setBloomFilterType(StoreFile.BloomType bt)
           
 HColumnDescriptor HColumnDescriptor.setCacheBloomsOnWrite(boolean value)
           
 HColumnDescriptor HColumnDescriptor.setCacheDataOnWrite(boolean value)
           
 HColumnDescriptor HColumnDescriptor.setCacheIndexesOnWrite(boolean value)
           
 HColumnDescriptor HColumnDescriptor.setCompactionCompressionType(Compression.Algorithm type)
          Compression types supported in hbase.
 HColumnDescriptor HColumnDescriptor.setCompressionType(Compression.Algorithm type)
          Compression types supported in hbase.
 HColumnDescriptor HColumnDescriptor.setDataBlockEncoding(DataBlockEncoding type)
          Set data block encoding algorithm used in block cache.
 HColumnDescriptor HColumnDescriptor.setEncodeOnDisk(boolean encodeOnDisk)
          Set the flag indicating that we only want to encode data block in cache but not on disk.
 HColumnDescriptor HColumnDescriptor.setEvictBlocksOnClose(boolean value)
           
 HColumnDescriptor HColumnDescriptor.setInMemory(boolean inMemory)
           
 HColumnDescriptor HColumnDescriptor.setKeepDeletedCells(boolean keepDeletedCells)
           
 HColumnDescriptor HColumnDescriptor.setMaxVersions(int maxVersions)
           
 HColumnDescriptor HColumnDescriptor.setMinVersions(int minVersions)
           
 HColumnDescriptor HColumnDescriptor.setScope(int scope)
           
 HColumnDescriptor HColumnDescriptor.setTimeToLive(int timeToLive)
           
 HColumnDescriptor HColumnDescriptor.setValue(byte[] key, byte[] value)
           
 HColumnDescriptor HColumnDescriptor.setValue(String key, String value)
           
 

Methods in org.apache.hadoop.hbase that return types with arguments of type HColumnDescriptor
 Collection<HColumnDescriptor> HTableDescriptor.getFamilies()
          Returns an unmodifiable collection of all the HColumnDescriptor of all the column families of the table.
 

Methods in org.apache.hadoop.hbase with parameters of type HColumnDescriptor
 void HTableDescriptor.addFamily(HColumnDescriptor family)
          Adds a column family.
 int HColumnDescriptor.compareTo(HColumnDescriptor o)
           
 

Constructors in org.apache.hadoop.hbase with parameters of type HColumnDescriptor
HColumnDescriptor(HColumnDescriptor desc)
          Constructor.
HTableDescriptor(byte[] name, HColumnDescriptor[] families)
           INTERNAL Private constructor used internally creating table descriptors for catalog tables, .META. and -ROOT-.
HTableDescriptor(byte[] name, HColumnDescriptor[] families, Map<ImmutableBytesWritable,ImmutableBytesWritable> values)
           INTERNAL Private constructor used internally creating table descriptors for catalog tables, .META. and -ROOT-.
 

Uses of HColumnDescriptor in org.apache.hadoop.hbase.avro
 

Methods in org.apache.hadoop.hbase.avro that return HColumnDescriptor
static HColumnDescriptor AvroUtil.afdToHCD(AFamilyDescriptor afd)
           
 

Methods in org.apache.hadoop.hbase.avro with parameters of type HColumnDescriptor
static AFamilyDescriptor AvroUtil.hcdToAFD(HColumnDescriptor hcd)
           
 

Uses of HColumnDescriptor in org.apache.hadoop.hbase.client
 

Subclasses of HColumnDescriptor in org.apache.hadoop.hbase.client
 class UnmodifyableHColumnDescriptor
          Immutable HColumnDescriptor
 

Methods in org.apache.hadoop.hbase.client that return HColumnDescriptor
 HColumnDescriptor UnmodifyableHTableDescriptor.removeFamily(byte[] column)
           
 HColumnDescriptor UnmodifyableHColumnDescriptor.setBlockCacheEnabled(boolean blockCacheEnabled)
           
 HColumnDescriptor UnmodifyableHColumnDescriptor.setCompressionType(Compression.Algorithm type)
           
 HColumnDescriptor UnmodifyableHColumnDescriptor.setInMemory(boolean inMemory)
           
 HColumnDescriptor UnmodifyableHColumnDescriptor.setMaxVersions(int maxVersions)
           
 HColumnDescriptor UnmodifyableHColumnDescriptor.setTimeToLive(int timeToLive)
           
 HColumnDescriptor UnmodifyableHColumnDescriptor.setValue(byte[] key, byte[] value)
           
 HColumnDescriptor UnmodifyableHColumnDescriptor.setValue(String key, String value)
           
 

Methods in org.apache.hadoop.hbase.client with parameters of type HColumnDescriptor
 void HBaseAdmin.addColumn(byte[] tableName, HColumnDescriptor column)
          Add a column to an existing table.
 void HBaseAdmin.addColumn(String tableName, HColumnDescriptor column)
          Add a column to an existing table.
 void UnmodifyableHTableDescriptor.addFamily(HColumnDescriptor family)
          Does NOT add a column family.
 void HBaseAdmin.modifyColumn(byte[] tableName, HColumnDescriptor descriptor)
          Modify an existing column family on a table.
 void HBaseAdmin.modifyColumn(String tableName, HColumnDescriptor descriptor)
          Modify an existing column family on a table.
 

Constructors in org.apache.hadoop.hbase.client with parameters of type HColumnDescriptor
UnmodifyableHColumnDescriptor(HColumnDescriptor desc)
           
 

Uses of HColumnDescriptor in org.apache.hadoop.hbase.coprocessor
 

Methods in org.apache.hadoop.hbase.coprocessor with parameters of type HColumnDescriptor
 void MasterObserver.postAddColumn(ObserverContext<MasterCoprocessorEnvironment> ctx, byte[] tableName, HColumnDescriptor column)
          Called after the new column family has been created.
 void BaseMasterObserver.postAddColumn(ObserverContext<MasterCoprocessorEnvironment> ctx, byte[] tableName, HColumnDescriptor column)
           
 void MasterObserver.postModifyColumn(ObserverContext<MasterCoprocessorEnvironment> ctx, byte[] tableName, HColumnDescriptor descriptor)
          Called after the column family has been updated.
 void BaseMasterObserver.postModifyColumn(ObserverContext<MasterCoprocessorEnvironment> ctx, byte[] tableName, HColumnDescriptor descriptor)
           
 void MasterObserver.preAddColumn(ObserverContext<MasterCoprocessorEnvironment> ctx, byte[] tableName, HColumnDescriptor column)
          Called prior to adding a new column family to the table.
 void BaseMasterObserver.preAddColumn(ObserverContext<MasterCoprocessorEnvironment> ctx, byte[] tableName, HColumnDescriptor column)
           
 void MasterObserver.preModifyColumn(ObserverContext<MasterCoprocessorEnvironment> ctx, byte[] tableName, HColumnDescriptor descriptor)
          Called prior to modifying a column family's attributes.
 void BaseMasterObserver.preModifyColumn(ObserverContext<MasterCoprocessorEnvironment> ctx, byte[] tableName, HColumnDescriptor descriptor)
           
 

Uses of HColumnDescriptor in org.apache.hadoop.hbase.io.hfile
 

Constructors in org.apache.hadoop.hbase.io.hfile with parameters of type HColumnDescriptor
CacheConfig(org.apache.hadoop.conf.Configuration conf, HColumnDescriptor family)
          Create a cache configuration using the specified configuration object and family descriptor.
 

Uses of HColumnDescriptor in org.apache.hadoop.hbase.ipc
 

Methods in org.apache.hadoop.hbase.ipc with parameters of type HColumnDescriptor
 void HMasterInterface.addColumn(byte[] tableName, HColumnDescriptor column)
          Adds a column to the specified table
 void HMasterInterface.modifyColumn(byte[] tableName, HColumnDescriptor descriptor)
          Modifies an existing column on the specified table
 

Uses of HColumnDescriptor in org.apache.hadoop.hbase.master
 

Methods in org.apache.hadoop.hbase.master with parameters of type HColumnDescriptor
 void HMaster.addColumn(byte[] tableName, HColumnDescriptor column)
           
 HTableDescriptor MasterFileSystem.addColumn(byte[] tableName, HColumnDescriptor hcd)
          Add column to a table
 void MasterServices.addColumn(byte[] tableName, HColumnDescriptor column)
          Add a new column to an existing table
 void HMaster.modifyColumn(byte[] tableName, HColumnDescriptor descriptor)
           
 HTableDescriptor MasterFileSystem.modifyColumn(byte[] tableName, HColumnDescriptor hcd)
          Modify Column of a table
 void MasterServices.modifyColumn(byte[] tableName, HColumnDescriptor descriptor)
          Modify the column descriptor of an existing column in an existing table
 

Uses of HColumnDescriptor in org.apache.hadoop.hbase.master.handler
 

Constructors in org.apache.hadoop.hbase.master.handler with parameters of type HColumnDescriptor
TableAddFamilyHandler(byte[] tableName, HColumnDescriptor familyDesc, Server server, MasterServices masterServices)
           
TableModifyFamilyHandler(byte[] tableName, HColumnDescriptor familyDesc, Server server, MasterServices masterServices)
           
 

Uses of HColumnDescriptor in org.apache.hadoop.hbase.regionserver
 

Methods in org.apache.hadoop.hbase.regionserver that return HColumnDescriptor
 HColumnDescriptor Store.getFamily()
           
 

Methods in org.apache.hadoop.hbase.regionserver with parameters of type HColumnDescriptor
protected  Store HRegion.instantiateHStore(org.apache.hadoop.fs.Path tableDir, HColumnDescriptor c)
           
 

Constructors in org.apache.hadoop.hbase.regionserver with parameters of type HColumnDescriptor
Store.ScanInfo(HColumnDescriptor family, long ttl, long timeToPurgeDeletes, KeyValue.KVComparator comparator)
           
Store(org.apache.hadoop.fs.Path basedir, HRegion region, HColumnDescriptor family, org.apache.hadoop.fs.FileSystem fs, org.apache.hadoop.conf.Configuration confParam)
          Constructor
 

Uses of HColumnDescriptor in org.apache.hadoop.hbase.thrift
 

Methods in org.apache.hadoop.hbase.thrift that return HColumnDescriptor
static HColumnDescriptor ThriftUtilities.colDescFromThrift(ColumnDescriptor in)
          This utility method creates a new Hbase HColumnDescriptor object based on a Thrift ColumnDescriptor "struct".
 

Methods in org.apache.hadoop.hbase.thrift with parameters of type HColumnDescriptor
static ColumnDescriptor ThriftUtilities.colDescFromHbase(HColumnDescriptor in)
          This utility method creates a new Thrift ColumnDescriptor "struct" based on an Hbase HColumnDescriptor object.
 

Uses of HColumnDescriptor in org.apache.hadoop.hbase.tool
 

Methods in org.apache.hadoop.hbase.tool with parameters of type HColumnDescriptor
 void Canary.Sink.publishReadFailure(HRegionInfo region, HColumnDescriptor column)
           
 void Canary.StdOutSink.publishReadFailure(HRegionInfo region, HColumnDescriptor column)
           
 void Canary.Sink.publishReadTiming(HRegionInfo region, HColumnDescriptor column, long msTime)
           
 void Canary.StdOutSink.publishReadTiming(HRegionInfo region, HColumnDescriptor column, long msTime)
           
 



Copyright © 2013 The Apache Software Foundation. All Rights Reserved.