Member since
05-29-2017
408
Posts
123
Kudos Received
9
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
2786 | 09-01-2017 06:26 AM | |
1699 | 05-04-2017 07:09 AM | |
1460 | 09-12-2016 05:58 PM | |
2069 | 07-22-2016 05:22 AM | |
1626 | 07-21-2016 07:50 AM |
05-13-2016
05:48 AM
Thanks @Benjamin Leonhardi
... View more
05-13-2016
05:47 AM
@Sowmya Ramesh: Yes, I have opened a case and wokring with HW team.
... View more
05-12-2016
12:05 PM
@Benjamin Leonhardi: I have following parameter in my proces.xml <retrypolicy="periodic"delay="minutes(30)"attempts="10"/> and following error in logs, so don't see anywhere where it is retrying 10 times. 2016-05-07 12:12:25,037 INFO - [RetryHandler:] ~ {Action:retry-instance-failed, Dimensions:{run-id=0, wf-id=0013624-160421060930490-oozie-oozi-W, nominal-name=2016-05-07T15:30Z, wf-user=hdpbatch, entity-type=PROCESS, error-message=Rerun file deleted or renamed for process-instance:, entity-name=hdp0186h-sitecatalyst-kpis-generation-android-events-hourly-process}, Status: SUCCEEDED, Time-taken:4952 ns} (METRIC:38) 2016-05-07 12:12:25,037
... View more
05-12-2016
11:20 AM
Team: I have noticed one annoying behavior of falcon,Actually for a job in hdp2.2 falcon was retrying to run jobs 10 times but in new current version it is just failing after 1 try. So I just want to know whether its a change in hdp2.3 or some default behavior which we can change accordingly ? Thanks in advance.
... View more
Labels:
- Labels:
-
Apache Falcon
05-12-2016
09:56 AM
@Team, I want to use Expression Language in Feed Entity, just like the case we do in process entity For Example: Process.xml <?xml version="1.0" encoding="UTF-8" standalone="yes"?> <process name="yearWiseReplication-process" xmlns="uri:falcon:process:0.1"> <clusters> ..... <properties> <property name="feed_date" value="${formatTime(dateOffset(instanceTime(), -1, 'DAY'),'yyyy-MM-dd')}" /> </properties> .... </process> Wanted to use in the following away, But I'm failing Feed.xml <?xml version="1.0" encoding="UTF-8" standalone="yes"?> <feed name="yearWiseReplication-output-feed" description="yearWiseReplication-output-feed" xmlns="uri:falcon:feed:0.1"> .... <locations> <location type="data" path="/hdptmp/availabilityYear/${YEAR}-${MONTH}-${DAY-1}" /> </locations> .... </feed> My objective is to run the my job which processes previous day data(yesterday's data)
... View more
Labels:
- Labels:
-
Apache Falcon
04-29-2016
10:33 AM
@Abdelkrim Hadjidj: Yes you are right. Right now we are using snapshot only in all clusters. But as I saw this functionality so I was curious about it and thats why I have posted my concern.
... View more
04-29-2016
07:05 AM
@Kuldeep Kulkarni: I am able to delete trash as well. [root@samplehost ~]$ hadoop fs -rmr hdfs://HDPINFHA/user/root/.Trash/Current/lowes/sampleTest rmr: DEPRECATED: Please use 'rm -r' instead. 16/04/29 03:07:06 INFO fs.TrashPolicyDefault: Namenode trash configuration: Deletion interval = 360 minutes, Emptier interval = 0 minutes. Deleted hdfs://HDPINFHA/user/root/.Trash/Current/lowes/sampleTest
... View more
04-27-2016
07:08 PM
@Kuldeep Kulkarni: I am using hdp 2.3.4 and Hadoop 2.7.1.2.3.4.0-3485. I can see it is not properly supported in our hdp stack ?
... View more
04-27-2016
10:44 AM
2 Kudos
Hi Team, I was reading a KB article which can help us to protect our HDFS dir, but when I tested it then I am able to delete a protected dir. Actually I have configured fs.protected.directories in core-site.xml with /lowes/sampleTest dir and tested below. [root@samplehost ~]$ hadoop fs -rm -R -skipTrash /lowes/sampleTest rm: Cannot delete non-empty protected directory /lowes/sampleTest [root@samplehost ~]$ hadoop fs -rm -R /lowes/sampleTest 16/04/27 05:50:15 INFO fs.TrashPolicyDefault: Namenode trash configuration: Deletion interval = 360 minutes, Emptier interval = 0 minutes. Moved: 'hdfs://HDPINFHA/lowes/sampleTest' to trash at: hdfs://HDPINFHA/user/root/.Trash/Current So do you have any help on that.
... View more
Labels:
- Labels:
-
Apache Hadoop
-
HDFS
04-13-2016
12:55 PM
Team: Can we change location of temp staging file .hive-staging_hive_2016-04-13_08-1* which is getting create inside /apps/hive/warehouse whenever we are running some create table as select statement. CREATE TABLE test_survey_answers_2016_01_04_oldrecords_temp AS SELECT AM.question_id AS question_id_old, AM.answer_id AS answer_id_old, AM.value AS value_old, AM.text AS text_old, AM.start_date AS start_date_old, AM.end_date as end_date_old, AM.load_date_time as load_date_time_old, AMD.question_id AS question_id_new, AMD.answer_id AS answer_id_new, AMD.value AS value_new, AMD.text AS text_new FROM test_survey_answers AM LEFT OUTER JOIN test_survey_answers_2016_01_04_daily_temp AMD ON (AM.question_id= AMD.question_id AND AM.answer_id=AMD.answer_id; I tried to change hive.metastore.warehouse.dir to some other dir but problem is new database also getting create in that location. So I want to have to diffrent dirs, one is for databases(i.e /apps/hive/warehouse) and another one is for temp staging data(like /tmp/ or something else). Can someone please help on this issue.
... View more
Labels:
- Labels:
-
Apache Hive