Member since
10-01-2015
3933
Posts
1150
Kudos Received
374
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 3485 | 05-03-2017 05:13 PM | |
| 2876 | 05-02-2017 08:38 AM | |
| 3123 | 05-02-2017 08:13 AM | |
| 3089 | 04-10-2017 10:51 PM | |
| 1578 | 03-28-2017 02:27 AM |
04-21-2016
07:55 AM
That's fine, thanks Artem.
... View more
04-20-2016
06:23 PM
Thanks .. sudo su - hdfs hdfs dfs -mkdir /user/root hdfs dfs -chown root:hdfs /user/root got the answer as well from another thread
... View more
05-16-2016
01:44 PM
2 Kudos
@Kirk Haslbeck Interval data type is not supported in Hive, yet. See https://issues.apache.org/jira/browse/HIVE-5021. Until HIVE-5021 feature is added, I would use two BigInt fields in Hive target table: startInterval, endInterval. Queries using these two fields in WHERE clauses would run better, being more appropriate for indexing and fast scan. For bit[n] in HAWQ, I would use a char, varchar, or string data type in Hive, depends on how big the string needs to be.
... View more
04-15-2016
05:58 PM
As far as I understand, tblproperties is just a list of key/value pairs. You can specify whatever you want on it (even if it's not predefined, e.g. 'weather'='warm'). But of course there must be code logic that interprets your tblproperties and do something, otherwise it's useless.
... View more
04-12-2016
09:29 AM
2 Kudos
In nifi.properties, set the following to false: nifi.flowcontroller.autoResumeState=true This forces everything to a stopped state when Nifi restarts, rather than attempting to resume the previous states.
... View more
12-20-2017
08:54 AM
hi all, i'm still getting "PutKafka Error : failed while waiting for acks from kafka" error though i see some values under "In" & "Read". but i see attached consumer console error. Also,i see something strange here. When i remove out Kafka from "maintenance mode" on Ambari and start the kafka broker, it gets stopped by itself after a while. please help me on this & find supporting attachments. @jmedel @Predrag Minovic @Artem Ervits Note: I'm using HDP 2.6 Regards, Akshay putkafka-processor-nifi-properties.png
... View more
04-08-2016
03:33 PM
This is due to this issue https://issues.apache.org/jira/browse/NIFI-990 which fixed the fact that the failure relationship was mistakenly not provided before. When importing templates made against the previous version they will not have that relationship checked since it wasn't there. So it will show as invalid until you check it as auto-terminate or use it. You may wish to recreate the template.
... View more
04-06-2016
11:04 PM
1 Kudo
Steps to build a release version of Hortonworks component. Component details in question. Component Name = Hadoop Release Version = 2.3.4.0 Tools Needed: Maven = 3.1.1 Java = 1.7+ Steps: 1. Ensure Java and Maven is in path. 2. Get the code to your local linux machine, say workspace. $ git clone git@github.com:hortonworks/hadoop-release.git -b HDP-2.3.4.0-tag Hortonworks maintain <component>-release tags for all the public releases. 3. Point maven settings.xml to http://repo.hortonworks.com/content/groups/public/ 4. Go to the synced workspace and issue below command $ maven clean -DskipTests -DskipITs install Cheers, -Vijay.
... View more
04-05-2016
04:26 AM
Hi Artem, PHD-3.0 is equivalent to HDP-2.2.4, so a script referring to correct paths should work. What do you mean by "hdp memory script" on Yarn? Edit: phd-configuration-utils.py exists on PHD-3.0, here is a link, scroll down to "PHD Utility Script". Example python phd-configuration-utils.py -c 16 -m 64 -d 4 -k True
where "-c" is the number of cores, "-m" is RAM on worker nodes, "-d" is number of disks, and final Boolean is HBase yes/no.
... View more
03-31-2016
06:58 PM
On the exam you should always use Ambari when possible, especially for tasks like enabling NameNode HA.
... View more