SlideShare a Scribd company logo
thanachart@imcinstitute.com1
Install Apache Hadoop for
Development/Production
using Opensource Distributions
October 2016
Dr.Thanachart Numnonda
IMC Institute
thanachart@imcinstitute.com
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Agenda
●
Introduction
●
Part 1: Hadoop Development Installation
●
Part 1A: Cloudera Quickstart on Cloud
●
Part 1B: Hortonworks Sandbox on Azure
●
Part 2: Hadoop Production
●
Install Cloudera Express Cluster on AWS
●
Part 3: Hadoop as a Service
●
Launch EMR cluster on AWS
Hive.apache.org
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
This hands-on lab aims to guide
a student to install Hadoop
for development using Sandbox
and for production on Clusters
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Hadoop Distribution
●
On-Premise
●
Pure Apache Hadoop
●
Cloudera
●
Hortonworks
●
MapR
●
Pivotal
●
IBM Infosphere BigInsight
●
On-Cloud (Hadoop as a Service)
●
Amazon EMR
●
Microsoft Azure HDInsight
●
Google Cloud Platform
Hive.apache.org
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
The Forrester Wave: Big Data Hadoop
Distributions Q1 2016
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
The Forrester Wave: Big Data Hadoop
Cloud Q1 2016
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Part 1: Hadoop Development
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Hadoop Development: Sandbox
●
Recommended
●
Cloudera Quickstart
●
Hortonworks Sandbox
●
On PC/Mac
●
Require to install VMWare Player or VirtualBox
●
On Linux Virtual Server
●
Need to install Docker Engine
●
Microsoft Azure has a Hortonworks Sandbox Image
which can easily launched.
Hive.apache.org
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
http://hortonworks.com/downloads/#sandbox
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
http://www.cloudera.com/downloads.html
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Part 1A: Install Cloudera Quickstart
on Cloud Virtual Server
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Hands-On
Launch a virtual server (EC2)
on Amazon Web Services
(Note: You can skip this session if you use your own
computer or another cloud service)
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Virtual Server
This lab will use a EC2 virtual server to install a
Cloudera Cluster using the following features:
Ubuntu Server 14.04 LTS
One m3.xLarge 4vCPU, 15 GB memory,80 GB
SSD
Security group: default
Keypair: imchadoop
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Select a EC2 service and click on Lunch Instance
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Select an Amazon Machine Image (AMI) and
Ubuntu Server 14.04 LTS (PV)
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Choose m3.xlarge Type virtual server
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Add Storage: 80 GB
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Name the instance
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Select Create an existing security group > Default
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Click Launch and choose imchadoop as a key pair
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Review an instance and rename one instance as a
master / click Connect for an instruction to connect
to the instance
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Connect to an instance from Mac/Linux
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Can also view details of the instance such as Public
IP and Private IP
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Connect to an instance from Windows using Putty
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Connect to the instance
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Hands-On: Install a Docker Engine
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Docker v.s. Hypervisor
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Update OS (Ubuntu)
●
Command: sudo apt-get update
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Docker Installation
●
Command: sudo apt-get install docker.io
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Docker commands:
●
docker images
●
docker ps
●
docker attach id
●
docker kill id
●
docker commit id
●
Exit from container
●
exit (exit & kill the running image)
●
Ctrl-P, Ctrl-Q (exit without killing the running image)
Hive.apache.org
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Install Cloudera Quickstart on
Docker Container
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Pull Cloudera Quickstart
$ sudo docker pull cloudera/quickstart:latest
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Verify the image was successfully pulled
$ sudo docker images
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Run Cloudera quickstart
$ sudo docker run --hostname=quickstart.cloudera
--privileged=true -t -i [OPTIONS] [IMAGE]
/usr/bin/docker-quickstart
Example: sudo docker run
--hostname=quickstart.cloudera --privileged=true -t -i -p
8888:8888 cloudera/quickstart /usr/bin/docker-quickstart
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Finding the EC2 instance's DNS
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Login to Hue
http://ec2-54-173-154-79.compute-1.amazonaws.com:8888
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Option: Launch a virtual server
on Microsoft Azure for Cloudera
Sandbox
(Note: You do not need to do this if you use your
own computer or another cloud service)
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Sign up for Visual Studio Dev Essential to get free
Azure credit.
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Sign in to Azure Portal
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Virtual Server
This lab will use an Azure virtual server to install a
Cloudera Quickstart Docker using the following
features:
Ubuntu Server 14.04 LTS
DS3_V2 Standard 4 Core, 14 GB memory,28
GB SSD
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Select New => Virtual Machines => Virtual Machines
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
On the Basics page, enter:
1. a name for the VM
2. a username for the Admin User
3. the Authentication Type set to password
4. a password
5. a resource group name
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Choose DS3_v2 Standard
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Setting the inbound port for Hue (8888)
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Get the IP address
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Connect to an instance from Mac/Linux
ssh -i ~/.ssh/id_rsa imcinstitute@104.210.146.182
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Connect to an instance from Windows using Putty
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Part 1B: Install Hortonworks Sandbox
on Azure
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Sign up for Visual Studio Dev Essential to get free
Azure credit.
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Sign in to Azure Portal
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Uncompress the docker zip file
$ gunzip HDP_2.5_docker.tar.gz
$ sudo docker load < HDP_2.5_docker.tar
(This may take several minutes)
Load the Docker image
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Virtual Server
This lab will use an Azure virtual server to install a
Hortonworks Sandbox using the following features:
Hortonworks Sandbox with HDP 2.4
DS3_V2 Standard 4 Core, 14 GB memory,28
GB SSD
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Select New => Search => Hortonworks Sandbox
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Select Create
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
On the Basics page, enter:
1. a name for the VM
2. a username for the Admin User
3. the Authentication Type set to password
4. a password
5. a resource group name
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Choose DS3_v2 Standard
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Set configuration as default
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Get a virtual server public IP
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Connect to an instance from Mac/Linux
ssh username@52.163.63.141
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Connect to an instance from Windows using Putty
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Login to Hortonworks >> ip_address:8888
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Login to Ambari >> ip_address:8080
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Part 2: Hadoop Production
on Cloud Cluster
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Hadoop Production: Cluster
●
Recommended
●
Cloudera Express
●
Hortonworks
●
Cloudera Express
●
Install a cluster on 4 EC2 AWS
●
Hortonworks Data Platform
●
Install a cluster on Microsoft Azure using Marketplace
Hive.apache.org
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Install Cloudera Cluster
on AWS
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Cloudera VM
This lab will use a EC2 virtual server on AWS to install
Cloudera.
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Hands-On: Launch a virtual server
on EC2 Amazon Web Services
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Hands-On: Launch a virtual server
on EC2 Amazon Web Services
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Virtual Server
This lab will use a EC2 virtual server to install a
Cloudera Cluster using the following features:
Ubuntu Server 14.04 LTS
Four m3.xLarge 4vCPU, 15 GB memory,80 GB
SSD
Security group: default
Keypair: imchadoop
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Select a EC2 service and click on Lunch Instance
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Select an Amazon Machine Image (AMI) and
Ubuntu Server 14.04 LTS (PV)
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Choose m3.xlarge Type virtual server
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Set the number of Instance to 4
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Add Storage: 80 GB
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Name the instance
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Select Create a new security group > Add Rule as
follows
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Click Launch and choose imchadoop as a key pair
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Review an instance and rename one instance as a
master / click Connect for an instruction to connect
to the instance
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Connect to an instance from Mac/Linux
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Can also view details of the instance such as Public
IP and Private IP
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Connect to an instance from Windows using Putty
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Connect to the instance
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Hands-On: Installing Cloudera on EC2
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Download Cloudera Manager
1) Type command >wget
http://archive.cloudera.com/cm5/installer/latest/cloudera-manager-installer.bin
2) Type command > chmod u+x cloudera-manager-installer.bin
3) Type command > sudo ./cloudera-manager-installer.bin
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Login to Cloudera Manager
Wait several minutes for the Cloudera Manager Server to complete its startup.
Then running web browser: http:// public-dns: 7180
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Accept the User License terms
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Select Cloudera Express Edition
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Provide your 4 instances <private ip>
addresses in the cluster
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Select install Oracle Java & Java unlimited
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Define user as ubuntu & Browse the private key (imchadoop.pem) file which we
have downloaded in the previous part. Keep Passphrase as blank
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Finish
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Running Hue
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Part 3: Hadoop as a Service
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Hadoop Production: on Cloud
●
Recommended
●
Amazon EMR
●
Azure HDInsight
●
Amazon EMR
●
Install a cluster on 4 EC2 AWS
●
Azure HD Insight
●
Install a cluster on 4 Vitual Servers Microsoft Azure
Hive.apache.org
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Hands-On: Launch a EMR Cluster
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Select the EMR service
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Select Create Cluster
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Assign configuration
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Choose EC2 key pair
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
View SSH login instruction
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Connect to the instance
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Thanachart Numnonda, thanachart@imcinstitute.com Oct 2016Hadoop Installation
Thank you
www.imcinstitute.com
www.facebook.com/imcinstitute

More Related Content

What's hot

Hadoop Workshop using Cloudera on Amazon EC2
Hadoop Workshop using Cloudera on Amazon EC2Hadoop Workshop using Cloudera on Amazon EC2
Hadoop Workshop using Cloudera on Amazon EC2
IMC Institute
 
Big Data on Public Cloud Using Cloudera on GoGrid & Amazon EMR
Big Data on Public Cloud Using Cloudera on GoGrid & Amazon EMRBig Data on Public Cloud Using Cloudera on GoGrid & Amazon EMR
Big Data on Public Cloud Using Cloudera on GoGrid & Amazon EMR
IMC Institute
 
Thailand Hadoop Big Data Challenge #1
Thailand Hadoop Big Data Challenge #1Thailand Hadoop Big Data Challenge #1
Thailand Hadoop Big Data Challenge #1
IMC Institute
 
How to Build Tools for Data Scientists That Don't Suck
How to Build Tools for Data Scientists That Don't SuckHow to Build Tools for Data Scientists That Don't Suck
How to Build Tools for Data Scientists That Don't Suck
Diana Tkachenko
 
Real-time Big Data Processing with Storm
Real-time Big Data Processing with StormReal-time Big Data Processing with Storm
Real-time Big Data Processing with Storm
viirya
 
Data Science Lab Meetup: Cassandra and Spark
Data Science Lab Meetup: Cassandra and SparkData Science Lab Meetup: Cassandra and Spark
Data Science Lab Meetup: Cassandra and Spark
Christopher Batey
 
Linux intermediate level
Linux intermediate levelLinux intermediate level
Linux intermediate level
Madhavendra Dutt
 
Real-Time Big Data at In-Memory Speed, Using Storm
Real-Time Big Data at In-Memory Speed, Using StormReal-Time Big Data at In-Memory Speed, Using Storm
Real-Time Big Data at In-Memory Speed, Using Storm
Nati Shalom
 
Real time big data analytics with Storm by Ron Bodkin of Think Big Analytics
Real time big data analytics with Storm by Ron Bodkin of Think Big AnalyticsReal time big data analytics with Storm by Ron Bodkin of Think Big Analytics
Real time big data analytics with Storm by Ron Bodkin of Think Big Analytics
Data Con LA
 
One Grid to rule them all: Building a Multi-tenant Data Cloud with YARN
One Grid to rule them all: Building a Multi-tenant Data Cloud with YARNOne Grid to rule them all: Building a Multi-tenant Data Cloud with YARN
One Grid to rule them all: Building a Multi-tenant Data Cloud with YARNDataWorks Summit
 
API analytics with Redis and Google Bigquery. NoSQL matters edition
API analytics with Redis and Google Bigquery. NoSQL matters editionAPI analytics with Redis and Google Bigquery. NoSQL matters edition
API analytics with Redis and Google Bigquery. NoSQL matters edition
javier ramirez
 
How to test infrastructure code: automated testing for Terraform, Kubernetes,...
How to test infrastructure code: automated testing for Terraform, Kubernetes,...How to test infrastructure code: automated testing for Terraform, Kubernetes,...
How to test infrastructure code: automated testing for Terraform, Kubernetes,...
Yevgeniy Brikman
 
Real Time Graph Computations in Storm, Neo4J, Python - PyCon India 2013
Real Time Graph Computations in Storm, Neo4J, Python - PyCon India 2013Real Time Graph Computations in Storm, Neo4J, Python - PyCon India 2013
Real Time Graph Computations in Storm, Neo4J, Python - PyCon India 2013
Sonal Raj
 
Realtimeanalyticsattwitter strata2011-110204123031-phpapp02
Realtimeanalyticsattwitter strata2011-110204123031-phpapp02Realtimeanalyticsattwitter strata2011-110204123031-phpapp02
Realtimeanalyticsattwitter strata2011-110204123031-phpapp02
matrixvn
 
Apache Arrowフォーマットはなぜ速いのか
Apache Arrowフォーマットはなぜ速いのかApache Arrowフォーマットはなぜ速いのか
Apache Arrowフォーマットはなぜ速いのか
Kouhei Sutou
 
Final terraform
Final terraformFinal terraform
Final terraform
Gourav Varma
 
Comprehensive Terraform Training
Comprehensive Terraform TrainingComprehensive Terraform Training
Comprehensive Terraform Training
Yevgeniy Brikman
 
Scaling Apache Storm (Hadoop Summit 2015)
Scaling Apache Storm (Hadoop Summit 2015)Scaling Apache Storm (Hadoop Summit 2015)
Scaling Apache Storm (Hadoop Summit 2015)
Robert Evans
 
Terraform in deployment pipeline
Terraform in deployment pipelineTerraform in deployment pipeline
Terraform in deployment pipeline
Anton Babenko
 
Multi-tenant Apache Storm as a service
Multi-tenant Apache Storm as a serviceMulti-tenant Apache Storm as a service
Multi-tenant Apache Storm as a service
Robert Evans
 

What's hot (20)

Hadoop Workshop using Cloudera on Amazon EC2
Hadoop Workshop using Cloudera on Amazon EC2Hadoop Workshop using Cloudera on Amazon EC2
Hadoop Workshop using Cloudera on Amazon EC2
 
Big Data on Public Cloud Using Cloudera on GoGrid & Amazon EMR
Big Data on Public Cloud Using Cloudera on GoGrid & Amazon EMRBig Data on Public Cloud Using Cloudera on GoGrid & Amazon EMR
Big Data on Public Cloud Using Cloudera on GoGrid & Amazon EMR
 
Thailand Hadoop Big Data Challenge #1
Thailand Hadoop Big Data Challenge #1Thailand Hadoop Big Data Challenge #1
Thailand Hadoop Big Data Challenge #1
 
How to Build Tools for Data Scientists That Don't Suck
How to Build Tools for Data Scientists That Don't SuckHow to Build Tools for Data Scientists That Don't Suck
How to Build Tools for Data Scientists That Don't Suck
 
Real-time Big Data Processing with Storm
Real-time Big Data Processing with StormReal-time Big Data Processing with Storm
Real-time Big Data Processing with Storm
 
Data Science Lab Meetup: Cassandra and Spark
Data Science Lab Meetup: Cassandra and SparkData Science Lab Meetup: Cassandra and Spark
Data Science Lab Meetup: Cassandra and Spark
 
Linux intermediate level
Linux intermediate levelLinux intermediate level
Linux intermediate level
 
Real-Time Big Data at In-Memory Speed, Using Storm
Real-Time Big Data at In-Memory Speed, Using StormReal-Time Big Data at In-Memory Speed, Using Storm
Real-Time Big Data at In-Memory Speed, Using Storm
 
Real time big data analytics with Storm by Ron Bodkin of Think Big Analytics
Real time big data analytics with Storm by Ron Bodkin of Think Big AnalyticsReal time big data analytics with Storm by Ron Bodkin of Think Big Analytics
Real time big data analytics with Storm by Ron Bodkin of Think Big Analytics
 
One Grid to rule them all: Building a Multi-tenant Data Cloud with YARN
One Grid to rule them all: Building a Multi-tenant Data Cloud with YARNOne Grid to rule them all: Building a Multi-tenant Data Cloud with YARN
One Grid to rule them all: Building a Multi-tenant Data Cloud with YARN
 
