GitHub user moelhoussein added a comment to the discussion: How to use User and Group Filter in LDAP
not sure if you got passed this, but your issue is that Spark Thrift is failing you not kyuubi. Kyuubi passes the auth, but your spark config is using the wrong group provider. notice how your event says ``` org.apache.hadoop.security.ShellBasedUnixGroupsMapping$PartialGroupNameException ``` You need to set `hadoop.security.group.mapping` from the default `org.apache.hadoop.security.ShellBasedUnixGroupsMapping` to `org.apache.hadoop.security.LdapGroupsMapping` in either your `core-site.xml` or your spark confs. GitHub link: https://github.com/apache/kyuubi/discussions/6878#discussioncomment-12971346 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
