当前位置: 首页>>代码示例>>Java>>正文


Java HTableDescriptor.modifyFamily方法代码示例

本文整理汇总了Java中org.apache.hadoop.hbase.HTableDescriptor.modifyFamily方法的典型用法代码示例。如果您正苦于以下问题:Java HTableDescriptor.modifyFamily方法的具体用法?Java HTableDescriptor.modifyFamily怎么用?Java HTableDescriptor.modifyFamily使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.apache.hadoop.hbase.HTableDescriptor的用法示例。


在下文中一共展示了HTableDescriptor.modifyFamily方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: modifyColumn

import org.apache.hadoop.hbase.HTableDescriptor; //导入方法依赖的package包/类
/**
 * Modify Column of a table
 * @param tableName
 * @param hcd HColumnDesciptor
 * @return Modified HTableDescriptor with the column modified.
 * @throws IOException
 */
public HTableDescriptor modifyColumn(TableName tableName, HColumnDescriptor hcd)
    throws IOException {
  LOG.info("AddModifyColumn. Table = " + tableName
      + " HCD = " + hcd.toString());

  HTableDescriptor htd = this.services.getTableDescriptors().get(tableName);
  byte [] familyName = hcd.getName();
  if(!htd.hasFamily(familyName)) {
    throw new InvalidFamilyOperationException("Family '" +
      Bytes.toString(familyName) + "' doesn't exists so cannot be modified");
  }
  htd.modifyFamily(hcd);
  this.services.getTableDescriptors().add(htd);
  return htd;
}
 
开发者ID:fengchen8086,项目名称:ditb,代码行数:23,代码来源:MasterFileSystem.java

示例2: updateTableDescriptor

import org.apache.hadoop.hbase.HTableDescriptor; //导入方法依赖的package包/类
/**
 * Modify the column family from the file system
 */
private void updateTableDescriptor(final MasterProcedureEnv env) throws IOException {
  // Update table descriptor
  LOG.info("ModifyColumnFamily. Table = " + tableName + " HCD = " + cfDescriptor.toString());

  HTableDescriptor htd = env.getMasterServices().getTableDescriptors().get(tableName);
  htd.modifyFamily(cfDescriptor);
  env.getMasterServices().getTableDescriptors().add(htd);
}
 
开发者ID:fengchen8086,项目名称:ditb,代码行数:12,代码来源:ModifyColumnFamilyProcedure.java

示例3: init

import org.apache.hadoop.hbase.HTableDescriptor; //导入方法依赖的package包/类
@SuppressWarnings("deprecation")
private Store init(String methodName, Configuration conf, HTableDescriptor htd,
    HColumnDescriptor hcd) throws IOException {
  //Setting up a Store
  Path basedir = new Path(DIR+methodName);
  Path tableDir = FSUtils.getTableDir(basedir, htd.getTableName());
  final Path logdir = new Path(basedir, DefaultWALProvider.getWALDirectoryName(methodName));

  FileSystem fs = FileSystem.get(conf);

  fs.delete(logdir, true);

  if (htd.hasFamily(hcd.getName())) {
    htd.modifyFamily(hcd);
  } else {
    htd.addFamily(hcd);
  }
  HRegionInfo info = new HRegionInfo(htd.getTableName(), null, null, false);
  final Configuration walConf = new Configuration(conf);
  FSUtils.setRootDir(walConf, basedir);
  final WALFactory wals = new WALFactory(walConf, null, methodName);
  HRegion region = new HRegion(tableDir, wals.getWAL(info.getEncodedNameAsBytes()), fs, conf,
      info, htd, null);

  store = new HStore(region, hcd, conf);
  return store;
}
 
开发者ID:fengchen8086,项目名称:ditb,代码行数:28,代码来源:TestStore.java


注:本文中的org.apache.hadoop.hbase.HTableDescriptor.modifyFamily方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。