Hi there! I'm trying to set stream load however th...
# questions-and-troubleshooting
s
Hi there! I'm trying to set stream load however there is an issue. I use following request and it works when I set
<user>:<pass>
to
root
credentials. At the same time, it does not work when I set there credentials for my custom user from LDAP. I can connect with this user and insert data into target table via sql (sql it's not permissions issue), permissions for user are same as root. The error I get is
{"status":"FAILED","code":"1","msg":"Access denied for <user>@<ip>","message":"Access denied for <user>@<ip>"}
Copy code
curl --location-trusted -u <user>:<pass> -XPUT <http://kube-starrocks-fe-service.starrocks:8030/api/raw/test_stream/_stream_load> -T data.csv
problem is probably in ranger, because when I disable
access_control=ranger
config on fe node, everything works correctly
👍 1