Member since
09-24-2015
105
Posts
82
Kudos Received
9
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
2148 | 04-11-2016 08:30 PM | |
1769 | 03-11-2016 04:08 PM | |
1765 | 12-21-2015 09:51 PM | |
1045 | 12-18-2015 10:43 PM | |
8710 | 12-08-2015 03:01 PM |
11-20-2015
10:03 PM
A mistyped hadoop fs -rmr -skipTrash can have catastrophic consequences, which can be protected against with snapshots. What are the performance concerns ?
... View more
11-09-2015
04:02 PM
1 Kudo
you shouldn't be running services as root, for obvious reasons. If you are on an insecure cluster, then all YARN jobs submitted will run as the service wide user. If that is "root", then your entire cluster belongs to the first malicious person running a job. If you are running on a kerberos cluster -as you should- you need separate accounts for every individual user of the cluster, so you aren't saving on any setup effort
... View more
10-29-2015
04:26 PM
8 Kudos
I just tried this recently. Couple of options: 1. Compilation on HDP 2.3: curl -o /etc/yum.repos.d/epel-apache-maven.repo https://repos.fedorapeople.org/repos/dchen/apache-maven/epel-apache-maven.repo
yum -y install apache-maven-3.2*
git clone https://github.com/apache/flink.git
cd flink
mvn clean install -DskipTests -Dhadoop.version=2.7.1.2.3.2.0-2950 -Pvendor-repos
2. Download prebuilt tarball: wget http://www.gtlib.gatech.edu/pub/apache/flink/flink-0.9.1/flink-0.9.1-bin-hadoop27.tgz
tar xvzf flink-0.9.1-bin-hadoop27.tgz
cd flink-0.9.1
export HADOOP_CONF_DIR=/etc/hadoop/conf
./bin/yarn-session.sh -n 1 -jm 768 -tm 1024
3. Experimental Ambari service: https://github.com/abajwa-hw/ambari-flink-service Once its up, run word count example export HADOOP_CONF_DIR=/etc/hadoop/conf
./bin/flink run ./examples/flink-java-examples-0.9.1-WordCount.jar
... View more
10-27-2015
06:10 AM
1 Kudo
Add the following variable to the yarn-log4j configuration via Ambari export YARN_ROOT_LOGGER=DEBUG,RFA Be careful, this will fill up the Resourcemanager log with a lot of details 🙂
... View more
11-24-2018
10:16 PM
Please refer to this website if this helps https://atlas.apache.org/
... View more
02-02-2016
04:35 PM
@Andrew Watson has this been resolved? Can you accept best answer or provide your own solution?
... View more
10-25-2015
08:00 PM
HDFS has no affinity to a specific path for this setting.
... View more
10-21-2015
09:56 PM
Ambari 2.1.3 will support Express Upgrade from HDP 2.1 -> 2.3 directly. That feature is similar to Rolling Upgrade, except that the cluster takes downtime. ETA is December.
... View more
10-06-2015
12:18 PM
2 Kudos
be aware there's a bug hitting 1.7.0_79+ on openjdk concerning token renewal : https://issues.apache.org/jira/browse/HADOOP-10786 also on java 1.8
... View more
- « Previous
- Next »