本文整理汇总了Java中org.apache.hadoop.hbase.protobuf.generated.HBaseProtos.ColumnFamilySchema类的典型用法代码示例。如果您正苦于以下问题:Java ColumnFamilySchema类的具体用法?Java ColumnFamilySchema怎么用?Java ColumnFamilySchema使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
ColumnFamilySchema类属于org.apache.hadoop.hbase.protobuf.generated.HBaseProtos包,在下文中一共展示了ColumnFamilySchema类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: DataOutputBuffer
import org.apache.hadoop.hbase.protobuf.generated.HBaseProtos.ColumnFamilySchema; //导入依赖的package包/类
@Override
/**
* @return Convert this instance to a the pb column family type
*/ public ColumnFamilySchema convert() {
try {
DataOutputBuffer indexout = new DataOutputBuffer();
// System.out.println("winter write indexColumn descripter, indexType is: "
// + valueOfIndexType(indexType));
indexout.writeInt(valueOfIndexType(indexType));
indexout.writeInt(indexes.size());
for (IndexDescriptor indexDescriptor : indexes.values()) {
indexDescriptor.write(indexout);
}
super.setValue(INDEX, indexout.getData());
} catch (IOException e1) {
e1.printStackTrace();
}
return super.convert();
}
开发者ID:fengchen8086,项目名称:ditb,代码行数:20,代码来源:IndexColumnDescriptor.java
示例2: parseFrom
import org.apache.hadoop.hbase.protobuf.generated.HBaseProtos.ColumnFamilySchema; //导入依赖的package包/类
/**
* @param bytes A pb serialized {@link HColumnDescriptor} instance with pb magic prefix
* @return An instance of {@link HColumnDescriptor} made from <code>bytes</code>
* @throws DeserializationException
* @see #toByteArray()
*/
public static HColumnDescriptor parseFrom(final byte [] bytes) throws DeserializationException {
if (!ProtobufUtil.isPBMagicPrefix(bytes)) throw new DeserializationException("No magic");
int pblen = ProtobufUtil.lengthOfPBMagic();
ColumnFamilySchema.Builder builder = ColumnFamilySchema.newBuilder();
ColumnFamilySchema cfs = null;
try {
ProtobufUtil.mergeFrom(builder, bytes, pblen, bytes.length - pblen);
cfs = builder.build();
} catch (IOException e) {
throw new DeserializationException(e);
}
return convert(cfs);
}
开发者ID:fengchen8086,项目名称:ditb,代码行数:20,代码来源:HColumnDescriptor.java
示例3: parseFrom
import org.apache.hadoop.hbase.protobuf.generated.HBaseProtos.ColumnFamilySchema; //导入依赖的package包/类
/**
* @param bytes A pb serialized {@link HColumnDescriptor} instance with pb magic prefix
* @return An instance of {@link HColumnDescriptor} made from <code>bytes</code>
* @throws DeserializationException
* @see #toByteArray()
*/
public static HColumnDescriptor parseFrom(final byte [] bytes) throws DeserializationException {
if (!ProtobufUtil.isPBMagicPrefix(bytes)) throw new DeserializationException("No magic");
int pblen = ProtobufUtil.lengthOfPBMagic();
ColumnFamilySchema.Builder builder = ColumnFamilySchema.newBuilder();
ColumnFamilySchema cfs = null;
try {
cfs = builder.mergeFrom(bytes, pblen, bytes.length - pblen).build();
} catch (InvalidProtocolBufferException e) {
throw new DeserializationException(e);
}
return convert(cfs);
}
开发者ID:grokcoder,项目名称:pbase,代码行数:19,代码来源:HColumnDescriptor.java
示例4: convert
import org.apache.hadoop.hbase.protobuf.generated.HBaseProtos.ColumnFamilySchema; //导入依赖的package包/类
/**
* @param ts A pb TableSchema instance.
* @return An {@link HTableDescriptor} made from the passed in pb <code>ts</code>.
*/
public static HTableDescriptor convert(final TableSchema ts) {
List<ColumnFamilySchema> list = ts.getColumnFamiliesList();
HColumnDescriptor [] hcds = new HColumnDescriptor[list.size()];
int index = 0;
for (ColumnFamilySchema cfs: list) {
hcds[index++] = HColumnDescriptor.convert(cfs);
}
HTableDescriptor htd = new HTableDescriptor(ts.getName().toByteArray(), hcds);
for (BytesBytesPair a: ts.getAttributesList()) {
htd.setValue(a.getFirst().toByteArray(), a.getSecond().toByteArray());
}
return htd;
}
开发者ID:daidong,项目名称:DominoHBase,代码行数:18,代码来源:HTableDescriptor.java
示例5: convert
import org.apache.hadoop.hbase.protobuf.generated.HBaseProtos.ColumnFamilySchema; //导入依赖的package包/类
/**
* @param cfs
* @return An {@link HColumnDescriptor} made from the passed in <code>cfs</code>
*/
public static HColumnDescriptor convert(final ColumnFamilySchema cfs) {
// Use the empty constructor so we preserve the initial values set on construction for things
// like maxVersion. Otherwise, we pick up wrong values on deserialization which makes for
// unrelated-looking test failures that are hard to trace back to here.
HColumnDescriptor hcd = new HColumnDescriptor();
hcd.name = cfs.getName().toByteArray();
for (BytesBytesPair a: cfs.getAttributesList()) {
hcd.setValue(a.getFirst().toByteArray(), a.getSecond().toByteArray());
}
return hcd;
}
开发者ID:daidong,项目名称:DominoHBase,代码行数:16,代码来源:HColumnDescriptor.java
注:本文中的org.apache.hadoop.hbase.protobuf.generated.HBaseProtos.ColumnFamilySchema类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论