GithubHelp home page GithubHelp logo

hadoop's Introduction

Hadoop Ecosystem

  • The project setup basic Hadoop Ecosystem includes: Apache Hive, Apache Spark, JDBC MySQL, Apache Sqoop.
  • Use Docker to install the project

Installation

  • Step 1: CD to /sqoop_server_hdfs
    cd ./sqoop_server_hdfs
    ./download.sh
  • ./download.sh will download packages from internet and saved in /sqoop_server_hdfs/packages (this is a folder contain all component).

  • Step 2: Execute command will run all container:

    docker-compose up --build -d
  • Step 3: Create and grant permission for user MySQL:
    GRANT ALL PRIVILEGES ON sakila.*  TO 'hdfs_part_1'@'%';
    CREATE DATABASE sakila;
  • Step 4: Import Sample data from sakila-db.zip:
    curl -Lo ./sakila-db.zip http://downloads.mysql.com/docs/sakila-db.zip
    unzip ./sakila-db.zip
    cat sakila-db/sakila-schema.sql | docker exec -i mysql_hdfs_part_1 mysql -u hdfs_part_1 --password=hdfs_part_1 sakila
    cat sakila-db/sakila-data.sql | docker exec -i mysql_hdfs_part_1 mysql -u hdfs_part_1 --password=hdfs_part_1 sakila

    rm -rf unzip sakila-db

    # Check sample data
    docker exec -i mysql_hdfs_part_1 mysql -u hdfs_part_1 --password=hdfs_part_1 -e "select film_id, title from sakila.film limit 1"
  • Finally, this is easy!

  • NOTE: you can edit project config from files in path /sqoop_server_hdfs/ like: hdfs-site.xml (namenode.dir, datanode.dir), hive-site.xml (ConnectionURL, ConnectionUserName, ConnectionPassword, JDBC Driver)

  • import.sh contains sqoop script import data from MySQL.

Authors

hadoop's People

Contributors

vinhphan812 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.