2014.8.21
2024.8.30
Hive
897
2 分钟查询以下语句的过程 select fr from xxxxxx where substr(fr, 1, 1) = 'a'; Hive查询在编译的阶段把语句转换成一个个有层…… 2014.8.10
2024.8.30
Hadoop
415
1 分钟配置 安装Maven, Ant, Findbugs, protobuf, cmake 参考:http://cn.soulmachine.me/…… 2014.8.4
2024.8.30
未分类
69
1 分钟# 关闭sendmail service sendmail stop chkconfig --list sendmail chkconfig --level 2345 sendmail off # 删除mail文件夹 rm -rf /var/spool/mqueue && mkdir /var/spool/mqueue rm -rf /var/spool/clientmqueue &&……
2014.7.27
2024.8.30
Hadoop
1199
3 分钟现象 报错如下 Application application_1405852606905_0014 failed 3 times due to AM Container for appattempt_1405852606905_0014_000003 exited with exitCode: -1000 due to: RemoteTrace: java.io.FileNotFoundException: File does not exist: hdfs://mycluster:8020/user/kpi/.staging/job_1405852606905_0014/appTokens at org.apache.hadoop.hdfs.DistributedFileSystem.getFileStatus(DistributedFileSystem.java:809) 同时注意到是因为每次…… 2014.7.23
2024.8.30
Linux
13
1 分钟service sendmail stop chkconfig --level 2345 sendmail off chkconfig --list sendmail via: http://hi.baidu.com/chenhj_brenda/item/e46c6b3fdb8f03b9124b14f0 2014.6.6
2024.8.30
未分类
104
1 分钟可能的原因是有特殊的字符,或者xml编码不正确。 我用notepad++安装xml to…… 2014.3.24
2024.8.30
数据库
91
1 分钟使用以下语句转换。 alter table <some_table> convert to character set utf8 collate utf8_unicode_ci; 来源:http://stackoverflow…… 2014.3.23
2024.8.30
Hadoop
35
1 分钟hadoop2 可以用GRAPHVIZ来生成状态图,点击下面的连接查看状态转换图。 http://www.rigongyizu.com/generate-hadoop-yarn-state-transit-graph/ 2014.2.22
2024.8.30
Hadoop
869
2 分钟背景 线上的服务器都是linux,直接在线上debug不需要准备太多测试数据。 实现 远程…… 2014.1.27
2024.8.30
Hive
36
1 分钟这篇文章介绍了limit是怎样执行的,从大体上看代码的运行情况。备忘。 http://yaoyinjie.blog.51cto.com/3189782/923378