Hadoop权威指南(影印版) mobi 下载 网盘 caj lrf pdf txt 阿里云

Hadoop权威指南(影印版)电子书下载地址
内容简介:
揭示了Apache
Hadoop如何为你释放数据的力量。这本内容全面的书籍展示了如何使用Hadoop架构搭建和维护可靠、可伸缩的分布式系统。Hadoop架构是MapReduce算法的一种开源应用,是Google开创其帝国的重要基石。程序员可从中探索如何分析海量数据集,管理员可以了解如何建立与运行Hadoop集群。
《Hadoop权威指南(影印版第2版修订版)》涵盖了Hadoop近的更新,包括诸如Hive、Sqoop和Avro之类的新特性。它也提供了案例学习来展示Hadoop如何解决特殊问题。期待尽情享受你的数据?这就是你要的书。本身由Tom
White著。
书籍目录:
Foreword
Preface
1. Meet Hadoop
Data!
Data Storage and Analysis
Comparison with Other Systems
RDBMS
Grid Computing
Volunteer Computing
A Brief History of Hadoop
Apache Hadoop and the Hadoop Ecosystem
2. MapReduce
A Weather Dataset
Data Format
Analyzing the Data with Unix Tools
Analyzing the Data with Hadoop
Map and Reduce
Java MapReduce
Scaling Out
Data Flow
Combiner Functions
Running a Distributed MapReduce Job
Hadoop Streaming
Ruby
Python
Hadoop Pipes
Compiling and Running
3. The Hadoop Distributed Filesystem
The Design of HDFS
HDFS Concepts
Blocks
Namenodes and Datanodes
The Command-Line Interface
Basic Filesystem Operations
Hadoop Filesystems
Interfaces
The Java Interface
Reading Data from a Hadoop URL
Reading Data Using the FileSystem API
Writing Data
Directories
Querying the Filesystem
Deleting Data
Data Flow.
Anatomy of a File Read
Anatomy of a File Write
Coherency Model
Parallel Copying with distcp
Keeping an HDFS Cluster Balanced
Hadoop Archives
Using Hadoop Archives
Limitations
4. Hadoop I/0
Data Integrity
Data Integrity in HDFS
LocalFileSystem
ChecksumFileSystem
Compression
Codecs
Compression and Input Splits
Using Compression in MapReduce
Serialization
The Writable Interface
Writable Classes
Implementing a Custom Writable
Serialization Frameworks
Avro
File-Based Data Structures
SequenceFile
……
作者介绍:
Tom White从2007年起就是Apache
Hadoop的理事。他是Apache软件基金会的成员和Cloudera的工程师。Tom为oreilly.com,java.net~llBM的developerWorks撰文,并为业内会议演讲。
出版社信息:
暂无出版社相关信息,正在全力查找中!
书籍摘录:
暂无相关书籍摘录,正在全力查找中!
在线阅读/听书/购买/PDF下载地址:
原文赏析:
* The architecture of HDFS is described in “The Hadoop Distributed File System” by Konstantin Shvachko,
Hairong Kuang, Sanjay Radia, and Robert Chansler (Proceedings of MSST2010, May 2010, http://
storageconference.org/2010/Papers/MSST/Shvachko.pdf).
† “Scaling Hadoop to 4000 nodes at Yahoo!,” http://developer.yahoo.net/blogs/hadoop/2008/09/scaling_hadoop
_to_4000_nodes_a.html.
在许多情况下,可以视Mapreduce为关系型数据库管理系统的补充。MapReduce比较适合以批处理的方式处理需要分析整个数据集的问题,尤其是即席分析。RDBMS适用于点查询和更新,数据集被索引后,数据库系统能够提供低延迟的数据检索和快速的少量数据更新。MapReduce适合数据一次写入、多次读取的应用,而关系型数据库更适合持续更新数据集.
MapReduce is a programming model for data processing. MapReduce works by breaking the processing into two phases: the map phase and the reduce phase. Each phase has key-value pairs as input and output, the types of which may be chosen by the programmer. The programmer also specifies two functions: the map function and the reduce function.
Hadoop divides the input to a MapReduce job into fixed-size pieces called input splits, or just splits. Hadoop creates one map task for each split, which runs the userdefined map function for each record in the split. Hadoop does its best to run the map task on a node where the input data resides in HDFS. This is called the data locality optimization.
When there are multiple reducers, the map tasks partition their output, each creating one partition for each reduce task. There can be many keys (and their associated values) in each partition, but the records for every key are all in a single partition. The partitioning can be controlled by a user-defined partitioning function, but normally the default partitioner—which buckets keys using a hash function—works very well.
HDFS is a filesystem designed for storing very large files with streaming data access patterns(write-once, read-many-times pattern), running on clusters of commodity hardware.
HDFS blocks(>64M) are large compared to disk blocks, and the reason is to minimize the cost of seeks. Map tasks in MapReduce normally operate on one block at a time, so if you have too few tasks (fewer than nodes in the cluster), your jobs will run slower than they could otherwise.
An HDFS cluster has two types of node operating in a master-worker pattern: a namenode (the master) and a number of datanodes (workers). The namenode manages the filesystem namespace. It maintains the filesystem tree and the metadata for all the files and directories in the tree. Datanodes are the workhorses of the filesystem. They store a...
One important aspect of this design is that the client contacts datanodes directly to retrieve data and is guided by the namenode to the best datanode for each block. This design allows HDFS to scale to a large number of concurrent clients, since the data traffic is spread across all the datanodes in the cluster.
Hadoop takes a simple approach in which the network is represented as a tree and the distance between two nodes is the sum of their distances to their closest common ancestor.
其它内容:
书籍介绍
《Hadoop权威指南(影印版)(第2版修订版)》揭示了ApacheHadoop如何为你释放数据的力量。这本内容全面的书籍展示了如何使用Hadoop架构搭建和维护可靠、可伸缩的分布式系统。Hadoop架构是MapReduce算法的一种开源应用,是Google开创其帝国的重要基石。程序员可从中探索如何分析海量数据集,管理员可以了解如何建立与运行Had00p集群。本修订版涵盖了Hadoop最近的更新,包括诸如Hive、Sqoop和Avr0之类的新特性。它也提供了案例学习来展示Hadoop如何解决特殊问题。期待尽情享受你的数据?这就是你要的书。
网站评分
书籍多样性:4分
书籍信息完全性:8分
网站更新速度:6分
使用便利性:6分
书籍清晰度:4分
书籍格式兼容性:6分
是否包含广告:5分
加载速度:9分
安全性:4分
稳定性:4分
搜索功能:7分
下载便捷性:5分
下载点评
- 体验还行(507+)
- 超值(247+)
- 博大精深(79+)
- 种类多(646+)
- 好评多(525+)
- 经典(71+)
- 四星好评(644+)
- 差评(214+)
- 无缺页(584+)
- 情节曲折(589+)
- 下载速度快(96+)
- 内涵好书(131+)
- 收费(363+)
下载评价
- 网友 屠***好:
还行吧。
- 网友 曹***雯:
为什么许多书都找不到?
- 网友 相***儿:
你要的这里都能找到哦!!!
- 网友 田***珊:
可以就是有些书搜不到
- 网友 利***巧:
差评。这个是收费的
- 网友 堵***格:
OK,还可以
- 网友 国***芳:
五星好评
- 网友 谢***灵:
推荐,啥格式都有
- 网友 石***致:
挺实用的,给个赞!希望越来越好,一直支持。
- 网友 瞿***香:
非常好就是加载有点儿慢。
喜欢"Hadoop权威指南(影印版)"的人也看了
中华人民共和国税收征收管理法注释本 mobi 下载 网盘 caj lrf pdf txt 阿里云
现代财政法治化研究干部教育中心组经济科学出版社鑫隆博图书专营店 mobi 下载 网盘 caj lrf pdf txt 阿里云
天外来客UFO 万物探索 实景超清图精装版 青少版科普类中小学生8~16岁课外书籍 四色精美插图超大开本 mobi 下载 网盘 caj lrf pdf txt 阿里云
房地产投融资与开发法律风险及对策 mobi 下载 网盘 caj lrf pdf txt 阿里云
教育的道路 mobi 下载 网盘 caj lrf pdf txt 阿里云
小狗钱钱 +你好,价值2册套装 (德)博多·舍费尔 中信出版社 【新华书店正版图书书籍】 mobi 下载 网盘 caj lrf pdf txt 阿里云
血管外科临床解剖学 第2版第二版钟世镇现代临床解剖学全集汪忠镐舒畅主编 外科解剖医学书籍 山东科学技术正版9787572300035 mobi 下载 网盘 caj lrf pdf txt 阿里云
税法 mobi 下载 网盘 caj lrf pdf txt 阿里云
机遇就在三秒钟 mobi 下载 网盘 caj lrf pdf txt 阿里云
爱唱的军旅歌曲 文化出品乐海编著同心 全新 9787547716908 mobi 下载 网盘 caj lrf pdf txt 阿里云
- 五年级语文下:北S国标(2011年11月印刷)课时作业 mobi 下载 网盘 caj lrf pdf txt 阿里云
- 这就是中国力量超级工程来了(精装硬壳)揭秘大国工程里的科学奥秘 用科普讲好中国故事 mobi 下载 网盘 caj lrf pdf txt 阿里云
- In The Night Garden: All Aboard the Ninky Nonk [Board Book]花园宝宝:大家来坐丁丁车 ISBN 9781405903752 mobi 下载 网盘 caj lrf pdf txt 阿里云
- 经济学与法律的对话 大卫·D弗里德曼 著 广西师范大学出版社 mobi 下载 网盘 caj lrf pdf txt 阿里云
- 工程机械手册(路面与压实机械)(精) mobi 下载 网盘 caj lrf pdf txt 阿里云
- 2019城乡规划师职业资格考试参考教材配套真题全析与命题预测:城乡规划管理与法规 mobi 下载 网盘 caj lrf pdf txt 阿里云
- 新东方 威尔小镇的故事1(16本可点读的绘本+1本亲子互动手册 内含可点读的贴纸) mobi 下载 网盘 caj lrf pdf txt 阿里云
- Microsoft Office SharePoint Server 2007 管理员手册(光盘)Microsoft Office SharePoint Server2007 Administrator's Companion mobi 下载 网盘 caj lrf pdf txt 阿里云
- 乒乓球基础与实战:击球、攻防与战术(全彩图解版) mobi 下载 网盘 caj lrf pdf txt 阿里云
- 晋阳古城一号建筑基址 mobi 下载 网盘 caj lrf pdf txt 阿里云
书籍真实打分
故事情节:5分
人物塑造:6分
主题深度:5分
文字风格:9分
语言运用:6分
文笔流畅:8分
思想传递:7分
知识深度:7分
知识广度:9分
实用性:3分
章节划分:7分
结构布局:7分
新颖与独特:3分
情感共鸣:7分
引人入胜:3分
现实相关:5分
沉浸感:7分
事实准确性:7分
文化贡献:9分