Member since
07-30-2013
723
Posts
109
Kudos Received
80
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
4488 | 04-05-2019 07:00 AM | |
8105 | 05-02-2018 12:42 PM | |
10592 | 05-02-2018 12:39 PM | |
4235 | 08-28-2017 07:55 AM | |
2421 | 05-31-2017 08:43 AM |
01-21-2014
05:09 PM
Yes, it should work, cf. above users using it with no problem. What is your Oozie version?
... View more
01-20-2014
09:10 AM
Yes, https://issues.cloudera.org/browse/HUE-1501 is in Hue 3.5 or CDH5 beta 2 in one month (and CDH5 in 2 months). If it is urgent you could try to patch your Hue with the fix: https://issues.cloudera.org/browse/HUE-1501?focusedCommentId=19417&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-19417
... View more
01-09-2014
05:55 PM
1 Kudo
Awesome! You can click on the Help icon in the naviation bar. Also see thr blog with video and tutorials: http://gethue.tumblr.com/ Or look at the documentation of a release: http://cloudera.github.io/hue/docs-3.5.0/index.html http://gethue.tumblr.com/tagged/release
... View more
01-09-2014
04:21 PM
1 Kudo
Ha true. Could you list the content of hdfs://localhost.localdomain:8020/user/hue/oozie/workspaces/_cloudera_-oozie-22-1389296910.99 Specyfing the path in the 'Jar name' should have the file copied into a sub dir nameed lib? hdfs://localhost.localdomain:8020/user/hue/oozie/workspaces/_cloudera_-oozie-22-1389296910.99/lib If not it can be done manually: hdfs://localhost.localdomain:8020/user/hue/oozie/workspaces/_cloudera_-oozie-22-1389296910.99/lib/MYJAR.jar If it does not work, could you share the logs of the action? Also make sure the class is in the jar.
... View more
01-09-2014
02:47 PM
You need to add the jar in the HDFS workspace ('Workspace' in the menu of the Editor) of the Workflow and specify its name in the 'Jar name' field of the Java action. Of just create a 'lib' dir in the workspace of the workflow and upload the jar there.
... View more
12-11-2013
11:57 AM
Here it is: http://gethue.tumblr.com/post/64916325309/hadoop-tutorial-hive-query-editor-with-hiveserver2-and
... View more
12-10-2013
02:55 PM
And I would recommend this: from django.contrib.auth.models import User from oozie.models import Workflow sample_user = User.objects.get(username='sample') for workflow in Workflow.objects.all(): try: workflow.owner except Exception, e: print e print workflow Workflow.objects.filter(owner=None).update(owner=s ample_user)
... View more
12-10-2013
02:54 PM
e.g. User.objects.get(username='oozie_sample').delete()
... View more
12-09-2013
02:37 PM
You should try to get the workflows with the missing user with the above script. If it is not enought, you could try removing the 'oozie_sample' and replace him with User.objects.create(id=1100713, username='sample')
... View more