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,开放式系统互联) 参 ...
随机推荐
- 第一个只出现一次的字符字符(python)
题目描述 在一个字符串(0<=字符串长度<=10000,全部由字母组成)中找到第一个只出现一次的字符,并返回它的位置, 如果没有则返回 -1(需要区分大小写). # -*- codin ...
- 深度学习项目——基于卷积神经网络(CNN)的人脸在线识别系统
基于卷积神经网络(CNN)的人脸在线识别系统 本设计研究人脸识别技术,基于卷积神经网络构建了一套人脸在线检测识别系统,系统将由以下几个部分构成: 制作人脸数据集.CNN神经网络模型训练.人脸检测.人脸 ...
- Ubuntu修改时间时区
设定时区:dpkg-reconfigure tzdata 选择Asia,Hong Kong. sudo apt-get install ntpdate // 安装时间同步工具 sudo ntpdate ...
- Python基础-python数据类型之列表(四)
列表 格式 namesList = [ 字符串,数字,列表,元祖,集合] 列表中的元素可以是不 同类型的 列表的相关操作 列表中存放的数据是可以进行修改的,比如"增"." ...
- php redis pipeline用法
$redis_110 = Redis::connection('redis_110');$redis_85 = Redis::connection('redis_85');$zadd_key_arr ...
- PHP开发——进制转换
常用进制 l 10进制:有10个基本数,分别为0.1.2.3.4.5.6.7.8.9,运算规则”逢10进1”: l 8进制:有8个基本数,分别为0.1.2.3.4.5.6.7,运算规则”逢8进1” ...
- AES-GCM算法
一.简介 http://blog.csdn.net/t0mato_/article/details/53160772
- linux ">/dev/null 2>&1 &"
0:表示键盘输入(stdin)1:表示标准输出(stdout),系统默认是1 2:表示错误输出(stderr) command >/dev/null 2>&1 & == ...
- 代码之髓读后感——名字&作用域&类型
名字和作用域 为什么要取名 看着代码中遍地都是的变量,函数,或多或少的我们都应该想过,为什么会有这些名字呢? 我们知道,计算机将数据存储到对应的物理内存中去.我们的操作就是基于数据的.我们需要使用这些 ...
- Python:每日一题004
题目: 输入某年某月某日,判断这一天是这一年的第几天? 程序分析: 以3月5日为例,应该先把前两个月的加起来,然后再加上5天即本年的第几天,特殊情况,闰年且输入月份大于2时需考虑多加一天 个人的思路及 ...