Member since
09-26-2015
30
Posts
11
Kudos Received
2
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
2182 | 12-04-2015 04:28 PM | |
1199 | 11-06-2015 05:13 AM |
01-05-2016
04:44 PM
1 Kudo
I use a detailed Ambari blueprint to install a HDP cluster. When a new version of Ambari is released my blueprint upgrade technique is to manually install a similar cluster, export the new blueprint, diff old and new, then update the new blueprint for anything missed. This process is time consuming and prone to error. Is there a better way to maintain blueprints across Ambari versions?
... View more
Labels:
- Labels:
-
Apache Ambari
12-30-2015
06:18 PM
2 Kudos
Would a short CF TTL of 30 minutes on 2 to 36 million row table be detrimental to performance? This HBase table would be queried or inserted from Storm at a goal rate of 20k entries per second at peak performance and would like the current entries to expire after 30 minutes.
... View more
Labels:
- Labels:
-
Apache HBase
12-28-2015
07:47 PM
I now see where the agent is calling initSchema... had missed it before. It fails when run from Ambari but succeeded when run from the cli. I'll accept an answer and drive on.
... View more
12-28-2015
06:45 PM
Ambari 2.1.2 - HDP 2.3.2 Startup of the Hive metastore fails because schema tool can't validate the the hive.VERSION table. According to this, http://docs.hortonworks.com/HDPDocuments/Ambari-2.... Ambari is supposed to create the schema automatically with an HDP stack of 2.2 (I'm assuming later versions as well) Kris
... View more
Labels:
- Labels:
-
Apache Ambari
-
Apache Hive
12-04-2015
04:39 PM
1 Kudo
For anyone that is interested in why I want this: People use Oozie Shell actions to orchestrate work because they are familiar/comfortable with bash. When using the Hive CLI from a YARN container context and secure cluster the engine specification must be done in an early stage. For the Hive CLI this means users must change their existing HQL from hive -e 'set tez.credentials.path=${HADOOP_TOKEN_FILE_LOCATION}'
to
--hiveconf tez.credentials.path=${HADOOP_TOKEN_FILE_LOCATION}
For Sqoop, there is no way to affect this change from configuration and the user must ship a custom hive-site.xml in the distributed cache of the Oozie-shell. This hive-site.xml must set the engine to MR If this is not done, Hive and Sqoop will launch a Tez AM that may never even be used but which fails due to missing the delegation token. These changes are small from from this explanation but rather large for organizations that already have established HQL and the cluster upgrade includes a default engine change from MR to Tez.
... View more
12-04-2015
04:28 PM
1 Kudo
Looks like the answer is no: https://issues.apache.org/jira/browse/HIVE-9602
... View more
12-04-2015
04:23 PM
1 Kudo
The desired end result is that I want no YARN containers automatically started when I enter the Hive CLI and the engine default is Tez. hive.prewarm prevents default work containers but I need to stop the Tez AM from launching.
... View more
Labels:
- Labels:
-
Apache Hive
-
Apache Tez
12-04-2015
04:21 PM
Since my question pertains to containers, prewarm is the correct answer but it is not the correct question so I will ask again.
... View more
12-04-2015
03:51 PM
So, I've tog hive.prewarm.enabled=false and still get a tez session from the Hive CLI.
... View more