Cargando…

Hadoop MapReduce cookbook : recipes for analyzing large and complex datasets with Hadoop MapReduce /

Individual self-contained code recipes. Solve specific problems using individual recipes, or work through the book to develop your capabilities. If you are a big data enthusiast and striving to use Hadoop to solve your problems, this book is for you. Aimed at Java programmers with some knowledge of...

Descripción completa

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Perera, Srinath
Otros Autores: Gunarathne, Thilina
Formato: Electrónico eBook
Idioma:Inglés
Publicado: Birmingham : Packt Pub., 2013.
Colección:Community experience distilled.
Temas:
Acceso en línea:Texto completo

MARC

LEADER 00000cam a2200000Ma 4500
001 EBSCO_ocn834589785
003 OCoLC
005 20231017213018.0
006 m o d
007 cr cn|||||||||
008 130222s2013 enka o 001 0 eng d
040 |a E7B  |b eng  |e pn  |c E7B  |d OCLCQ  |d OCLCO  |d OCLCF  |d N$T  |d YDXCP  |d OCLCQ  |d LOA  |d AGLDB  |d COCUF  |d CNNOR  |d MOR  |d PIFPO  |d OCLCQ  |d JBG  |d U3W  |d STF  |d WRM  |d OCLCQ  |d VTS  |d NRAMU  |d NLE  |d INT  |d UKMGB  |d OCLCQ  |d A6Q  |d HS0  |d NLW  |d OCLCQ  |d UKCRE  |d AJS  |d OCLCO  |d OCLCQ  |d OCLCO 
016 7 |a 018014894  |2 Uk 
019 |a 961658768  |a 962653845  |a 974770238  |a 974858714  |a 981885943  |a 1005639044  |a 1018009270  |a 1041780506  |a 1053493156  |a 1083554050  |a 1119111636  |a 1153520505  |a 1158928511  |a 1159686408  |a 1178852833  |a 1187183997  |a 1249256979 
020 |a 9781849517294  |q (electronic bk.) 
020 |a 1849517290  |q (electronic bk.) 
020 |z 9781849517287 
029 1 |a AU@  |b 000056864216 
029 1 |a CHNEW  |b 000610141 
029 1 |a DEBBG  |b BV043775505 
029 1 |a DEBSZ  |b 472779842 
029 1 |a NZ1  |b 15492294 
029 1 |a UKMGB  |b 018014894 
035 |a (OCoLC)834589785  |z (OCoLC)961658768  |z (OCoLC)962653845  |z (OCoLC)974770238  |z (OCoLC)974858714  |z (OCoLC)981885943  |z (OCoLC)1005639044  |z (OCoLC)1018009270  |z (OCoLC)1041780506  |z (OCoLC)1053493156  |z (OCoLC)1083554050  |z (OCoLC)1119111636  |z (OCoLC)1153520505  |z (OCoLC)1158928511  |z (OCoLC)1159686408  |z (OCoLC)1178852833  |z (OCoLC)1187183997  |z (OCoLC)1249256979 
037 |a 9781849517294  |b Packt Publishing Pvt. Ltd 
050 4 |a QA76.9.D5  |b P47 2013eb 
072 7 |a COM  |x 013000  |2 bisacsh 
072 7 |a COM  |x 014000  |2 bisacsh 
072 7 |a COM  |x 018000  |2 bisacsh 
072 7 |a COM  |x 067000  |2 bisacsh 
072 7 |a COM  |x 032000  |2 bisacsh 
072 7 |a COM  |x 037000  |2 bisacsh 
072 7 |a COM  |x 052000  |2 bisacsh 
082 0 4 |a 005.7565 
049 |a UAMI 
100 1 |a Perera, Srinath. 
245 1 0 |a Hadoop MapReduce cookbook :  |b recipes for analyzing large and complex datasets with Hadoop MapReduce /  |c Srinath Perera, Thilina Gunarathne. 
260 |a Birmingham :  |b Packt Pub.,  |c 2013. 
300 |a 1 online resource (iv, 284 pages) :  |b illustrations 
336 |a text  |b txt  |2 rdacontent 
337 |a computer  |b c  |2 rdamedia 
338 |a online resource  |b cr  |2 rdacarrier 
490 1 |a Community experience distilled 
500 |a Includes index. 
505 0 |a Cover; Copyright; Credits; About the Authors; About the Reviewers; www.PacktPub.com; Table of Contents; Preface; Chapter 1: Getting Hadoop Up and Running in a Cluster; Introduction; Setting up Hadoop in your machine; Writing a WordCount MapReduce sample, bundling it, and running it using standalone; Hadoop; Adding the combiner step to the WordCount MapReduce program; Setting up HDFS; Using HDFS monitoring UI; HDFS basic command-line file operations; Setting Hadoop in a distributed cluster environment; Running WordCount program in a distributed cluster environment 
505 8 |a Using MapReduce monitoring UIChapter 2: Advanced HDFS; Introduction; Benchmarking HDFS; Adding a new DataNode; Decommissioning DataNodes; Using multiple disks/volumes and limiting HDFS disk usage; Setting HDFS block size; Setting the file replication factor; Using HDFS Java API; Using HDFS C API (libhdfs); Mounting HDFS (Fuse-DFS); Merging files in HDFS; Chapter 3: Advanced Hadoop MapReduce Administration; Introduction; Tuning Hadoop configurations for cluster deployments; Running benchmarks to verify the Hadoop installation; Reusing Java VMs to improve the performance 
505 8 |a Fault tolerance and speculative executionDebug scripts -- analyzing task failures; Setting failure percentages and skipping bad records; Shared-user Hadoop clusters -- using fair and other schedulers; Hadoop security -- integrating with Kerberos; Using the Hadoop Tool interface; Chapter 4: Developing Complex Hadoop MapReduce Applications; Introduction; Choosing appropriate Hadoop data types; Implementing a custom Hadoop Writable data type; Implementing a custom Hadoop key type; Emitting data of different value types from a mapper; Choosing a suitable Hadoop InputFormat for your input data format 
505 8 |a Adding support for new input data formats -- implementing a custom InputFormatFormatting the results of MapReduce computations -- using Hadoop; OutputFormats; Hadoop intermediate (map to reduce) data partitioning; Broadcasting and distributing shared resources to tasks in a MapReduce; job -- Hadoop DistributedCache; Using Hadoop with legacy applications -- Hadoop Streaming; Adding dependencies between MapReduce jobs; Hadoop counters for reporting custom metrics; Chapter 5: Hadoop Ecosystem; Introduction; Installing HBase; Data random access using Java client APIs 
505 8 |a Running MapReduce jobs on HBase (table input/output)Installing Pig; Running your first Pig command; Set operations (join, union) and sorting with Pig; Installing Hive; Running SQL-style query with Hive; Performing a join with Hive; Installing Mahout; Running K-means with Mahout; Visualizing K-means results; Chapter 6: Analytics; Introduction; Simple analytics using MapReduce; Performing Group-By using MapReduce; Calculating frequency distributions and sorting using MapReduce; Plotting the Hadoop results using GNU Plot; Calculating histograms using MapReduce 
520 |a Individual self-contained code recipes. Solve specific problems using individual recipes, or work through the book to develop your capabilities. If you are a big data enthusiast and striving to use Hadoop to solve your problems, this book is for you. Aimed at Java programmers with some knowledge of Hadoop MapReduce, this is also a comprehensive reference for developers and system admins who want to get up to speed using Hadoop. 
590 |a eBooks on EBSCOhost  |b EBSCO eBook Subscription Academic Collection - Worldwide 
650 0 |a Electronic data processing  |x Distributed processing. 
650 0 |a File organization (Computer science) 
650 0 |a Cloud computing. 
650 0 |a Open source software. 
650 6 |a Traitement réparti. 
650 6 |a Fichiers (Informatique)  |x Organisation. 
650 6 |a Infonuagique. 
650 6 |a Logiciels libres. 
650 7 |a COMPUTERS  |x Computer Literacy.  |2 bisacsh 
650 7 |a COMPUTERS  |x Computer Science.  |2 bisacsh 
650 7 |a COMPUTERS  |x Data Processing.  |2 bisacsh 
650 7 |a COMPUTERS  |x Hardware  |x General.  |2 bisacsh 
650 7 |a COMPUTERS  |x Information Technology.  |2 bisacsh 
650 7 |a COMPUTERS  |x Machine Theory.  |2 bisacsh 
650 7 |a COMPUTERS  |x Reference.  |2 bisacsh 
650 7 |a Cloud computing  |2 fast 
650 7 |a Electronic data processing  |x Distributed processing  |2 fast 
650 7 |a File organization (Computer science)  |2 fast 
650 7 |a Open source software  |2 fast 
700 1 |a Gunarathne, Thilina. 
830 0 |a Community experience distilled. 
856 4 0 |u https://ebsco.uam.elogim.com/login.aspx?direct=true&scope=site&db=nlebk&AN=533226  |z Texto completo 
938 |a ebrary  |b EBRY  |n ebr10654596 
938 |a EBSCOhost  |b EBSC  |n 533226 
938 |a YBP Library Services  |b YANK  |n 10004403 
994 |a 92  |b IZTAP