Can Splunk handle 60k users?
Scenario:
Problems (while logged in as Administrator):
Problems (while logged in as a user from my database)
Why is Splunk choking on this authentication configuration? Would it run differently with 60k users under an LDAP configuration?
I believe sql server was piping unicode characters over to Splunk which may have broken down after Python tried to print those characters via stdout. The following strips down to ascii characters:
out = "".join(i for i in row.responseFromSQL if ord(i)<128)
After this change, I've been unable to recreate the problem. Users can now navigate the search app.
On a side note, getUserInfo is still being called roughly 10 times each second after an Admin brings up the roles page. I consider that a bug as I'm sure my DBA will not be thrilled.