登録は簡単!. 無料です
または 登録 あなたのEメールアドレスで登録
Hadoop Stack により Mind Map: Hadoop Stack

1. 2. Clustering architectures

1.1. 2.1. What

1.2. 2.2. Why

1.2.1. Save cost

1.2.2. Volume of data can be processed

1.2.3. Speed, faster performance

1.3. 2.3. How

1.3.1. Data locality

1.3.2. Scalable

1.4. 2.4. Issues

1.4.1. Node failure

2. 3. Big Data

2.1. 3.1. Some statistics

2.2. 3.2. How big is big data

2.3. 3.3. Is this big data

2.4. 3.4. Challenges

2.4.1. Velocity

2.4.2. Volume

2.4.3. Variety

3. 5. Map Reduce

3.1. 5.1. What?

3.1.1. Refers to 2 separate distinct tasks that hadoop job performs

3.2. 5.2. Overview

3.3. 5.3. What should I do?

3.3.1. Write map function

3.3.2. Write reduce function

3.3.3. Hadoop takes care of issuing the commands

4. 7. Hadoop Overview

4.1. 7.1. What is Hadoop?

4.1.1. Set of frameworks

4.1.2. Used to develop apps that can run on big data platform

4.2. 7.2. How is it done?

4.2.1. Data is broken into smaller chunks

4.2.2. Data sets are distributed across different nodes

4.2.3. Processing logic is also distributed across different nodes

4.2.4. Each node process its logic and returns output

4.2.5. Data is aggregated and results are calculated

4.3. 7.3. Core

4.3.1. HDFS

4.3.2. Map Reduce

4.4. 7.4. Why Hadoop

4.4.1. Technology independent

4.4.2. Open source

4.4.3. Based on small commodity hardware

4.5. 7.5. When to use

4.5.1. Where data cannot be processed by a single machine

4.6. 7.6. When not to use

4.6.1. Where processing cannot be divided into multiple chunks

4.6.2. Where processing has to be done sequentially

4.6.3. Online transactions

4.7. 7.7. Hadoop history

4.7.1. Timeline

4.8. 7.8. Where is hadoop used?

4.8.1. 7.8.1. Users

4.8.1.1. IBM

4.8.1.2. Facebook

4.8.1.3. Applicable across any domain

4.8.1.4. EBay

4.8.2. 7.8.2. Applications

4.8.2.1. Detecting video change in patterns

5. 10. New Idea

6. 4. HDFS

6.1. 4.1. What is HDFS

6.1.1. Storage engine for hadoop

6.1.2. Designed for storing very large files

6.1.3. Runs on commonly available hardware

6.2. 4.2. The File system

6.2.1. File Disk

6.2.2. Distributing data

6.2.3. Default block size - 64 MB (normal-4-8KB)

6.2.4. Replication

6.3. 4.3. Accessing the file system

6.3.1. Via command line

6.3.2. Over HTTP

6.3.3. From Java

6.3.4. LIBHDFS (C language)

6.4. 4.4. Nodes

6.4.1. Name node

6.4.2. Worker node

7. 6. In Action

7.1. 6.1. Roles

7.1.1. 6.1.1. Administrators

7.1.1.1. Installation of the system

7.1.1.1.1. Single node cluster in UNIX

7.1.1.1.2. Using Elastic map reduce

7.1.1.1.3. Setup a multi-node cluster

7.1.1.1.4. In Windows

7.1.1.2. Monitor and manage the system

7.1.1.3. Tune adds nodes, make it scalable

7.1.2. 6.1.2. Developers

7.1.2.1. Design applications

7.1.2.2. Import and export data

8. 8. Architecture

8.1. 8.1. How it works

8.2. 8.2. Advantages to developers

8.2.1. Where the file is located

8.2.2. how to manage failures

8.2.3. how to break into multiple jobs

8.2.4. how to do programming for scaling

9. 9. Misc

9.1. 9.1. References

9.2. 9.2. Hadoop Technical stack

9.2.1. Diagram

9.3. 9.3. Limitations

9.3.1. Designed for sequential read, not random seek

9.3.2. Designed for write once and read many times

9.3.3. Hardware failures happen, but in the big picture, it is not noticeable.

10. 1. Hadoop Core

10.1. 1.1. Hive

10.1.1. Data warehouse infrastructure on top of Hadoop

10.1.2. Providing query and analysis API

10.2. 1.2. HBase

10.2.1. Non-relational database works on top of HDFS

10.2.2. Written in Java

10.3. 1.3. Pig

10.3.1. Create map reduce code easier using SQL like code

10.4. 1.4. Oozie

10.4.1. Workflow scheduler system manage Hadoop jobs

10.5. 1.5. Scoop

10.5.1. Tool used to transfer bulk data between relational database and Hadoop

10.6. 1.6. Flume

10.7. 1.7. Zookeeper