Jim Crist-Harif

Results 482 comments of Jim Crist-Harif

Hmmm, ok. A few other places there might be things: - Do you have `HADOOP_YARN_HOME` set? I not, if you set it appropriately do things work out (should be something...

The following links might also be relevant, particularly the solution in the stackoverflow one: - https://stackoverflow.com/questions/38222589/kerberos-authentication-error-when-loading-hadoop-config-files-from-sharedpath - https://hadoop.apache.org/docs/current/hadoop-project-dist/hadoop-common/SecureMode.html#Mapping_from_Kerberos_principals_to_OS_user_accounts It's not clear to me why yarn/spark would work when our code...

Try setting `SKEIN_DRIVER_JAVA_OPTIONS` as follows: ``` export SKEIN_DRIVER_JAVA_OPTIONS="$HADOOP_OPTS -Djavax.security.auth.useSubjectCredsOnly=false" ``` The `javax.security.auth.useSubjectCredsOnly` property deals with kerberos authentication and may lead to the failure we're seeing here.

In my example above did you already have a global running skein driver (had you run `skein driver start` previously?). The java options are only loaded on driver startup. To...

Interesting. What property did you take the hardcoded value from? Do you remember what the exceptions were? I'm a bit hesitant to change our code here, our current implementation matches...

Unfortunately guava is a dependency of grpc-java, so it'd be part of our build even if we didn't use it directly (and we already only use it in a few...

There are not any plans to reintroduce it. Things that are per-user (rather than are hard to support in an atomic and consistent way. Take k8s for example, we store...

Actually, if we changed the semantics from "if exceeding the limit on n-clusters, error" to "don't start a cluster if there's already n clusters, queue instead", then this could be...