elastic / kibana

Your window into the Elastic Stack
https://www.elastic.co/products/kibana
Other
19.77k stars 8.17k forks source link

User profile management APIs and UI #141258

Open azasypkin opened 2 years ago

azasypkin commented 2 years ago

h2. Problem statement: 

Removing users does not currently deactivate their profile. As a result, an admin may remove an internal or external user but their profile will continue to be surfaced in search results. The profile will be assignable and the corresponding email will continue receiving email notifications but the (removed) user behind it will not have access to Kibana, nor they are any longer expected to act on assignments and notifications.

h2. Aim:

h2. Design:

elasticmachine commented 2 years ago

Pinging @elastic/kibana-security (Team:Security)

azasypkin commented 2 years ago

We should also check if it'd be feasible to automatically disable profiles for the Elasticsearch native users when they are deleted (either via Kibana UI, Kibana API or Elasticsearch API).

@ywangd do you think it'd be possible to implement something like this on the Elasticsearch side or there are reasons why we shouldn't do it?

EricDavisX commented 2 years ago

This seems particularly impactful to usage where a user is 'assigned' to something in Kibana, as in the new 'assign users to a case' feature. It is natural for people to come and go from an organization, and Kibana users may not have great external communication to know not to select someone for assignment to a case if the expected user is the system and it was formerly their role to be assigned. Just providing context / reasoning to help when prioritizing.

ywangd commented 2 years ago

When planning ES side work for user profiles, we talked about the possibility of updating profiles automatically for native users and decided to leave it out for the initial scope. I think the ask here, "disabling profile on native user deletion", is an indication that we should bring the discussion back. It is better if we could approach it more holistically (update, disable, enable, deletion) instead of just one API.

A few issues popped up in my mind are:

In summary, I think we need to answer two questions:

  1. Do we want to support automatically update profiles on native user changes?
  2. If so, where should we build the support, i.e. ES or Kibana. There are some tricky cases to handle as described above. ES has more knowledge about configurations to make decisions. But handling at Kibana level can have more flexibility (assuming ES exposing necessary information through APIs).

If the answers are "Yes" (1) and "ES" (2), I'll work on a document to lay out implementation options.

ywangd commented 2 years ago

@albertzaharovits @tvernum @jakelandis

bytebilly commented 2 years ago

Do we want to support automatically update profiles on native user changes?

I don't think that this automation should be tightly decoupled to the Elasticsearch Users API, since profiles are connected to users but they have been introduced to decouple the two concepts.

Probably the right solution is to work on an "offboarding" flow that allows admins to remove users from their system. This is more likely to be a nice UI rather than an automation of a single Elasticsearch API. This UI could ask questions and make decisions that could potentially disable the profile, but not necessarily.

albertzaharovits commented 2 years ago

As Yang details above, I also think it would be onerous to keep user profiles and native users in sync at the ES level. The delete/disable/update actions on the user can succeed but the related profile changes might independently fail.

They are also fundamentally different entities. Profiles, by design, encompass multiple users and are a "trace" of the last user that logged-in.

But I'm also sympathetic to the woes of admins that modify native users and then not being able to see that modification reflected when users are being referred to someplace else in the system.

Bottom line is that I think technically we could link native users and the profiles at the ES level, if the user experience requires it. But we might create the wrong expectation that changes to external users are similarly reflected to profiles.

azasypkin commented 2 years ago

Thanks for detailed context @ywangd and for the feedback @bytebilly and @albertzaharovits!

I agree, these are all valid concerns and there is a high chance to introduce a non-trivial amount of the complexity for the sake of limited value. With that in mind and if product agrees (ping @arisonl), it'd make sense to refrain from introducing this complexity until we get feedback that this functionality would be useful for our users. This functionality is also not blocking Kibana User Profile Management UI in any way.

Speaking of Kibana User Profile Management UI, it'd need some Elasticsearch API to retrieve all known profiles from Elasticsearch. I can think of the following requirements for such an API:

Also if we assume that the user profile deactivation will be used for off-boarding and we don't plan to add Delete User Profile API, then we might need some way to either sort profiles by deactivation status or have a disabled/enabled filter to not clutter UI with the user profiles that were deactivated long time ago. If the number of the user profiles isn't huge, we can do this sorting\filtering on the Kibana side though.

What do you all think?

ywangd commented 2 years ago

The issue with pagination, filtering and sorting is less about whether we can provide these functionalities, but more about what the API should look like. Previously, different ES teams have provided these features in different forms for different APIs. There is an ongoing proposal on the ES side to consolidate the approach. But I am not sure about it current status. IIUC, the proposal does not cater for more complex use cases, e.g. sophiscated filtering logic (it is mostly a flat list of AND), or page to page consistency (no duplicates or misses). Do you foresee any complex query logic that Kibana may want from this API? Or is it really just filtering based on "enabled"?

Depend on how urgent this requirement is for Kibana, we may be able to start with just "returning all profiles" (enabled or not) by augmenting the existing GetUserProfile API. It already supports returnning multiple profiles but requries profile uids to be explicitly specified. We can update it to return all profiles if no ID is specified. We can then iteratively add sorting, filtering and pagination (likely in this order) to it once we figure out how these parameters should look it.

bytebilly commented 1 year ago

We can update it to return all profiles if no ID is specified.

My only concern in this case would be blocking the system (or at least the flow) when the number of user profiles is high. Do we feel this is a real risk for our scenario?

ywangd commented 1 year ago

It's not ideal and can be an issue if the number are really high, e.g. over 10k. It also depends on how often the API is called. The issue is not really about the size because ES can handle responses of a couple dozen MBs. But creating and destroying 10K+ objects at a high rate can cause JVM GC threshing.

Ideally we should have pagination support (10K and beyond). But how to achieve this is still an open discussion on the ES side. In the meantime, depending on how urgent the need is here, we may just have to go with returning all profiles. It can optionally take size parameter to control the response size. But this size parameter also defeats the purpose of API if no pagination is possible.

bytebilly commented 1 year ago

@azasypkin could you please explain more in details how the "management" functionality is envisioned, and which is its priority/feasibility status?

If it's not a top priority, I'd consider implementing the full solution (with pagination) at the proper time rather than having a temporary approach that is potentially subject to problems.

azasypkin commented 1 year ago

@azasypkin could you please explain more in details how the "management" functionality is envisioned, and which is its priority/feasibility status?

Sorry for the radio silence here @ywangd and @bytebilly, still catching up on the emails after PTO. Let me figure out the current state of the things on this one and get back to you. I see we've already initiated discussion with the UX team, but we don't have designs yet to start working on this.

If it's not a top priority, I'd consider implementing the full solution (with pagination) at the proper time rather than having a temporary approach that is potentially subject to problems.

That'd be my preference too, but let me first double check if it's not a top priority ask for the solutions.

azasypkin commented 1 year ago

UPDATE: we all met a few days ago to discuss our next steps, here is the summary: