Member since
09-25-2015
356
Posts
382
Kudos Received
62
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
2439 | 11-03-2017 09:16 PM | |
1917 | 10-17-2017 09:48 PM | |
3805 | 09-18-2017 08:33 PM | |
4509 | 08-04-2017 04:14 PM | |
3458 | 05-19-2017 06:53 AM |
10-13-2015
03:33 PM
2 Kudos
These permissions should be enough for the oozie user on Oracle: GRANT SELECT_CATALOG_ROLE TO <OOZIE USER>;
GRANT CONNECT, RESOURCE TO <OOZIE USER>; For the other databases MySQL and PostgresQL I agree with @David Streever that the permission needs to be set to just Oozie database. Additionally we want to limit the access from just the oozie host. On MySQL this can be: GRANT ALL PRIVILEGES ON <OOZIE DB>.* TO '<OOZIE USER>'@'<OOZIE HOST>'
... View more
10-12-2015
05:42 PM
1 Kudo
Look at the Oozie coordinator documentation, the timezone value will be "America/New_York" and start would be something like "2015-10-12T08:00Z". Alternatively you can do a cron like thing, see the example in the following blog. Based on that it can be something like: <coordinator-app name="weekdays-at-eight-pm"
frequency="0 20 * * 2-6"
start="${start}" end="${end}" timezone="America/New_York"
xmlns="uri:oozie:coordinator:0.2">
...
</coordinator-app>
... View more
10-12-2015
04:36 PM
4 Kudos
There is an open intermittent issue where Hive View fails handling submission of multiple statements in a single query/submit. Is that the case here?
... View more
10-09-2015
09:09 PM
Can you shed more details on what type of configuration change was applied using Ambari that triggered the hive cli hang?
... View more
10-09-2015
07:18 PM
1 Kudo
Check out http://sqoop.apache.org/docs/1.4.2/SqoopUserGuide.html#_large_objects
... View more
10-09-2015
06:44 PM
2 Kudos
We support both Oracle 11g r2 and Oracle 12c.
... View more
10-09-2015
04:46 PM
1 Kudo
Its not that MR gets resources, Tez just pre-allocates resources, it starts a YARN application as soon as you invoke the Hive CLI. In case of MR a YARN application is launched only when its required by the executing query. This is a performance optimization in Hive on Tez saving the user the overhead of launching a AM everytime a new query is run in the same Hive CLI session.
... View more
10-09-2015
03:43 PM
5 Kudos
One thing to check is if they are using tez. If they are, it could be possible that they do not have any capacity on their YARN cluster to launch AM. So the Hive CLI waits indefinitely to launch an AM. One thing they can do to alleviate this is to launch hive cli as "hive -hiveconf hive.execution.engine=mr".
... View more
10-09-2015
03:27 PM
Yes, that is not documented as its not a common configuration/practice.
... View more
10-08-2015
07:49 PM
2 Kudos
Row based security can be achieved through SQL Standard Based Hive Authorization.You can create a view with the filter from the original table and then GRANT permissions to role or individual user.
... View more