API analytics with Redis and Google Bigquery. NoSQL matters edition
API analytics with Redis and Google Bigquery. NoSQL matters editionAPI analytics with Redis and Google Bigquery. NoSQL matters edition
API analytics with Redis and Google Bigquery. NoSQL matters edition
 
How to test infrastructure code: automated testing for Terraform, Kubernetes,...
How to test infrastructure code: automated testing for Terraform, Kubernetes,...How to test infrastructure code: automated testing for Terraform, Kubernetes,...
How to test infrastructure code: automated testing for Terraform, Kubernetes,...
 
Real Time Graph Computations in Storm, Neo4J, Python - PyCon India 2013
Real Time Graph Computations in Storm, Neo4J, Python - PyCon India 2013Real Time Graph Computations in Storm, Neo4J, Python - PyCon India 2013
Real Time Graph Computations in Storm, Neo4J, Python - PyCon India 2013
 
Realtimeanalyticsattwitter strata2011-110204123031-phpapp02
Realtimeanalyticsattwitter strata2011-110204123031-phpapp02Realtimeanalyticsattwitter strata2011-110204123031-phpapp02
Realtimeanalyticsattwitter strata2011-110204123031-phpapp02
 
Apache Arrowフォーマットはなぜ速いのか
Apache Arrowフォーマットはなぜ速いのかApache Arrowフォーマットはなぜ速いのか
Apache Arrowフォーマットはなぜ速いのか
 
Final terraform
Final terraformFinal terraform
Final terraform
 
Comprehensive Terraform Training
Comprehensive Terraform TrainingComprehensive Terraform Training
Comprehensive Terraform Training
 
Scaling Apache Storm (Hadoop Summit 2015)
Scaling Apache Storm (Hadoop Summit 2015)Scaling Apache Storm (Hadoop Summit 2015)
Scaling Apache Storm (Hadoop Summit 2015)
 
Terraform in deployment pipeline
Terraform in deployment pipelineTerraform in deployment pipeline
Terraform in deployment pipeline
 
Multi-tenant Apache Storm as a service
Multi-tenant Apache Storm as a serviceMulti-tenant Apache Storm as a service
Multi-tenant Apache Storm as a service
 

Viewers also liked

An example Hadoop Install
An example Hadoop InstallAn example Hadoop Install
An example Hadoop Install
Mike Frampton
 
Introduction to Apache Sqoop
Introduction to Apache SqoopIntroduction to Apache Sqoop
Introduction to Apache Sqoop
Avkash Chauhan
 
New Data Transfer Tools for Hadoop: Sqoop 2
New Data Transfer Tools for Hadoop: Sqoop 2New Data Transfer Tools for Hadoop: Sqoop 2
New Data Transfer Tools for Hadoop: Sqoop 2DataWorks Summit
 
Apache Sqoop: A Data Transfer Tool for Hadoop
Apache Sqoop: A Data Transfer Tool for HadoopApache Sqoop: A Data Transfer Tool for Hadoop
Apache Sqoop: A Data Transfer Tool for Hadoop
Cloudera, Inc.
 
Big data: Loading your data with flume and sqoop
Big data:  Loading your data with flume and sqoopBig data:  Loading your data with flume and sqoop
Big data: Loading your data with flume and sqoop
Christophe Marchal
 
Mobile User and App Analytics in China
Mobile User and App Analytics in ChinaMobile User and App Analytics in China
Mobile User and App Analytics in China
IMC Institute
 
Thai Software & Software Market Survey 2015
Thai Software & Software Market Survey 2015Thai Software & Software Market Survey 2015
Thai Software & Software Market Survey 2015
IMC Institute
 
ITSS Overview
ITSS OverviewITSS Overview
ITSS Overview
IMC Institute
 
Big Data Analytics using Mahout
Big Data Analytics using MahoutBig Data Analytics using Mahout
Big Data Analytics using Mahout
IMC Institute
 
Advanced Sqoop
Advanced Sqoop Advanced Sqoop
Advanced Sqoop
Yogesh Kulkarni
 
สมุดกิจกรรม Code for Kids
สมุดกิจกรรม Code for Kidsสมุดกิจกรรม Code for Kids
สมุดกิจกรรม Code for Kids
IMC Institute
 
Apache sqoop with an use case
Apache sqoop with an use caseApache sqoop with an use case
Apache sqoop with an use case
Davin Abraham
 
Machine Learning using Apache Spark MLlib
Machine Learning using Apache Spark MLlibMachine Learning using Apache Spark MLlib
Machine Learning using Apache Spark MLlib
IMC Institute
 
Flume vs. kafka
Flume vs. kafkaFlume vs. kafka
Flume vs. kafka
Omid Vahdaty
 
Kanban boards step by step
Kanban boards step by stepKanban boards step by step
Kanban boards step by step
Giulio Roggero
 

Viewers also liked (15)

An example Hadoop Install
An example Hadoop InstallAn example Hadoop Install
An example Hadoop Install
 
Introduction to Apache Sqoop
Introduction to Apache SqoopIntroduction to Apache Sqoop
Introduction to Apache Sqoop
 
New Data Transfer Tools for Hadoop: Sqoop 2
New Data Transfer Tools for Hadoop: Sqoop 2New Data Transfer Tools for Hadoop: Sqoop 2
New Data Transfer Tools for Hadoop: Sqoop 2
 
Apache Sqoop: A Data Transfer Tool for Hadoop
Apache Sqoop: A Data Transfer Tool for HadoopApache Sqoop: A Data Transfer Tool for Hadoop
Apache Sqoop: A Data Transfer Tool for Hadoop
 
Big data: Loading your data with flume and sqoop
Big data:  Loading your data with flume and sqoopBig data:  Loading your data with flume and sqoop
Big data: Loading your data with flume and sqoop
 
Mobile User and App Analytics in China
Mobile User and App Analytics in ChinaMobile User and App Analytics in China
Mobile User and App Analytics in China
 
Thai Software & Software Market Survey 2015
Thai Software & Software Market Survey 2015Thai Software & Software Market Survey 2015
Thai Software & Software Market Survey 2015
 
ITSS Overview
ITSS OverviewITSS Overview
ITSS Overview
 
Big Data Analytics using Mahout
Big Data Analytics using MahoutBig Data Analytics using Mahout
Big Data Analytics using Mahout
 
Advanced Sqoop
Advanced Sqoop Advanced Sqoop
Advanced Sqoop
 
สมุดกิจกรรม Code for Kids
สมุดกิจกรรม Code for Kidsสมุดกิจกรรม Code for Kids
สมุดกิจกรรม Code for Kids
 
Apache sqoop with an use case
Apache sqoop with an use caseApache sqoop with an use case
Apache sqoop with an use case
 
Machine Learning using Apache Spark MLlib
Machine Learning using Apache Spark MLlibMachine Learning using Apache Spark MLlib
Machine Learning using Apache Spark MLlib
 
Flume vs. kafka
Flume vs. kafkaFlume vs. kafka
Flume vs. kafka
 
Kanban boards step by step
Kanban boards step by stepKanban boards step by step
Kanban boards step by step
 

Similar to Install Apache Hadoop for Development/Production

Using Quantiacs on Your Machine
Using Quantiacs on Your MachineUsing Quantiacs on Your Machine
Using Quantiacs on Your Machine
Quantiacs
 
Docker Novosibirsk Meetup #3 - Docker in Production
Docker Novosibirsk Meetup #3 - Docker in ProductionDocker Novosibirsk Meetup #3 - Docker in Production
Docker Novosibirsk Meetup #3 - Docker in Production
Gianluca Arbezzano
 
Installing Lamp Stack on Ubuntu Instance
Installing Lamp Stack on Ubuntu InstanceInstalling Lamp Stack on Ubuntu Instance
Installing Lamp Stack on Ubuntu Instance
kamarul kawnayeen
 
Docker Workshop for beginner
Docker Workshop for beginnerDocker Workshop for beginner
Docker Workshop for beginner
Jirayut Nimsaeng
 
Docker engine - Indroduc
Docker engine - IndroducDocker engine - Indroduc
Docker engine - Indroduc
Al Gifari
 
From Zero to Hero - Nexinto
From Zero to Hero - NexintoFrom Zero to Hero - Nexinto
From Zero to Hero - Nexinto
Johann Paulus Almeida
 
Automating the CI / CD pipeline of your containerized applications
Automating the CI / CD pipeline of your containerized applicationsAutomating the CI / CD pipeline of your containerized applications
Automating the CI / CD pipeline of your containerized applications
Kontena, Inc.
 
AMIMOTO: WordPress + Amazon Web Services Hands-on WARSAW
AMIMOTO: WordPress + Amazon Web Services Hands-on WARSAW AMIMOTO: WordPress + Amazon Web Services Hands-on WARSAW
AMIMOTO: WordPress + Amazon Web Services Hands-on WARSAW
Kel
 
AWS EC2 Ubuntu Instance - Step-by-Step Deployment Guide
AWS EC2 Ubuntu Instance - Step-by-Step Deployment GuideAWS EC2 Ubuntu Instance - Step-by-Step Deployment Guide
AWS EC2 Ubuntu Instance - Step-by-Step Deployment Guide
RapidValue
 
WordPress + Amazon Web Services Hands-on WARSAW
WordPress + Amazon Web Services Hands-on WARSAWWordPress + Amazon Web Services Hands-on WARSAW
WordPress + Amazon Web Services Hands-on WARSAW
Matt Pilarski
 
AMIMOTO: WordPress + Amazon Web Services Hands-on PARIS
AMIMOTO: WordPress + Amazon Web Services Hands-on PARISAMIMOTO: WordPress + Amazon Web Services Hands-on PARIS
AMIMOTO: WordPress + Amazon Web Services Hands-on PARIS
Kel
 
Hammr Project Update: Machine Images and Docker Containers for your Cloud, OW...
Hammr Project Update: Machine Images and Docker Containers for your Cloud, OW...Hammr Project Update: Machine Images and Docker Containers for your Cloud, OW...
Hammr Project Update: Machine Images and Docker Containers for your Cloud, OW...
OW2
 
Developing and Deploying PHP with Docker
Developing and Deploying PHP with DockerDeveloping and Deploying PHP with Docker
Developing and Deploying PHP with DockerPatrick Mizer
 
It Works On My Machine: Vagrant for Software Development
It Works On My Machine: Vagrant for Software DevelopmentIt Works On My Machine: Vagrant for Software Development
It Works On My Machine: Vagrant for Software Development
Carlos Perez
 
Install and manage windows nano server 2016 step by step
Install and manage windows nano server 2016 step by stepInstall and manage windows nano server 2016 step by step
Install and manage windows nano server 2016 step by step
Ahmed Abdelwahed
 
[Hands-on 필수준비사항] Oracle Developer Meetup 3rd | Jan 27th, 2018
[Hands-on 필수준비사항] Oracle Developer Meetup 3rd | Jan 27th, 2018[Hands-on 필수준비사항] Oracle Developer Meetup 3rd | Jan 27th, 2018
[Hands-on 필수준비사항] Oracle Developer Meetup 3rd | Jan 27th, 2018
Oracle Korea
 
App Deployment on Cloud
App Deployment on CloudApp Deployment on Cloud
App Deployment on Cloud
Ajey Pratap Singh
 
DockerDublin Meetup - News about Docker 1.13
DockerDublin Meetup -  News about Docker 1.13DockerDublin Meetup -  News about Docker 1.13
DockerDublin Meetup - News about Docker 1.13
Gianluca Arbezzano
 
Will the Apache Maturity Model save your project?
Will the Apache Maturity Model save your project?Will the Apache Maturity Model save your project?
Will the Apache Maturity Model save your project?
Bertrand Delacretaz
 
OpenStack Murano introduction
OpenStack Murano introductionOpenStack Murano introduction
OpenStack Murano introduction
Victor Zhang
 

Similar to Install Apache Hadoop for Development/Production (20)

Using Quantiacs on Your Machine
Using Quantiacs on Your MachineUsing Quantiacs on Your Machine
Using Quantiacs on Your Machine
 
Docker Novosibirsk Meetup #3 - Docker in Production
Docker Novosibirsk Meetup #3 - Docker in ProductionDocker Novosibirsk Meetup #3 - Docker in Production
Docker Novosibirsk Meetup #3 - Docker in Production
 
Installing Lamp Stack on Ubuntu Instance
Installing Lamp Stack on Ubuntu InstanceInstalling Lamp Stack on Ubuntu Instance
Installing Lamp Stack on Ubuntu Instance
 
Docker Workshop for beginner
Docker Workshop for beginnerDocker Workshop for beginner
Docker Workshop for beginner
 
Docker engine - Indroduc
Docker engine - IndroducDocker engine - Indroduc
Docker engine - Indroduc
 
From Zero to Hero - Nexinto
From Zero to Hero - NexintoFrom Zero to Hero - Nexinto
From Zero to Hero - Nexinto
 
Automating the CI / CD pipeline of your containerized applications
Automating the CI / CD pipeline of your containerized applicationsAutomating the CI / CD pipeline of your containerized applications
Automating the CI / CD pipeline of your containerized applications
 
AMIMOTO: WordPress + Amazon Web Services Hands-on WARSAW
AMIMOTO: WordPress + Amazon Web Services Hands-on WARSAW AMIMOTO: WordPress + Amazon Web Services Hands-on WARSAW
AMIMOTO: WordPress + Amazon Web Services Hands-on WARSAW
 
AWS EC2 Ubuntu Instance - Step-by-Step Deployment Guide
AWS EC2 Ubuntu Instance - Step-by-Step Deployment GuideAWS EC2 Ubuntu Instance - Step-by-Step Deployment Guide
AWS EC2 Ubuntu Instance - Step-by-Step Deployment Guide
 
WordPress + Amazon Web Services Hands-on WARSAW
WordPress + Amazon Web Services Hands-on WARSAWWordPress + Amazon Web Services Hands-on WARSAW
WordPress + Amazon Web Services Hands-on WARSAW
 
AMIMOTO: WordPress + Amazon Web Services Hands-on PARIS
AMIMOTO: WordPress + Amazon Web Services Hands-on PARISAMIMOTO: WordPress + Amazon Web Services Hands-on PARIS
AMIMOTO: WordPress + Amazon Web Services Hands-on PARIS
 
Hammr Project Update: Machine Images and Docker Containers for your Cloud, OW...
Hammr Project Update: Machine Images and Docker Containers for your Cloud, OW...Hammr Project Update: Machine Images and Docker Containers for your Cloud, OW...
Hammr Project Update: Machine Images and Docker Containers for your Cloud, OW...
 
Developing and Deploying PHP with Docker
Developing and Deploying PHP with DockerDeveloping and Deploying PHP with Docker
Developing and Deploying PHP with Docker
 
It Works On My Machine: Vagrant for Software Development
It Works On My Machine: Vagrant for Software DevelopmentIt Works On My Machine: Vagrant for Software Development
It Works On My Machine: Vagrant for Software Development
 
Install and manage windows nano server 2016 step by step
Install and manage windows nano server 2016 step by stepInstall and manage windows nano server 2016 step by step
Install and manage windows nano server 2016 step by step
 
[Hands-on 필수준비사항] Oracle Developer Meetup 3rd | Jan 27th, 2018
[Hands-on 필수준비사항] Oracle Developer Meetup 3rd | Jan 27th, 2018[Hands-on 필수준비사항] Oracle Developer Meetup 3rd | Jan 27th, 2018
[Hands-on 필수준비사항] Oracle Developer Meetup 3rd | Jan 27th, 2018
 
App Deployment on Cloud
App Deployment on CloudApp Deployment on Cloud
App Deployment on Cloud
 
DockerDublin Meetup - News about Docker 1.13
DockerDublin Meetup -  News about Docker 1.13DockerDublin Meetup -  News about Docker 1.13
DockerDublin Meetup - News about Docker 1.13
 
Will the Apache Maturity Model save your project?
Will the Apache Maturity Model save your project?Will the Apache Maturity Model save your project?
Will the Apache Maturity Model save your project?
 
OpenStack Murano introduction
OpenStack Murano introductionOpenStack Murano introduction
OpenStack Murano introduction
 

More from IMC Institute

นิตยสาร Digital Trends ฉบับที่ 14
นิตยสาร Digital Trends ฉบับที่ 14นิตยสาร Digital Trends ฉบับที่ 14
นิตยสาร Digital Trends ฉบับที่ 14
IMC Institute
 
Digital trends Vol 4 No. 13 Sep-Dec 2019
Digital trends Vol 4 No. 13  Sep-Dec 2019Digital trends Vol 4 No. 13  Sep-Dec 2019
Digital trends Vol 4 No. 13 Sep-Dec 2019
IMC Institute
 
บทความ The evolution of AI
บทความ The evolution of AIบทความ The evolution of AI
บทความ The evolution of AI
IMC Institute
 
IT Trends eMagazine Vol 4. No.12
IT Trends eMagazine  Vol 4. No.12IT Trends eMagazine  Vol 4. No.12
IT Trends eMagazine Vol 4. No.12
IMC Institute
 
เพราะเหตุใด Digitization ไม่ตอบโจทย์ Digital Transformation
เพราะเหตุใด Digitization ไม่ตอบโจทย์ Digital Transformationเพราะเหตุใด Digitization ไม่ตอบโจทย์ Digital Transformation
เพราะเหตุใด Digitization ไม่ตอบโจทย์ Digital Transformation
IMC Institute
 
IT Trends 2019: Putting Digital Transformation to Work
IT Trends 2019: Putting Digital Transformation to WorkIT Trends 2019: Putting Digital Transformation to Work
IT Trends 2019: Putting Digital Transformation to Work
IMC Institute
 
มูลค่าตลาดดิจิทัลไทย 3 อุตสาหกรรม
มูลค่าตลาดดิจิทัลไทย 3 อุตสาหกรรมมูลค่าตลาดดิจิทัลไทย 3 อุตสาหกรรม
มูลค่าตลาดดิจิทัลไทย 3 อุตสาหกรรม
IMC Institute
 
IT Trends eMagazine Vol 4. No.11
IT Trends eMagazine  Vol 4. No.11IT Trends eMagazine  Vol 4. No.11
IT Trends eMagazine Vol 4. No.11
IMC Institute
 
แนวทางการทำ Digital transformation
แนวทางการทำ Digital transformationแนวทางการทำ Digital transformation
แนวทางการทำ Digital transformation
IMC Institute
 
บทความ The New Silicon Valley
บทความ The New Silicon Valleyบทความ The New Silicon Valley
บทความ The New Silicon Valley
IMC Institute
 
นิตยสาร IT Trends ของ IMC Institute ฉบับที่ 10
นิตยสาร IT Trends ของ  IMC Institute  ฉบับที่ 10นิตยสาร IT Trends ของ  IMC Institute  ฉบับที่ 10
นิตยสาร IT Trends ของ IMC Institute ฉบับที่ 10
IMC Institute
 
แนวทางการทำ Digital transformation
แนวทางการทำ Digital transformationแนวทางการทำ Digital transformation
แนวทางการทำ Digital transformation
IMC Institute
 
The Power of Big Data for a new economy (Sample)
The Power of Big Data for a new economy (Sample)The Power of Big Data for a new economy (Sample)
The Power of Big Data for a new economy (Sample)
IMC Institute
 
บทความ Robotics แนวโน้มใหม่สู่บริการเฉพาะทาง
บทความ Robotics แนวโน้มใหม่สู่บริการเฉพาะทาง บทความ Robotics แนวโน้มใหม่สู่บริการเฉพาะทาง
บทความ Robotics แนวโน้มใหม่สู่บริการเฉพาะทาง
IMC Institute
 
IT Trends eMagazine Vol 3. No.9
IT Trends eMagazine  Vol 3. No.9 IT Trends eMagazine  Vol 3. No.9
IT Trends eMagazine Vol 3. No.9
IMC Institute
 
Thailand software & software market survey 2016
Thailand software & software market survey 2016Thailand software & software market survey 2016
Thailand software & software market survey 2016
IMC Institute
 
Developing Business Blockchain Applications on Hyperledger
Developing Business  Blockchain Applications on Hyperledger Developing Business  Blockchain Applications on Hyperledger
Developing Business Blockchain Applications on Hyperledger
IMC Institute
 
Digital transformation @thanachart.org
Digital transformation @thanachart.orgDigital transformation @thanachart.org
Digital transformation @thanachart.org
IMC Institute
 
บทความ Big Data จากบล็อก thanachart.org
บทความ Big Data จากบล็อก thanachart.orgบทความ Big Data จากบล็อก thanachart.org
บทความ Big Data จากบล็อก thanachart.org
IMC Institute
 
กลยุทธ์ 5 ด้านกับการทำ Digital Transformation
กลยุทธ์ 5 ด้านกับการทำ Digital Transformationกลยุทธ์ 5 ด้านกับการทำ Digital Transformation
กลยุทธ์ 5 ด้านกับการทำ Digital Transformation
IMC Institute
 

More from IMC Institute (20)

นิตยสาร Digital Trends ฉบับที่ 14
นิตยสาร Digital Trends ฉบับที่ 14นิตยสาร Digital Trends ฉบับที่ 14
นิตยสาร Digital Trends ฉบับที่ 14
 
Digital trends Vol 4 No. 13 Sep-Dec 2019
Digital trends Vol 4 No. 13  Sep-Dec 2019Digital trends Vol 4 No. 13  Sep-Dec 2019
Digital trends Vol 4 No. 13 Sep-Dec 2019
 
