Member since
08-23-2016
261
Posts
201
Kudos Received
106
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
1762 | 01-26-2018 07:28 PM | |
1402 | 11-29-2017 04:02 PM | |
35342 | 11-29-2017 03:56 PM | |
3523 | 11-28-2017 01:01 AM | |
965 | 11-22-2017 04:08 PM |
08-21-2017
03:25 PM
1 Kudo
Hi @zkfs I haven't seen a query to do that yet in Hive. Instead, you can query the hive metastore for the information, though be mindful that queries run directly against the metastore could impact your hive performance and are not recommended for production systems. Look at the TBL_PRIVS and TBLS within the hive DB in the metastore, joining these on the TBL_ID may give you the table view you are looking for. You can probably construct a similar metastore query to look at it from a PRINCIPAL_TYPE (role) as well.
... View more
08-21-2017
03:03 PM
Hi @Dominik Ludwig I don't believe the current implementation of Ambari allows for it to manage multiple clusters yet. The Ambari Views framework is an extensible framework, and does allow you to write your own View if you would like. You can find more details on the framework itself on the Apache website: https://cwiki.apache.org/confluence/display/AMBARI/Views including some examples of views implementations I believe.
... View more
08-18-2017
05:14 PM
Hi @Dominik Ludwig I haven't seen hard limits yet, how many clusters would you be trying to add? By the way, the feature is more about hosting Views for another cluster vs managing the operations of a remote cluster.
... View more
08-17-2017
09:24 PM
Hu @Lucy zhang My colleague has a nice blog post showing to do this in sqoop here: http://blog.ervits.com/2015/03/running-saved-sqoop-144-jobs-with.html
... View more
08-17-2017
03:06 PM
1 Kudo
hi @zkfs the int field you see is the grantttime (in unix timestamp) when the grant was assigned.
... View more
08-16-2017
07:43 PM
1 Kudo
hi @nfleming The property can be set on a per session basis I believe. The Ambari Tez View shows the query run, and if you click on the config tab, you can see the Tez properties for that query.
... View more
08-16-2017
07:27 PM
I believe these are internal repos
... View more
08-14-2017
04:45 PM
1 Kudo
hi @Sandeep Thumma You can use Oozie Coordinators to schedule by time. Here is a link to more on Oozie, and a blog post that contains a time-based example. https://hortonworks.com/apache/oozie/ https://hortonworks.com/blog/new-in-hdp-2-more-powerful-scheduling-options-in-oozie/
... View more
08-10-2017
05:18 PM
Hi @M R I don't believe there is an existing NiFi processor to transpose rows to columns. You would likely have to write your own script to do this, and invoke it via the NiFi processor ExecuteScript.
... View more
08-10-2017
03:52 PM
2 Kudos
Hi @John Kuchmek I think currently out of the box CDC in the latest NiFi works with MySQL using the CaptureChangeMySQL processor. It is likely that the community is working on more CaptureChange processors in future versions. That said, you might be able to follow what was written in this blog post with NiFi to achieve a similar result: https://hortonworks.com/blog/change-data-capture-using-nifi/
... View more