博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HBase describe table 参数说明
阅读量:6149 次
发布时间:2019-06-21

本文共 1417 字,大约阅读时间需要 4 分钟。

创建user表

> create 'dimensoft:user', 'info'

 

查看表结构

> describe 'dimensoft:user'
DESCRIPTION 'dimensoft:user', //namespace:tableName    {        NAME => 'info', //列族        DATA_BLOCK_ENCODING => 'NONE', //数据块编码方式设置        //参见:http://hbase.apache.org/book.html#data.block.encoding.enable        BLOOMFILT => 'ROW', //参见:http://hbase.apache.org/book.html#bloom.filters.when        REPLICATION_SCOPE => '0', //配置HBase集群replication时需要将该参数设置为1.        //参见:http://blog.cloudera.com/blog/2012/08/hbase-replication-operational-overview/?utm_source=tuicool        'REPLICATION_SCOPE is a column-family level attribute user has to alter each column family with the alter command as shown above, for all the column families he wants to replicate.'        VERSIONS => '1', //设置保存的版本数        COMPRESSION => 'NONE', //设置压缩算法        MIN_VERSIONS => '0', //最小存储版本数        TTL => 'FOREVER', //参见:http://hbase.apache.org/book.html#ttl        'ColumnFamilies can set a TTL length in seconds, and HBase reached. This applies to all versions of a row - even the current one. The TTL time encoded in the HBase for the row is specified in UTC.'        KEEP_DELETED_CELLS => 'false', //参见:http://hbase.apache.org/book.html#cf.keep.deleted        BLOCKSIZE => '65536', //设置HFile数据块大小(默认64kb)        IN_MEMORY => 'false',//设置激进缓存,优先考虑将该列族放入块缓存中,                             //针对随机读操作相对较多的列族可以设置该属性为true        BLOCKCACHE => 'true' //数据块缓存属性    }

 

转载地址:http://ulmya.baihongyu.com/

你可能感兴趣的文章
Android Jni调用浅述
查看>>
CodeCombat森林关卡Python代码
查看>>
第一个应用程序HelloWorld
查看>>
(二)Spring Boot 起步入门(翻译自Spring Boot官方教程文档)1.5.9.RELEASE
查看>>
Java并发编程73道面试题及答案
查看>>
企业级负载平衡简介(转)
查看>>
ICCV2017 论文浏览记录
查看>>
科技巨头的交通争夺战
查看>>
当中兴安卓手机遇上农行音频通用K宝 -- 卡在“正在通讯”,一直加载中
查看>>
Shell基础之-正则表达式
查看>>
JavaScript异步之Generator、async、await
查看>>
讲讲吸顶效果与react-sticky
查看>>
c++面向对象的一些问题1 0
查看>>
直播视频流技术名词
查看>>
IOC —— AOP
查看>>
比特币现金将出新招,推动比特币现金使用
查看>>
数据库的这些性能优化,你做了吗?
查看>>
MS SQLSERVER通用存储过程分页
查看>>
60.使用Azure AI 自定义视觉服务实现物品识别Demo
查看>>
Oracle 冷备份
查看>>