Hive 已是目前业界最为通用、廉价的构建大数据时代数据仓库的解决方案了,虽然也有 Impala 等后起之秀,但目前从功能、稳定性等方面来说,Hive 的地位尚不可撼动。其实这篇博文主要是想聊聊 SMB join 的,Join 是整个 MR/Hive 最为核心的部分之一,是每个 Hadoop/Hiv...
分类:
其他好文 时间:
2015-07-15 15:02:19
阅读次数:
192
C++中引用(&)的用法和应用实例 - blue—— - 博客园http://www.cnblogs.com/Mr-xu/archive/2012/08/07/2626973.html
分类:
编程语言 时间:
2015-07-14 13:22:14
阅读次数:
169
uva 10986 Sending email
"A new internet watchdog is creating a stir in
Springfield. Mr. X, if that is his real name, has
come up with a sensational scoop."Kent Brockman
There are n SMTP se...
分类:
其他好文 时间:
2015-07-14 11:35:44
阅读次数:
111
My first thought made it unnecessarily difficult. Well, the correct solution falls into a typical pattern: use DP to calc cumulative results of each c...
分类:
其他好文 时间:
2015-07-14 07:33:48
阅读次数:
1246
八皇后 1 public class EightQueen { 2 3 private static final int ROW = 4; 4 private static final int COL = 4; 5 6 private static int count =...
分类:
编程语言 时间:
2015-07-13 11:54:31
阅读次数:
148
意甲冠军:特定n多头排列。m操作以下是各点的颜色以下m一种操纵:1 l r col 染色2 l r col 问间隔col色点== 通的操作+区间内最大最小颜色数的优化,感觉非常不科学。。。==感觉能够卡掉这样的写法。。反正就是不科学嘛#include #include #include #inclu...
分类:
其他好文 时间:
2015-07-13 11:51:19
阅读次数:
100
1.八皇后问题 1 public class EightQueen { 2 3 private static final int ROW = 16; 4 private static final int COL = 16; 5 6 private static int c...
分类:
编程语言 时间:
2015-07-13 11:40:42
阅读次数:
116
1.删除了表空间后,系统空间不释放drop tablespace tbs includingcontents and datafile;答:从网上查的让重启系统,实际操作是重启数据库就行了。2.查看数据库小版本升级记录set pages 100 lines 120 col action format...
分类:
数据库 时间:
2015-07-13 10:03:19
阅读次数:
288
遇到一个问题,自定义的Actor在使用batch.draw时,其他Actor设置的透明影响到了这个Actor处理方法为在自定义Actor中 draw方法中 绘制前,加入Color color = batch.getColor(); batch.setColor(color.r, col...
分类:
其他好文 时间:
2015-07-12 15:32:15
阅读次数:
132
class Solution {
public:
bool searchMatrix(vector>& matrix, int target) {
if(matrix.size() == 0)
return false;
bool result = false;
int row = 0, col = matrix[0]...
分类:
其他好文 时间:
2015-07-12 11:18:39
阅读次数:
98