You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ranger.apache.org by "Madhan Neethiraj (Jira)" <ji...@apache.org> on 2023/05/16 20:15:00 UTC

[jira] [Resolved] (RANGER-4240) Optimize deletion of XXAuthSession while deleting user

     [ https://issues.apache.org/jira/browse/RANGER-4240?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Madhan Neethiraj resolved RANGER-4240.
--------------------------------------
    Fix Version/s: 3.0.0
       Resolution: Fixed

[~suchnit]  - thank you for the patch. It is merged in master branch.

 
{noformat}
commit 8a143519967e699eae73798d93b60733a53254e8 (HEAD -> master, origin/master, origin/HEAD)
Author: Subhrat Chaudhary <su...@yahoo.com>
Date:   Tue May 16 11:48:00 2023 -0700

    RANGER-4240: optimized removal of x_auth_sess entries while deleting an user

    Signed-off-by: Madhan Neethiraj <ma...@apache.org>
{noformat}

> Optimize deletion of XXAuthSession while deleting user
> ------------------------------------------------------
>
>                 Key: RANGER-4240
>                 URL: https://issues.apache.org/jira/browse/RANGER-4240
>             Project: Ranger
>          Issue Type: Improvement
>          Components: admin
>            Reporter: Subhrat Chaudhary
>            Assignee: Subhrat Chaudhary
>            Priority: Major
>             Fix For: 3.0.0
>
>
> The table x_auth_session may contain records for a user in thousands. For users which are frequently used, this count is usually 10k to 15k, in some cases it can be higher.
> For such a user, when delete API 
> {code:java}
> /xusers/secure/users/id/{user_id}{code}
>  is called, deletion of records from x_auth_sess can take minutes, since rows will be locked for deletion and following exception is noticed in logs:
> {code:java}
> java.sql.SQLException: Lock wait timeout exceeded; try restarting transaction{code}
> During testing for deletion of a user with about 30k records in x_auth_session, it took about 6.4 minutes.
> To optimize this, we can implement RANGER-3681 for deletion of records from x_auth_sess.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)