Member since
09-15-2015
457
Posts
507
Kudos Received
90
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
15250 | 11-01-2016 08:16 AM | |
10790 | 11-01-2016 07:45 AM | |
7928 | 10-25-2016 09:50 AM | |
1828 | 10-21-2016 03:50 AM | |
3549 | 10-14-2016 03:12 PM |
03-14-2016
09:26 AM
4 Kudos
One way is to use Chef (OS + DBs + Partitions + ...) in combination with Ambari Blueprints (Cluster + Kerberos/Security). There are already some sample cookbooks out there that you can use as a starting point, e.g. https://github.com/bloomberg/chef-bcpc or https://supermarket.chef.io/cookbooks/hadoop
... View more
03-03-2016
06:14 PM
2 Kudos
Are you using a version of Ambari less than 2.2.1? Please refer to http://docs.hortonworks.com/HDPDocuments/Ambari-2.2.1.0/bk_Installing_HDP_AMB/content/_determine_stack_compatibility.html , where it says only Ambari-2.2.1 supports HDP-2.4. Therefore, if you are using < 2.2.1, please upgrade Ambari before trying to upgrade the stack. The upgrade doc is at http://docs.hortonworks.com/HDPDocuments/Ambari/Ambari-2.2.1.0/index.html#bk_upgrading_Ambari
... View more
02-25-2016
01:01 PM
3 Kudos
Hi @prakash pal there are some differences between these data types, basically string allows a variable length of characters (max 32K chars), char is a fixed length string (max. 255 chars). Usually (I doubt that this is different with Impala) CHAR is more efficient and can speed up operations and is better reg. memory allocation. (This does not mean always use CHAR) See this => "All data in CHAR and VARCHAR columns must be in a character encoding that is compatible with UTF-8. If you have binary data from another database system (that is, a BLOB type), use a STRING column to hold it." There are a lot of use cases where it makes sense to only use CHAR instead of STRING, e.g. lets say you want to have a column that stores the two-letter country code (ISO_3166-1_alpha-2; e.g. US, ES, UK,...), here it makes more sense to use CHAR.
... View more
02-22-2016
06:16 PM
1 Kudo
You should be able to see the query in the HiveServer log or a Hive-related UI, like Hive View for Ambari or Hue (there should be a query history). The Resourcemanager does not show the full query, because the job is only named after a partial of the query. Why only a partial? Some queries can be quite large and Job Name is limited in regards to the allowed #characters.
... View more
02-22-2016
12:33 PM
Iif you put this machine in a separate config group and remove referencw to the directories used you can keep the machine up. Removing disk and not replacing will mean your data will be writing to OS filesystem. Also do what Benjamin siggests and increase tolerance.
... View more
02-17-2016
06:42 PM
3 Kudos
+1 Another consideration is upgrades. Sharing the same set of JournalNodes across multiple clusters would complicate upgrade plans, because an upgrade of software on those JournalNodes potentially impacts every cluster served by those JournalNodes.
... View more
05-21-2019
01:46 PM
a. ambari-metrics-monitor status b. ambari-metrics-monitor stop (if it is running) c. Check the ambari-metrics-collector/hbase-tmp directroy path in Ambari AMS config d. Move the hbase zk temp directory to somewhere mv /hadoop/journalnode/var/lib/ambari-metrics-collector/hbase-tmp/zookeeper/* /tmp/ams-zookeeper-backup/ e. Restart AMS from the Ambari That should resolve the issue Cheers, Pravat Sutar
... View more
02-09-2016
03:41 AM
@Sunile Manjee I think Ancil answer is best one 😉 You are the judge.
... View more
02-02-2016
02:52 PM
@Jonas Straub has this been resolved? Can you post your solution or accept best answer :)?
... View more