-
Notifications
You must be signed in to change notification settings - Fork 16
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
Issues after hdfs delegation token #16
Comments
@jcrist can you help with this one? I manage to identify that skein is working fine sending jobs manually to yarn, but from yarnspanner is throwing this errors
|
Apologies for the delayed response here. I'm not sure what's going on here, and that exception isn't terribly useful. You say things were working fine when using skein manually? When you tried that, were you also specifying the principal and keytab and running as a proxy-user as you're doing here? This would look something like: import skein
spec = skein.ApplicationSpec.from_yaml("""
name: test
queue: default
user: MYUSER
master:
script: |
echo 'Hello World'
""")
with skein.Client(
principal="hdfs-dev05@example.com",
keytab="/etc/security/keytabs/hdfs.headless.keytab",
security=skein.Security.new_credentials(),
log_level="DEBUG",
) as client:
app_id = client.submit(spec)
print(app_id) I'd try running that - if it succeeds then there's something weird going on with |
Hi there
I wonder if anyone can help me with this issue below, been stuck here for a while.
it is getting the hdfs delegation token but failed after that with this error, which I could not figure out where is coming from
"skein.exceptions.DriverError: Failed to submit application, exception: java.lang.reflect.UndeclaredThrowableException"
Trace
My jupyter_config.py
The text was updated successfully, but these errors were encountered: