summaryrefslogtreecommitdiff
path: root/db/migrate
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch ↵Robert Speicher2017-05-297-3/+7
|\ | | | | | | | | | | | | | | | | '32677-migrations-using-update_column_in_batches-must-have-a-spec' into 'master' New Migration/UpdateColumnInBatches cop Closes #32677 See merge request !11611
| * Disable Migration/UpdateColumnInBatches for old migrations32677-migrations-using-update_column_in_batches-must-have-a-specRémy Coutable2017-05-297-3/+7
| | | | | | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
* | Merge branch 'rework-authorizations-performance' into 'master'Douwe Maan2017-05-293-0/+186
|\ \ | |/ |/| | | | | Rework project authorizations and nested groups for better performance See merge request !10885
| * Index project_group_links.group_idYorick Peterse2017-05-171-0/+19
| | | | | | | | | | This column is used when refreshing authorizations and without the index leads to a sequence scan being performed on this table.
| * Convert nested groups to regular ones for MySQLYorick Peterse2017-05-171-0/+123
| | | | | | | | | | | | | | | | This migration will take all nested groups and convert them into regular groups, ensuring that members of any parent groups still have access to the child group. This migration relies on code external to it as copying all of this over involves hundreds of lines of code depending on all sorts of methods, making this practically impossible to do right.
| * Use CTEs for nested groups and authorizationsYorick Peterse2017-05-171-0/+44
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit introduces the usage of Common Table Expressions (CTEs) to efficiently retrieve nested group hierarchies, without having to rely on the "routes" table (which is an _incredibly_ inefficient way of getting the data). This requires a patch to ActiveRecord (found in the added initializer) to work properly as ActiveRecord doesn't support WITH statements properly out of the box. Unfortunately MySQL provides no efficient way of getting nested groups. For example, the old routes setup could easily take 5-10 seconds depending on the amount of "routes" in a database. Providing vastly different logic for both MySQL and PostgreSQL will negatively impact the development process. Because of this the various nested groups related methods return empty relations when used in combination with MySQL. For project authorizations the logic is split up into two classes: * Gitlab::ProjectAuthorizations::WithNestedGroups * Gitlab::ProjectAuthorizations::WithoutNestedGroups Both classes get the fresh project authorizations (= as they should be in the "project_authorizations" table), including nested groups if PostgreSQL is used. The logic of these two classes is quite different apart from their public interface. This complicates development a bit, but unfortunately there is no way around this. This commit also introduces Gitlab::GroupHierarchy. This class can be used to get the ancestors and descendants of a base relation, or both by using a UNION. This in turn is used by methods such as: * Namespace#ancestors * Namespace#descendants * User#all_expanded_groups Again this class relies on CTEs and thus only works on PostgreSQL. The Namespace methods will return an empty relation when MySQL is used, while User#all_expanded_groups will return only the groups a user is a direct member of. Performance wise the impact is quite large. For example, on GitLab.com Namespace#descendants used to take around 580 ms to retrieve data for a particular user. Using CTEs we are able to reduce this down to roughly 1 millisecond, returning the exact same data. == On The Fly Refreshing Refreshing of authorizations on the fly (= when users.authorized_projects_populated was not set) is removed with this commit. This simplifies the code, and ensures any queries used for authorizations are not mutated because they are executed in a Rails scope (e.g. Project.visible_to_user). This commit includes a migration to schedule refreshing authorizations for all users, ensuring all of them have their authorizations in place. Said migration schedules users in batches of 5000, with 5 minutes between every batch to smear the load around a bit. == Spec Changes This commit also introduces some changes to various specs. For example, some specs for ProjectTeam assumed that creating a personal project would _not_ lead to the owner having access, which is incorrect. Because we also no longer refresh authorizations on the fly for new users some code had to be added to the "empty_project" factory. This chunk of code ensures that the owner's permissions are refreshed after creating the project, something that is normally done in Projects::CreateService.
* | Merge branch '32851-fix-postgres-9-1' into 'master'Douwe Maan2017-05-253-13/+5
|\ \ | | | | | | | | | | | | Resolve "GitLab 9.0 to 9.2 is incompatible with PostgreSQL 9.1" See merge request !11709
| * | Only use DROP INDEX CONCURRENTLY on postgreql 9.2+Nick Thomas2017-05-253-13/+5
| | |
* | | Merge branch '17848-web-hook-logging' into 'master'Dmitriy Zaporozhets2017-05-251-0/+22
|\ \ \ | |/ / |/| | | | | | | | | | | | | | Implement Web Hooks calls logging Closes #17848 See merge request !11027
| * | Implement web hooks loggingAlexander Randa2017-05-251-0/+22
| | | | | | | | | | | | | | | | | | | | | | | | * implemented logging of project and system web hooks * implemented UI for user area (project hooks) * implemented UI for admin area (system hooks) * implemented retry of logged webhook * NOT imeplemented log remover
* | | add rss_token attribute to user modelAlexis Reigel2017-05-241-0/+19
| | |
* | | Address reviewDouwe Maan2017-05-241-18/+0
| | |
* | | Add system note with link to diff comparison when MR discussion becomes outdatedDouwe Maan2017-05-231-0/+31
| | |
* | | Check if OLD is set when migrating issue assigneesYorick Peterse2017-05-171-1/+1
|/ / | | | | | | | | | | The procedure for migrating issue assignees is invoked on both an INSERT and UPDATE. This means it will fail for INSERTs because OLD is set to NULL in this case.
* | Improve migration for Multipple issue assignee featureValery Sizov2017-05-164-48/+124
| |
* | Merge branch 'bvl-rename-build-events-to-job-events' into 'master' cherry-pick-0663458cDouwe Maan2017-05-162-0/+36
| | | | | | | | | | | | | | Rename `build_events` to `job_events` Closes #31620 See merge request !11287
* | Revert "Merge branch 'bvl-rename-build-events-to-job-events' into 'master'"Douwe Maan2017-05-152-36/+0
| | | | | | This reverts merge request !11287
* | Merge branch 'bvl-rename-build-events-to-job-events' into 'master' Douwe Maan2017-05-152-0/+36
|\ \ | | | | | | | | | | | | | | | | | | Rename `build_events` to `job_events` Closes #31620 See merge request !11287
| * | Rename `build_events` columns to `job_events`Bob Van Landuyt2017-05-152-0/+36
| |/
* | Merge branch 'enable-auto-cancelling-by-default' into 'master' Kamil Trzciński2017-05-151-0/+13
|\ \ | | | | | | | | | | | | | | | | | | Make auto-cancelling pending pipelines on by default Closes #30656 See merge request !11023
| * | Move to post_migrate and use update_column_in_batchesLin Jen-Shin2017-05-151-14/+0
| | |
| * | Make auto-cancelling pending pipelines on by defaultLin Jen-Shin2017-05-152-0/+27
| |/
* | Merge remote-tracking branch 'upstream/master' into ↵Lin Jen-Shin2017-05-156-2/+62
|\ \ | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | add-index-for-auto_canceled_by_id-mysql * upstream/master: (224 commits) Added balsamiq jasmine integration test Add support for deltas_only under Gitaly Codestyle Update CHANGELOG.md for 9.1.4 Update CHANGELOG.md for 9.1.4 Update CHANGELOG.md for 9.1.4 Update CHANGELOG.md for 9.1.4 Minor cosmetic fixes in hooks admin screen Documentation for repository_update_events Changelog Update SystemHooks API to expose and handle new repository_update_events Make the new repository_update_events configurable in System Hooks UI Added repository_update hook Wait for requests after each Spinach scenario instead of feature Remove trailing comma in dependency linker to satisfy Rubocop Fix specs New branch new mr docs Relax rake backup regex to handle CE and EE RCs Fix conflict resolution from corrupted upstream Removed all instances of Object.assign by using es6 classes, also includes some … ...
| * Added repository_update hookGabriel Mazetto2017-05-121-0/+15
| |
| * Remove rails dependent: :destroy statementZ.J. van de Weg2017-05-111-1/+0
| | | | | | | | | | | | | | Enforced by the database, and no callbacks need to be called. Combined with 7b9b2c6099 and 294a8b8a6d this resolves gitlab-org/gitlab-ce#31799
| * Add a foreign key to ci_variables to projectsZ.J. van de Weg2017-05-112-0/+37
| | | | | | | | | | Variables shouldn't exist without a project, so a foreign key was added with CASCADE'ing effects.
| * Merge branch 'retried-in-database-mysql' into 'master' Regis Boudinot2017-05-101-0/+9
| |\ | | | | | | | | | | | | | | | | | | Retried in database Closes #25737 See merge request !11115
| | * Make retried to be nullableKamil Trzcinski2017-05-091-8/+2
| | |
| | * Store retried in database for CI buildsretried-in-database-mysqlKamil Trzcinski2017-05-071-0/+15
| | |
| * | Enable the Style/TrailingCommaInLiteral copRémy Coutable2017-05-102-2/+2
| | | | | | | | | | | | | | | | | | Use the EnforcedStyleForMultiline: no_comma option. Signed-off-by: Rémy Coutable <remy@rymai.me>
* | | Merge branch 'master' into 'add-index-for-auto_canceled_by_id-mysql'Kamil Trzciński2017-05-097-0/+114
|\ \ \ | |/ / | | | | | | # Conflicts: # db/schema.rb
| * | Small code improvements and add migration specFelipe Artur2017-05-081-0/+0
| | |
| * | Preloads head pipeline for each merge requestFelipe Artur2017-05-081-0/+7
| | |
| * | Add Pipeline Schedules that supersedes experimental Trigger ScheduleZeger-Jan van de Weg2017-05-076-0/+107
| |/
* | Merge branch 'master' into 'add-index-for-auto_canceled_by_id-mysql'add-index-for-auto_canceled_by_id-mysqlKamil Trzciński2017-05-0614-0/+285
|\ \ | |/ | | | | # Conflicts: # db/schema.rb
| * Merge branch '17361-redirect-renamed-paths' into 'master' Sean McGivern2017-05-063-0/+64
| |\ | | | | | | | | | | | | | | | | | | Resolve "Redirect to new project link after a rename" Closes #17361 and #30317 See merge request !11136
| | * Resolve discussionsMichael Kozono2017-05-051-3/+2
| | |
| | * Fix Rubocop failuresMichael Kozono2017-05-051-1/+0
| | |
| | * Index redirect_routes path for LIKEMichael Kozono2017-05-051-0/+29
| | |
| | * Add index for source association and for pathMichael Kozono2017-05-051-0/+22
| | |
| | * Redirect from redirect routes to canonical routesMichael Kozono2017-05-051-0/+15
| | |
| * | Merge branch 'blackst0ne/gitlab-ce-add_system_note_for_editing_issuable'Sean McGivern2017-05-052-0/+28
| |\ \
| | * | Add alias_attributes for notesblackst0ne2017-05-041-14/+0
| | | |
| | * | Add last_edited_at and last_edited_by attributesblackst0ne2017-05-043-0/+42
| | | |
| * | | Merge branch 'mia_backort' into 'master' Jacob Schatz2017-05-052-0/+92
| |\ \ \ | | |_|/ | |/| | | | | | | | | | Backport of Multiple Assignees feature See merge request !11089
| | * | Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ce into mia_backort[ci ↵Valery Sizov2017-05-053-0/+38
| | |\ \ | | | | | | | | | | | | | | | skip]
| | * | | [Multiple issue assignee] Fix a number of specsValery Sizov2017-05-051-1/+1
| | | | |
| | * | | Backport of multiple_assignees_feature [ci skip]Valery Sizov2017-05-042-0/+92
| | | | |
| * | | | Merge branch 'add-sentry-js-again-with-vue' into 'master' Phil Hughes2017-05-051-0/+33
| |\ \ \ \ | | |_|/ / | |/| | | | | | | | | | | | | Add sentry JS See merge request !6764
| | * | | Merge branch 'master' into 'add-sentry-js-again-with-vue'Luke "Jared" Bennett2017-05-042-0/+22
| | |\ \ \ | | | | | | | | | | | | | | | | | | # Conflicts: # db/schema.rb