บทความ The evolution of AI
บทความ The evolution of AIบทความ The evolution of AI
บทความ The evolution of AI
 
IT Trends eMagazine Vol 4. No.12
IT Trends eMagazine  Vol 4. No.12IT Trends eMagazine  Vol 4. No.12
IT Trends eMagazine Vol 4. No.12
 
เพราะเหตุใด Digitization ไม่ตอบโจทย์ Digital Transformation
เพราะเหตุใด Digitization ไม่ตอบโจทย์ Digital Transformationเพราะเหตุใด Digitization ไม่ตอบโจทย์ Digital Transformation
เพราะเหตุใด Digitization ไม่ตอบโจทย์ Digital Transformation
 
IT Trends 2019: Putting Digital Transformation to Work
IT Trends 2019: Putting Digital Transformation to WorkIT Trends 2019: Putting Digital Transformation to Work
IT Trends 2019: Putting Digital Transformation to Work
 
มูลค่าตลาดดิจิทัลไทย 3 อุตสาหกรรม
มูลค่าตลาดดิจิทัลไทย 3 อุตสาหกรรมมูลค่าตลาดดิจิทัลไทย 3 อุตสาหกรรม
มูลค่าตลาดดิจิทัลไทย 3 อุตสาหกรรม
 
IT Trends eMagazine Vol 4. No.11
IT Trends eMagazine  Vol 4. No.11IT Trends eMagazine  Vol 4. No.11
IT Trends eMagazine Vol 4. No.11
 
แนวทางการทำ Digital transformation
แนวทางการทำ Digital transformationแนวทางการทำ Digital transformation
แนวทางการทำ Digital transformation
 
บทความ The New Silicon Valley
บทความ The New Silicon Valleyบทความ The New Silicon Valley
บทความ The New Silicon Valley
 
นิตยสาร IT Trends ของ IMC Institute ฉบับที่ 10
นิตยสาร IT Trends ของ  IMC Institute  ฉบับที่ 10นิตยสาร IT Trends ของ  IMC Institute  ฉบับที่ 10
นิตยสาร IT Trends ของ IMC Institute ฉบับที่ 10
 
แนวทางการทำ Digital transformation
แนวทางการทำ Digital transformationแนวทางการทำ Digital transformation
แนวทางการทำ Digital transformation
 
The Power of Big Data for a new economy (Sample)
The Power of Big Data for a new economy (Sample)The Power of Big Data for a new economy (Sample)
The Power of Big Data for a new economy (Sample)
 
บทความ Robotics แนวโน้มใหม่สู่บริการเฉพาะทาง
บทความ Robotics แนวโน้มใหม่สู่บริการเฉพาะทาง บทความ Robotics แนวโน้มใหม่สู่บริการเฉพาะทาง
บทความ Robotics แนวโน้มใหม่สู่บริการเฉพาะทาง
 
IT Trends eMagazine Vol 3. No.9
IT Trends eMagazine  Vol 3. No.9 IT Trends eMagazine  Vol 3. No.9
IT Trends eMagazine Vol 3. No.9
 
Thailand software & software market survey 2016
Thailand software & software market survey 2016Thailand software & software market survey 2016
Thailand software & software market survey 2016
 
Developing Business Blockchain Applications on Hyperledger
Developing Business  Blockchain Applications on Hyperledger Developing Business  Blockchain Applications on Hyperledger
Developing Business Blockchain Applications on Hyperledger
 
Digital transformation @thanachart.org
Digital transformation @thanachart.orgDigital transformation @thanachart.org
Digital transformation @thanachart.org
 
บทความ Big Data จากบล็อก thanachart.org
บทความ Big Data จากบล็อก thanachart.orgบทความ Big Data จากบล็อก thanachart.org
บทความ Big Data จากบล็อก thanachart.org
 
กลยุทธ์ 5 ด้านกับการทำ Digital Transformation
กลยุทธ์ 5 ด้านกับการทำ Digital Transformationกลยุทธ์ 5 ด้านกับการทำ Digital Transformation
กลยุทธ์ 5 ด้านกับการทำ Digital Transformation
 

Recently uploaded

JMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and GrafanaJMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and Grafana
RTTS
 
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Thierry Lestable
 
Key Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdfKey Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdf
Cheryl Hung
 
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Product School
 
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdfSmart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
91mobiles
 
Accelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish CachingAccelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish Caching
Thijs Feryn
 
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
Product School
 
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Product School
 
Epistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI supportEpistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI support
Alan Dix
 
DevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA ConnectDevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA Connect
Kari Kakkonen
 
UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4
DianaGray10
 
Leading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdfLeading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdf
OnBoard
 
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdfFIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance
 
Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !
KatiaHIMEUR1
 
Connector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a buttonConnector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a button
DianaGray10
 
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMsTo Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
Paul Groth
 
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered QualitySoftware Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Inflectra
 
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
Product School
 
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 previewState of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
Prayukth K V
 
GraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge Graph
Guy Korland
 

Recently uploaded (20)

JMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and GrafanaJMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and Grafana
 
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
 
Key Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdfKey Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdf
 
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...
 
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdfSmart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
 
Accelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish CachingAccelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish Caching
 
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
 
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...
 
Epistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI supportEpistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI support
 
DevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA ConnectDevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA Connect
 
UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4
 
Leading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdfLeading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdf
 
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdfFIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
 
Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !
 
Connector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a buttonConnector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a button
 
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMsTo Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
 
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered QualitySoftware Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
 
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
 
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 previewState of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
 
GraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge Graph
 

Install Apache Hadoop for Development/Production