Studying
美团spark实践:http://tech.meituan.com/spark-in-meituan.html
CDH5.6.0-HBase1.0.0:http://archive.cloudera.com/cdh5/cdh/5/hbase/book.html
Spark On Yarn内存资源:http://blog.javachen.com/2015/06/09/memory-in-spark-on-yarn.html
Spark 动态资源分配:http://lxw1234.com/archives/2015/12/593.htm
CDH 相关升级解决issues:
Better: http://blog.csdn.net/xiao_jun_0820/article/details/46561097
CDH集群调优:
http://blog.csdn.net/tiimfei/article/details/46818257
CDH动态资源池:
http://blog.sina.com.cn/s/blog_b042cecf0102vmqy.html
2. Hue:
3. Spark+Kafka: https://www.ibm.com/developerworks/cn/opensource/os-cn-spark-practice2/
http://blogx.github.io/apache-spark-resource-management-and-yarn-app-models.html
4. Yarn资源调度: http://jxy.me/2015/04/30/yarn-resource-scheduler/
5. Hive优化:
仓库建设:http://blog.csdn.net/tiimfei/article/details/47127531
权限控制:https://cwiki.apache.org/confluence/display/Hive/SQL+Standard+Based+Hive+Authorization
权限控制业务场景:http://www.tuicool.com/articles/b2uuInN
Beeline连接HiveServer2(Queue):http://www.07net01.com/2015/08/900810.html
Map数:http://crxy2013.blog.51cto.com/9922445/1641735
Reduce数:http://crxy2013.blog.51cto.com/9922445/1642597
相关异常(1.1.0): http://tangjj.blog.51cto.com/1848040/1633305
Studying的更多相关文章
- So many good projects for studying C programming lanuage.
Some one asked a question for studying C programming language on stackexachange.com. He got a bucket ...
- Studying GIT
Studying git Shopping list: GIT的功能 接触一个新的软件或者网站,最重要的就是认识它的功能:Git 是用于 Linux内核开发的版本控制工具.与常用的版本控制工具 CVS ...
- Studying TCP's Throughput and Goodput using NS
Studying TCP's Throughput and Goodput using NS What is Throughput Throughput is the amount of data r ...
- Studying TCP's Congestion Window using NS
Studying TCP's Congestion Window using NS How to obtain TCP's CWND value The most important value th ...
- [ROS] Studying Guidance
Reference: https://www.zhihu.com/question/35788789 安装指南:http://wiki.ros.org/indigo/Installation/Ubun ...
- Notes for Studying Django
Once you added a new application to INSTALLED_APPS, the database tables need to be updated, thus you ...
- Day One studying english
I start study english lately,but the is no basis for english.Only i use baidu translation,google tra ...
- [SLAM] Studying Guidance
Books from Zhihu: 幽默一把 看完Gonzalez:嗯,好像很好玩的样子,我也来搞一搞.看完Price:什么鬼,怎么这么多公式,公式看不懂肿么破.看完Szeliski:原来用一千页的书 ...
- Java study 2:The note of studying Socket which based TCP
TCP concept: 传输控制协议(Transmission Control Protocol, TCP)是一种面向连接(连接导向)的.可靠的.基于字节流的运输层(Transport layer) ...
- Java study 1:The note of studying Socket which based UDP
UDP concept: UDP 是User Datagram Protocol的简称, 中文名是用户数据报协议,是OSI(Open System Interconnection,开放式系统互联) 参 ...
随机推荐
- linux服务器系统负载监控-shell脚本
一.监控服务器系统负载情况: 1.用uptime命令查看当前负载情况(1分钟,5分钟,15分钟平均负载情况) # uptime 15:43:59 up 186 days, 20:04, 1 us ...
- FortiGate高校图书馆SSLvpn配置案例
1.组网及需求 某高校有一台FGT系列防火墙放置于互联网出口,拓扑如下图: 现需求通过组建sslvpn web代理模式和隧道模式以实现: 1.web代理模式:能访问 http://lib.xxxx.e ...
- python shell的交互模式和文本编辑模式
之前学python的时候,是拿<笨办法学python>练习的. 书里面基本都是以.py文件去写代码,也就是文本编辑模式. 而交互模式(也就是powershell),唯有在input用户输入 ...
- 396. Rotate Function 移动加权求和,取最大值
[抄题]: Given an array of integers A and let n to be its length. Assume Bk to be an array obtained by ...
- Head First Servlets & JSP 学习笔记 第七章 —— 作为JSP
<%@ …… %> 这是指令 <%@ page ……import="java.util.Date" %> 这是page指令,import是page指令的一个 ...
- scrollIntoView()窗口滚动
1.某DIV窗口滚动到顶部: document.getElementById("某DIV的ID").scrollIntoView(true); 2.某DIV窗口滚动到底部: doc ...
- 探索未知种族之osg类生物---呼吸分解之更新循环三
补充 当然细心的你会发现,_scene->updateSceneGraph(*_updateVisitor)中还有一个imagePager::UpdateSceneGraph()还没有进行讲解, ...
- 网站日志流量分析采集(LuaJIT系统环境部署-node03,相关jar包自己手动上传)
注:/usr/local/src 是源码包路径,可以自己更改 服务器中安装依赖 yum -y install gcc perl pcre-devel openssl openssl-devel 上传 ...
- S 实现精确加减乘除
//加法函数 function accAdd(arg1, arg2) { var r1, r2, m; try { r1 = arg1.toString().split(".")[ ...
- Python设计模式运用
1 面向对象 2 创建型模式 3 结构型模式 4 行为型模式