Does Pinot offer any support for ldap security?
# general
a
Does Pinot offer any support for ldap security?
m
There’s provisions for hooking up your own ACL check mechanism
a
Thanks Mayank. Do you know of any reference implementation?
m
Hey Adam, we have an in-house impl at LinkedIn. Perhaps someone here might be aware of an open source impl.
k
@Adam Haines interface is quite simple
Copy code
@InterfaceAudience.Public
@InterfaceStability.Stable
public interface AccessControl {

  /**
   * Return whether the client has data access to the given table.
   *
   * @param httpHeaders Http headers
   * @param tableName Name of the table to be accessed
   * @return Whether the client has data access to the table
   */
  boolean hasDataAccess(HttpHeaders httpHeaders, String tableName);
}