-
Notifications
You must be signed in to change notification settings - Fork 14k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TApplicationException: Invalid method name: 'GetLog' #2954
Comments
Looks like it's monkey patched over here: |
I should've learn that this is not about the monkey patch, the traceback clearly indicates that the patched version of So it's hive thrift server that's reporting this method not found error, any ideas? @mistercrunch |
seems |
consider removing |
Wouldn't you just have to handle |
|
Make sure these boxes are checked before submitting your issue - thank you!
Superset version
0.18.4
Expected results
pyhive will work
Actual results
when query against
hive://
backends, superset worker will raise this error:Steps to reproduce
hive://
prefixselect * from table_name limit 2
will work, but complex query that'll run for a long time in hive CLI, will raise this error.StudyI see there's thisfetch_logs
method that looks like a patch for the originalfetch_logs
method, but I didn't see any code that actually does the patching, just a method declaration lying there, so AFAIK thefetch_logs
method ran by superset worker, is still the original ones from pyhive?The text was updated successfully, but these errors were encountered: