Member since
09-24-2015
144
Posts
72
Kudos Received
8
Solutions
02-19-2017
09:31 PM
Do I need to use "*" to increase memlock? Could I use "hdfs" instead?
... View more
02-14-2017
03:04 AM
One question please: ----------------------- #HDP QA cluster Kadmin.local : addprinc krbtgt/ HDPDQA.QA.COM@ HDPDEV.QA.COM ----------------------- Is above needed? or correct?
... View more
02-05-2017
11:23 PM
Photos are missing. Can somebody fix this?
... View more
12-14-2016
05:02 AM
Hi, I've been trying similar thing on a kerberoized cluster. Would you mind sharing the steps making this work for a kerberoized clsuter please?
... View more
08-12-2016
05:31 AM
Now, to setup host and install HDP, only "./start_hdp.sh -a".
It automatically sets up the latest HDP in your Ubuntu 14.04 (16 is not supported)
To access, it starts a proxy on port 28080, so you can change the browser proxy setting to use Ubuntu_IP:28080.
Or, if Ubuntu and your PC are in same network, just adding a route to containers works (eg: route add -net 172.17.100.0/24 Ubuntu_IP on your Mac)
... View more
06-01-2016
03:43 AM
I'm a bit confused by SOLR_KERB_PRINCIPAL SOLR_KERB_PRINCIPAL=HTTP/${SOLR_HOST}@EXAMPLE.COM In the instruction, we are creating a service principal "addprinc -randkey solr/horton04.example.com@EXAMPLE.COM". Can't I use this one for above? Do I have to use HTTP?
... View more
02-23-2016
12:17 AM
6 Kudos
Purpose of this article:
When you install HDP for dev/test environment, you would repeat same commands to set up your host OS. To save time, created a BASH script which helps to set up the host OS (Ubuntu only) and docker image (CentOS).
What this script does:
Install packages on Ubuntu host OS
Set up docker, such as creating image and spawning containers
[Optional] Set up a local repository for HDP (not Ambari) with Apache2
What this script does NOT:
As of this writing, this does not install HDP
Please use Ambari Blueprint if you would like to automate HDP installation as well
This step is NOT for production environment but would be useful to test HA components
Host set up steps:
Install Ubuntu 14.x LTS on your VirtualBox/VMware/Azure/AWS.
It should be easy to deploy Ubuntu VM if you use Azure or AWS.
If you are using VirtualBox/VMWare, you might want to backup Ubuntu installed VM as a template, so that later you can clone.
Login to Ubuntu and become root (sudo -i)
Download script: wget https://raw.githubusercontent.com/hajimeo/samples/master/bash/start_hdp.sh -O ./start_hdp.sh && chmod u+x ./start_hdp.sh
Start the script with Install mode: ./start_hdp.sh -i
Script will ask a few questions such as your choice of guest OS, Ambari version, HDP version etc.. Normally default values should be OK, so you can just keep pressing Enter key.
NOTE: The end of interview, it asks you to save your answer in a text file. You can reuse this file to skip interview when you install a new cluster
After saving your responses, it will ask you "Would you like to start setup this host? [Y]:". If you answer yes, it starts setting up your Ubuntu host OS.
After waiting for while, the scripts finishes, or if there is any error, it stops.
The time would be depending on your choice. If you selected to setup a local repo, downloading repo may take long time.
Once the script completed successfully, your choice of Ambari Server should be installed and running on your specified docker container on port 8080.
NOTE: At this moment, docker containers are installed in a private network, so that you would need to do one of followings ("1" would be the easiest):
Following command creates proxy from your local PC port 18080:
ssh -D 18080 username@ubuntu-hostname
Following command do port forwarding from your localhost:8080 to node1:8080
ssh -L 8080:node1.localdomain:8080 username@ubuntu-hostname
Set up proper proxy, such as squid
If you decided to set up a proxy, installing addon such as "SwitchySharp" would be handy.
Once you confirmed you can use Ambari web interface, please proceed to install HDP.
If you choose to set up a HDP local repository, please replace "
public-repo-1.hortonworks.com" to "dockerhost1.localdomain" (if you used default value)
Private key should be ~/.ssh/id_rsa in any node
After this, the step should be same as installing normal HDP.
NOTE: if you decided to install older Ambari version, there is a known issue AMBARI-8620
Host Start up step
If you shutdown the VM, next time you can just run "./start_hdp.sh -s" which starts up containers, Ambari Server, Ambari Agents and HDP services.
日本語版
... View more
02-04-2016
07:15 PM
1 Kudo
If any rule matches, does it stop processing other rules? Stop or not wouldn't be issue in most of the case but in case someone put completely wrong rules...
... View more
01-25-2016
02:07 AM
1 Kudo
After reading above, I'm just curious to know what would happen in the following scenario: 1) Create queues (ex: Rack1, Rack2, Rack3...) 2) Create (exclusive=true) Node Labels and assign to queues per my physical rack layout 3) Didn't set up HDFS rack-awareness (so that replication won't care about rack) 4) Submit a job to the queue "Rack1" but all blocks for this data are in DataNodes in different rack (ex: Rack2) Would YARN AM try to create a remote container in a NameNode in Rack2?
Or keep using container in Rack1 but fetch the data from a remote DataNode?
... View more
- « Previous
- Next »