> On Aug. 24, 2017, 6:46 p.m., Na Li wrote: > > sentry-provider/sentry-provider-db/src/main/java/org/apache/sentry/provider/db/service/persistent/SentryStore.java > > Line 1816 (original), 1816 (patched) > > <https://reviews.apache.org/r/61863/diff/1/?file=1802624#file1802624line1816> > > > > should the whole sql query section be moved to > > getRoleNamesForGroupsCore()? > > > > Usually, the function name ends with "Core" deals with query directly.
I can move it to core. Thanks > On Aug. 24, 2017, 6:46 p.m., Na Li wrote: > > sentry-provider/sentry-provider-db/src/main/java/org/apache/sentry/provider/db/service/persistent/SentryStore.java > > Lines 1818 (patched) > > <https://reviews.apache.org/r/61863/diff/1/?file=1802624#file1802624line1818> > > > > this condition was checked at the beginning of this function. It won't > > happen here. You are right. - Arjun ----------------------------------------------------------- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/61863/#review183764 ----------------------------------------------------------- On Aug. 23, 2017, 9:24 p.m., Arjun Mishra wrote: > > ----------------------------------------------------------- > This is an automatically generated e-mail. To reply, visit: > https://reviews.apache.org/r/61863/ > ----------------------------------------------------------- > > (Updated Aug. 23, 2017, 9:24 p.m.) > > > Review request for sentry, Alexander Kolbasov, Vamsee Yarlagadda, and Vadim > Spector. > > > Repository: sentry > > > Description > ------- > > Right now when we get privileges from sentry, we pass in a provider like set > of groups. Then we create a MSentryGroup object for each group and then get > roles using the .getRoles() method. However, DataNucleus takes too long and > the fetch doesn't seem to be lazy. This is bad since we only need the > roleNames for the group and not the entire Role object. > Instead running a SQL like query and just getting roleNames will drastically > improve performance > > > Diffs > ----- > > > sentry-provider/sentry-provider-db/src/main/java/org/apache/sentry/provider/db/service/persistent/SentryStore.java > d7acaea7c > > > Diff: https://reviews.apache.org/r/61863/diff/1/ > > > Testing > ------- > > > Thanks, > > Arjun Mishra > >