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,开放式系统互联) 参 ...
随机推荐
- 100-days: eighteen
Title: Why India's election is among the world's most expensive election n.选举,当选,选举权 expensive adj.昂 ...
- 在java服务端判断请求是来自哪个终端
在servlet中,我们可以获取到HttpServletRequest,然后通过HttpServletRequest的getHeader("User-Agent")方法获取请求头中 ...
- 标志寄存器在Debug中的表示
在Debug中,标志寄存器是按照有意义的各个标志位单独表示的. 下面列出Debug对我们已知的标志位的表示.
- Swift 循环引用
- 循环引用的weak用法 // ** {} 中所有 self 都是弱引用,注意需要解包 // 1.类似于 OC 中的 __weak typeof(self) weakSelf = se ...
- jenkins源码管理git分支参数化
多个分支来回切换构建时,每次都需要去很多个job里面改分支名称,比较费时,分支参数化后可以只改一处就ok啦 步骤: 1.进入系统管理--系统设置 2.勾选全局变量,然后输入分支变量名和对应的分支名称 ...
- 操作系统学习笔记(二) 页式映射及windbg验证方式
页式映射 本系列截图来自网络搜索及以下基本书籍: <Windows内核设计思想> <Windows内核情景分析> <WINDOWS内核原理与实现> 一个32位虚拟地 ...
- .NET winform播放音频文件
前提:最近要求做一个在winform端做一个音频文件播放的功能,至此,总结最近搜寻的相关资料. 一.微软提供了三种方式来播放音频文件 1.通过System.Media.SoundPlayer来播放 2 ...
- Java集合:LinkedList源码解析
Java集合---LinkedList源码解析 一.源码解析1. LinkedList类定义2.LinkedList数据结构原理3.私有属性4.构造方法5.元素添加add()及原理6.删除数据re ...
- 连续子数组和的最大值plus
package wodeshiyao; import java.io.BufferedWriter; import java.io.File; import java.io.FileInputStre ...
- PowerShell工作流学习-3-挂起工作流
关键点: a)可使用Suspend-Job或Suspend-Workflow(从工作流中)挂起工作流,无法从工作流中恢复工作流. 例a: Workflow Test-Suspend { $a = Ge ...