Member since
07-30-2013
723
Posts
109
Kudos Received
80
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
2546 | 04-05-2019 07:00 AM | |
6009 | 05-02-2018 12:42 PM | |
7029 | 05-02-2018 12:39 PM | |
2875 | 08-28-2017 07:55 AM | |
1569 | 05-31-2017 08:43 AM |
06-02-2014
08:50 PM
cat $HUE_HOME/build/env/lib/python2.6/site-packages/hue.pth ? Where HUE_HOME is probably /usr/lib/hue Also, did you restart Hue at least once? Romain
... View more
05-23-2014
02:02 PM
Did you install CDH with the packages? Could you list them with the equivalent of: sudo dpkg -l | grep hue Romain
... View more
04-25-2014
05:04 PM
Yes, in Hue 3.5 the workflow editor as an export button to export the XML of the workflow. Versioning built in Hue is on the roadmap (and also we will see for git integration + global export/import https://issues.cloudera.org/browse/HUE-1660). Romain
... View more
04-24-2014
10:04 PM
The workflow.xml is not editable as it will be replaced when the workflow is submitted again. If some XML is missing you could tell us what that way we could improve the editor and remove the need to manually edit the XML. Romain
... View more
04-23-2014
10:19 PM
When you submit is, the workflow.xml should be generated in the workspace. Romain
... View more
02-05-2014
05:03 PM
You are probably hitting this bug: https://issues.cloudera.org/browse/HUE-1680 "Current workaround, don't use a full path for the jar file or don't put the 'Jar name' into lib, just put it one level up:" This is fixed in CDH5
... View more
01-30-2014
10:11 AM
1 Kudo
Glad to hear! Posting since I started replying: Hue needs to package the jar: http://gethue.tumblr.com/post/64707633719/hadoop-tutorial-use-pig-and-hive-with-hbase
... View more
01-24-2014
01:58 PM
Glad to hear!
... View more
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
11-22-2013
11:25 AM
Yes, /user/hive/warehouse/sample_results belongs to another user ('hive' or the one that created the table, depending on your Hive Configuration). You can see it or change the permissions with the File Browser and also get to the HDFS directory from the Metastore App. Some more details about Hive queries permissions errors: http://gethue.tumblr.com/post/64916325309/hadoop-tutorial-hive-query-editor-with-hiveserver2-and
... View more
11-04-2013
07:20 PM
I see a space after the file name, could you trim it in the design? /home/cloudera/lab/wc.jar ' [04/Nov/2013 15:38:14 +0000] middleware INFO Processing exception: [Errno 2] Copy src '/home/cloudera/lab/wc.jar ' does not exist: Traceback (most recent call last):
File "/usr/share/hue/build/env/lib/python2.6/site-packages/Django-1.2.3-py2.6.egg/django/core/handlers/base.py", line 100, in get_response
response = callback(request, *callback_args, **callback_kwargs)
File "/usr/share/hue/apps/oozie/src/oozie/decorators.py", line 52, in decorate
return view_func(request, *args, **kwargs)
File "/usr/share/hue/apps/oozie/src/oozie/views/editor.py", line 310, in submit_workflow
job_id = _submit_workflow(request.user, request.fs, workflow, mapping)
File "/usr/share/hue/apps/oozie/src/oozie/views/editor.py", line 331, in _submit_workflow
job_id = submission.run()
File "/usr/share/hue/desktop/libs/liboozie/src/liboozie/submittion.py", line 72, in run
deployment_dir = self.deploy()
File "/usr/share/hue/desktop/libs/liboozie/src/liboozie/submittion.py", line 152, in deploy
self._do_as(self.user.username , self._copy_files, deployment_dir, oozie_xml)
File "/usr/share/hue/desktop/libs/liboozie/src/liboozie/submittion.py", line 252, in _do_as
return fn(*args, **kwargs)
File "/usr/share/hue/desktop/libs/liboozie/src/liboozie/submittion.py", line 246, in _copy_files
self.fs.copyfile(file, self.fs.join(lib_path, self.fs.basename(file)))
File "/usr/share/hue/desktop/libs/hadoop/src/hadoop/fs/webhdfs.py", line 486, in copyfile
raise IOError(errno.ENOENT, _("Copy src '%s' does not exist") % src)
IOError: [Errno 2] Copy src '/home/cloudera/lab/wc.jar ' does not exist
... View more
10-24-2013
08:48 PM
1 Kudo
Hum, at least you probably need to replace the hostname by the real Sqoop2 hostname in the Hue ini: localhost --> hadoop-pg-2 around: https://github.com/cloudera/hue/blob/master/desktop/conf.dist/hue.ini#L494
... View more
10-24-2013
09:48 AM
Indeed, you should get a wizard like in http://gethue.tumblr.com/post/63064228790/move-data-in-out-your-hadoop-cluster-with-the-sqoop Your Sqoop2 server is probably not up? You could check the request from Hue to Sqoop2 by checking the logs on hue_server:8888/logs?
... View more
10-10-2013
12:25 AM
1 Kudo
This is very probably this bug: https://issues.cloudera.org/browse/HUE-1091 (workaround explained there)
... View more
10-09-2013
02:53 PM
1 Kudo
In the Hue shell, can you find the culprit? build/env/bin/hue shell > 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=sample_user)
... View more
10-07-2013
10:12 AM
Thanks for the info, 2.5 is indeed much better! (and 3.0 even more soon ;-)) I created https://issues.cloudera.org/browse/HUE-1630 for the timezone issue.
... View more
10-07-2013
08:47 AM
Awesome and thanks for the feedback!
... View more
08-30-2013
10:01 AM
Nice! Can you share your Chrome and Firefox version that way we can investigate this?
... View more
08-29-2013
10:15 AM
2 Kudos
Your setup is probably broken. What browser are you using? Di you use Chrome? Could you try to save a change and then share the logs when you go on hue:8888/logs? What is the generated XML when you submit the coordinator?
... View more
08-28-2013
02:34 PM
CDH4.4 should com-up early September (i.e. in 1-2 weeks). We have users using coordinators in CDH4.3 (cf Hue group http://groups.google.com/a/cloudera.org/group/hue-user). Could you share the generated XML of the coordinator?
... View more
08-22-2013
06:43 PM
I remember this, but the wgeted files was parsed proprely for me (2.3). In the Pig case, maybe the Pig output broke the parsing but yes, getting the output would be great in order to reproduce and fix it.
... View more
- « Previous
- Next »