Unionize the mega query - It needed more performance-based benefits
This commit is contained in:
parent
c3a411cd63
commit
e8cb359d96
5 changed files with 41 additions and 36 deletions
|
@ -25,7 +25,18 @@ def filter_to_repos_for_user(query, username=None, namespace=None, include_publi
|
||||||
if not include_public and not username:
|
if not include_public and not username:
|
||||||
return Repository.select().where(Repository.id == '-1')
|
return Repository.select().where(Repository.id == '-1')
|
||||||
|
|
||||||
where_clause = None
|
# Build a set of queries that, when unioned together, return the full set of visible repositories
|
||||||
|
# for the filters specified.
|
||||||
|
queries = []
|
||||||
|
|
||||||
|
where_clause = (True)
|
||||||
|
if namespace:
|
||||||
|
where_clause = (Namespace.username == namespace)
|
||||||
|
|
||||||
|
if include_public:
|
||||||
|
queries.append(query.clone()
|
||||||
|
.where(Repository.visibility == get_public_repo_visibility(), where_clause))
|
||||||
|
|
||||||
if username:
|
if username:
|
||||||
UserThroughTeam = User.alias()
|
UserThroughTeam = User.alias()
|
||||||
Org = User.alias()
|
Org = User.alias()
|
||||||
|
@ -33,37 +44,32 @@ def filter_to_repos_for_user(query, username=None, namespace=None, include_publi
|
||||||
AdminTeamMember = TeamMember.alias()
|
AdminTeamMember = TeamMember.alias()
|
||||||
AdminUser = User.alias()
|
AdminUser = User.alias()
|
||||||
|
|
||||||
query = (query
|
# Add repositories in which the user has permission.
|
||||||
.switch(RepositoryPermission)
|
queries.append(query.clone()
|
||||||
.join(User, JOIN_LEFT_OUTER)
|
.switch(RepositoryPermission)
|
||||||
.switch(RepositoryPermission)
|
.join(User)
|
||||||
.join(Team, JOIN_LEFT_OUTER)
|
.where(User.username == username, where_clause))
|
||||||
.join(TeamMember, JOIN_LEFT_OUTER)
|
|
||||||
.join(UserThroughTeam, JOIN_LEFT_OUTER, on=(UserThroughTeam.id == TeamMember.user))
|
|
||||||
.switch(Repository)
|
|
||||||
.join(Org, JOIN_LEFT_OUTER, on=(Repository.namespace_user == Org.id))
|
|
||||||
.join(AdminTeam, JOIN_LEFT_OUTER, on=(Org.id == AdminTeam.organization))
|
|
||||||
.join(TeamRole, JOIN_LEFT_OUTER, on=(AdminTeam.role == TeamRole.id))
|
|
||||||
.switch(AdminTeam)
|
|
||||||
.join(AdminTeamMember, JOIN_LEFT_OUTER, on=(AdminTeam.id == AdminTeamMember.team))
|
|
||||||
.join(AdminUser, JOIN_LEFT_OUTER, on=(AdminTeamMember.user == AdminUser.id)))
|
|
||||||
|
|
||||||
where_clause = ((User.username == username) | (UserThroughTeam.username == username) |
|
# Add repositories in which the user is a member of a team that has permission.
|
||||||
((AdminUser.username == username) & (TeamRole.name == 'admin')))
|
queries.append(query.clone()
|
||||||
|
.switch(RepositoryPermission)
|
||||||
|
.join(Team)
|
||||||
|
.join(TeamMember)
|
||||||
|
.join(UserThroughTeam, on=(UserThroughTeam.id == TeamMember.user))
|
||||||
|
.where(UserThroughTeam.username == username, where_clause))
|
||||||
|
|
||||||
if namespace:
|
# Add repositories under namespaces in which the user is the org admin.
|
||||||
where_clause = where_clause & (Namespace.username == namespace)
|
queries.append(query.clone()
|
||||||
|
.switch(Repository)
|
||||||
|
.join(Org, on=(Repository.namespace_user == Org.id))
|
||||||
|
.join(AdminTeam, on=(Org.id == AdminTeam.organization))
|
||||||
|
.join(TeamRole, on=(AdminTeam.role == TeamRole.id))
|
||||||
|
.switch(AdminTeam)
|
||||||
|
.join(AdminTeamMember, on=(AdminTeam.id == AdminTeamMember.team))
|
||||||
|
.join(AdminUser, on=(AdminTeamMember.user == AdminUser.id))
|
||||||
|
.where(AdminUser.username == username, where_clause))
|
||||||
|
|
||||||
# TODO(jschorr, jake): Figure out why the old join on Visibility was so darn slow and
|
return reduce(lambda l, r: l | r, queries)
|
||||||
# remove this hack.
|
|
||||||
if include_public:
|
|
||||||
new_clause = (Repository.visibility == get_public_repo_visibility())
|
|
||||||
if where_clause:
|
|
||||||
where_clause = where_clause | new_clause
|
|
||||||
else:
|
|
||||||
where_clause = new_clause
|
|
||||||
|
|
||||||
return query.where(where_clause)
|
|
||||||
|
|
||||||
|
|
||||||
def get_user_organizations(username):
|
def get_user_organizations(username):
|
||||||
|
|
|
@ -251,9 +251,6 @@ def get_visible_repositories(username, namespace=None, page=None, limit=None, in
|
||||||
if limit:
|
if limit:
|
||||||
query = query.limit(limit)
|
query = query.limit(limit)
|
||||||
|
|
||||||
if namespace:
|
|
||||||
query = query.where(Namespace.username == namespace)
|
|
||||||
|
|
||||||
return query
|
return query
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -133,8 +133,7 @@ def list_repository_tag_history(repo_obj, page=1, size=100, specific_tag=None):
|
||||||
.join(Image)
|
.join(Image)
|
||||||
.where(RepositoryTag.repository == repo_obj)
|
.where(RepositoryTag.repository == repo_obj)
|
||||||
.where(RepositoryTag.hidden == False)
|
.where(RepositoryTag.hidden == False)
|
||||||
.order_by(RepositoryTag.lifetime_start_ts.desc())
|
.order_by(RepositoryTag.lifetime_start_ts.desc(), RepositoryTag.name)
|
||||||
.order_by(RepositoryTag.name)
|
|
||||||
.paginate(page, size))
|
.paginate(page, size))
|
||||||
|
|
||||||
if specific_tag:
|
if specific_tag:
|
||||||
|
|
|
@ -496,12 +496,11 @@ def get_matching_user_namespaces(namespace_prefix, username, limit=10):
|
||||||
base_query = (Namespace
|
base_query = (Namespace
|
||||||
.select()
|
.select()
|
||||||
.distinct()
|
.distinct()
|
||||||
.limit(limit)
|
|
||||||
.join(Repository, on=(Repository.namespace_user == Namespace.id))
|
.join(Repository, on=(Repository.namespace_user == Namespace.id))
|
||||||
.join(RepositoryPermission, JOIN_LEFT_OUTER)
|
.join(RepositoryPermission, JOIN_LEFT_OUTER)
|
||||||
.where(Namespace.username ** (namespace_prefix + '%')))
|
.where(Namespace.username ** (namespace_prefix + '%')))
|
||||||
|
|
||||||
return _basequery.filter_to_repos_for_user(base_query, username)
|
return _basequery.filter_to_repos_for_user(base_query, username).limit(limit)
|
||||||
|
|
||||||
def get_matching_users(username_prefix, robot_namespace=None,
|
def get_matching_users(username_prefix, robot_namespace=None,
|
||||||
organization=None):
|
organization=None):
|
||||||
|
|
|
@ -217,3 +217,7 @@ class TestImageSharing(unittest.TestCase):
|
||||||
still_uploading.save()
|
still_uploading.save()
|
||||||
|
|
||||||
self.assertDifferentStorage('an-image', still_uploading)
|
self.assertDifferentStorage('an-image', still_uploading)
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
unittest.main()
|
||||||
|
|
Reference in a new issue