val hbaseConf = org.apache.hadoop.hbase.HBaseConfiguration.create() hbaseConf.set("hbase.zookeeper.quorum","s1…
标签:set
关于设置hive默认值
关于设置hive初始文件的默认值 设置hive一些默认的值,在$HIVE_HOME主目录下修改.hiverc文件,这里自己设置的几个参数有: set hive.cli.print.header=true; #设置默认输出…
Fragment 中setUserVisibleHint方法不执行
/** * Set a hint to the system about whether this fragment's UI is currently visible * to the user. This hint …
Hive表导出成csv文件
先说结论 hive -e "set hive.cli.print.header=true; select * from data_table where some_query_conditions" | sed 's/[…
memcached操作
1、telnet操作memcached: telnet ip地址 [11211] 1-1、添加数据: set: 语法: set key flas(是否压缩) …
Python中set的用法
python 的集合类型和 其他语言类似, 是一个无序不重复元素集,我在之前学过的其他的语言好像没有见过这个类型,基本功能包括关系测试和消除重复元素.集合对象还支持union(联合), intersection(交), …
Mybatis配置文件中的SQL语句常用标签
where: 输出where关键字,当SQL语句条件都不满足,就不会输出Where关键字,无条件检索. 假如条件都满足,where将拼出来的SQL语句 把and 和or给屏蔽掉。 sql: 对重复的字段进行引用 sele…
Redis简单常用命令入门例子
简单五大类型的常用命令实例讲解(详细后续文章有总结,参考官方文档) string (int/string/float) set string1 值 get string1 //输出为 值 incr string1 //自…
sql server循环语句
declare @star int,@end int set @star=1 set @end=10 while @star<=@end begin print @star set @star=@star+1 en…
Hive 分桶
Hive 分桶 分桶 对于每一个表或者分区,Hive可以进一步组织成桶,也就是更为细粒度的数据范围划分 Hive是针对某一列进行分桶 Hive采用对列值哈希,然后除以桶的个数求余的方式决定该条记录存放在哪个桶当中 好处 …
Redis命令:Sets
Set是一组无序、不重复的元素。 SADD命令添加指定元素到set中,重复元素将会被忽略。 SMEMBERS命令会返回set中的所有元素。 SADD set "a" "b" "c" "a" => "(integer…
hive笔记
hive set mapreduce.job.queuename = production set hive.execution.engine = spark/mr; beeline连接hive beeline !con…