Member since
09-29-2015
53
Posts
35
Kudos Received
1
Solution
My Accepted Solutions
Title | Views | Posted |
---|---|---|
2527 | 10-01-2015 05:57 PM |
03-04-2017
02:12 AM
You can export OOZIE_TIMEZONE the same way you export OOZIE_URL, or use "-timezone" option, or for a long-term change set "oozie.processing.timezone" in oozie-site.xml for example to "GMT+0900".
... View more
06-07-2016
05:53 PM
1 Kudo
i spent 5 hours to find the proper code for downloading the latest JDK which is 1.8_92 currently. Guys be aware that the oracle website needs you to accept the license and you have to put it in you command line. the following code is working perfectly. enjoy # sudo wget --no-cookie --no-check-certificate --header "Cookie:gpw_e24=http%sA2F%2Fwww.oracle.com%2F; oraclelicense=accept-securebackup-cookie" http://download.oracle.com/otn-pub/java/jdk/8u92-b14/jdk-8u92-linux-x64.tar.gz?AuthParam=1465316438_f262c7659515d89274633588ae8f73ca # mkdir /usr/java # mv jdk-8u92-linux-x64.tar.gz /usr.java/jdk-8u92-linux-x64.tar.gz # tar zxvf jdk-8u92-linux-x64.tar.gz # ln -s /usr/java/jdk1.8.0_92 /usr/java/default # export JAVA_HOME=/usr/java/default # export PATH=$JAVA_HOME/bin:$PATH
... View more
10-22-2015
08:18 PM
1 Kudo
Looking at the command line options for Oozie, there is an option to the oozie job to specify localtime, see the documentation. -localtime use local time (same as passing your time zone to -timezone). Overrides -timezone option
... View more
10-23-2015
02:24 PM
Slider is a client lib and will be installed as part of client set in Ambari. Whether you choose to install it on a master node, is secondary, but typically you will see Slider (and clients) on the edge nodes.
... View more
01-30-2016
07:17 AM
1 Kudo
Yes, currently it can be done with Row value constructor only explained in above url.
... View more
10-15-2015
12:17 PM
@Cassandra HDFS Snapshots HBASE Snapshots Hive Metadata (DBA can work on setting up this based on DB flavor used for HCatalog) Going back to your original question This is helpful to understand the architecture. We can point it to DR cluster (It can be on prem or in cloud) as Eric mentioned.
... View more
11-29-2018
02:03 PM
I had the same issue, because I put the frequency in the dataset as a cron, we can't actually do that. Here is my example : <coordinator-app name="weekdays-at-two-am"
frequency="0 2 * * 2-6"
start="${start} "
end="${end}"
timezone="Europe/Paris"
xmlns="uri:oozie:coordinator:0.4">
<datasets>
<dataset name="my_dataset_name"
frequency="${coord:days(1)}"
initial-instance="2017-12-28T02:00+0100"
timezone="Europe/Paris">
<uri-template>${my_path}/${YEAR}${MONTH}${DAY}</uri-template>
<done-flag>my_flag</done-flag>
</dataset>
</datasets>
<input-events>
<data-in name="log_input_name" dataset="my_dataset_name">
<instance>${coord:current(0)}</instance>
</data-in>
</input-events>
my coordinator is lunched with the cron at first (line 2), but it verifies the second condition which looking every day (line9) for the flag of the current day (line 18)
... View more
11-17-2015
05:26 PM
There is a new S3 driver that Gopal has written that is supposed to be as fast as the driver from AWS. If you are implementing in the field, please reach out to him. It is supposed to be part of HDP 2.4 afaik 🙂
... View more
10-01-2015
05:57 PM
1 Kudo
https://hortonworks.jira.com/browse/EAR-2354 was created for this issue
... View more
10-02-2015
04:12 PM
1 Kudo
Sometimes, the requirement to have AV on the servers is unavoidable due to security policies that cannot be challenged. In that event, prepare for the need to add significantly more nodes, more memory and more cpus to get the same levels of performance.
... View more
- « Previous
-
- 1
- 2
- Next »