summaryrefslogtreecommitdiff
path: root/spec/models
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch '34643-fix-project-path-slugify' into 'master'Rémy Coutable2017-08-161-1/+1
|\ | | | | | | | | | | | | Fix CI_PROJECT_PATH_SLUG slugify Closes #34643 See merge request !13350
| * Fix CI_PROJECT_PATH_SLUG slugifyvanadium232017-08-151-1/+1
| |
* | Merge branch 'forks-count-cache' into 'master'Douwe Maan2017-08-151-0/+10
|\ \ | | | | | | | | | | | | Cache the number of forks of a project See merge request !13535
| * | Cache the number of forks of a projectforks-count-cacheYorick Peterse2017-08-141-0/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The number of forks of a project doesn't change very frequently and running a COUNT(*) every time this information is requested can be quite expensive. We also end up running such a COUNT(*) query at least twice on the homepage of a project. By caching this data and refreshing it when necessary we can reduce project homepage loading times by around 60 milliseconds (based on the timings of https://gitlab.com/gitlab-org/gitlab-ce).
* | | Merge branch '34533-speed-up-group-project-authorizations' into 'master'Douwe Maan2017-08-151-0/+30
|\ \ \ | |_|/ |/| | | | | | | | | | | | | | Speed up Group#user_ids_for_project_authorizations Closes #36182 See merge request !13508
| * | Speed up Group#user_ids_for_project_authorizationsNick Thomas2017-08-141-0/+30
| |/
* | Merge remote-tracking branch 'upstream/master' into ↵Lin Jen-Shin2017-08-1410-39/+358
|\ \ | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 36089-handle-ref-failure-better * upstream/master: (47 commits) Update CHANGELOG.md for 9.4.5 Update charlock_holmes add a changelog entry switch to multi-line before block restructure the #new_key notification spec don't send devise notifications to the ghost user reset_delivered_emails before testing #new_key skip the :read_project check for new_project_member move the member spec to be with the other ones add a spec for new_group_member add a spec for never emailing the ghost user rubocop fix a membership with no user is always notifiable check notifiability for more emails add Member#notifiable?(type, opts) make NotificationRecipient a little more customizable Add notes about database performance for MySQL fix confidential border issue as well as confidential styles leaking on new MR Migrate force push check to Gitaly Add option to disable project export on instance ...
| * Merge branch '32004-use-timecop-safe-mode' into 'master'Robert Speicher2017-08-111-7/+3
| |\ | | | | | | | | | | | | | | | | | | Enable Timecop safe mode Closes #32004 See merge request !13498
| | * Enable Timecop safe mode32004-use-timecop-safe-modeRémy Coutable2017-08-111-7/+3
| | | | | | | | | | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
| * | Better caching and indexing of broadcast messagesYorick Peterse2017-08-111-1/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Caching of BroadcastMessage instances has been changed so a cache stays valid as long as the default cache expiration time permits, instead of the cache being expired after 1 minute. When modifying broadcast messages the cache is flushed automatically. To remove the need for performing sequence scans on the "broadcast_messages" table we also add an index on (starts_at, ends_at, id), permitting PostgreSQL to use an index scan to get all necessary data. Finally this commit adds a few NOT NULL constraints to the table to match the Rails validations. Fixes gitlab-org/gitlab-ce#31706
| * | Merge branch 'split-events-into-push-events' into 'master'Sean McGivern2017-08-117-31/+301
| |\ \ | | | | | | | | | | | | | | | | Use a separate table for storing push events See merge request !12463
| | * | Use a specialized class for querying eventsYorick Peterse2017-08-101-0/+51
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This changes various controllers to use the new EventCollection class for retrieving events. This class uses a JOIN LATERAL query on PostgreSQL to retrieve queries in a more efficient way, while falling back to a simpler / less efficient query for MySQL. The EventCollection class also includes a limit on the number of events to display to prevent malicious users from cycling through all events, as doing so could put a lot of pressure on the database. JOIN LATERAL is only supported on PostgreSQL starting with version 9.3.0 and as such this optimisation is only used when using PostgreSQL 9.3 or newer.
| | * | Migrate events into a new formatYorick Peterse2017-08-106-31/+250
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit migrates events data in such a way that push events are stored much more efficiently. This is done by creating a shadow table called "events_for_migration", and a table called "push_event_payloads" which is used for storing push data of push events. The background migration in this commit will copy events from the "events" table into the "events_for_migration" table, push events in will also have a row created in "push_event_payloads". This approach allows us to reclaim space in the next release by simply swapping the "events" and "events_for_migration" tables, then dropping the old events (now "events_for_migration") table. The new table structure is also optimised for storage space, and does not include the unused "title" column nor the "data" column (since this data is moved to "push_event_payloads"). == Newly Created Events Newly created events are inserted into both "events" and "events_for_migration", both using the exact same primary key value. The table "push_event_payloads" in turn has a foreign key to the _shadow_ table. This removes the need for recreating and validating the foreign key after swapping the tables. Since the shadow table also has a foreign key to "projects.id" we also don't have to worry about orphaned rows. This approach however does require some additional storage as we're duplicating a portion of the events data for at least 1 release. The exact amount is hard to estimate, but for GitLab.com this is expected to be between 10 and 20 GB at most. The background migration in this commit deliberately does _not_ update the "events" table as doing so would put a lot of pressure on PostgreSQL's auto vacuuming system. == Supporting Both Old And New Events Application code has also been adjusted to support push events using both the old and new data formats. This is done by creating a PushEvent class which extends the regular Event class. Using Rails' Single Table Inheritance system we can ensure the right class is used for the right data, which in this case is based on the value of `events.action`. To support displaying old and new data at the same time the PushEvent class re-defines a few methods of the Event class, falling back to their original implementations for push events in the old format. Once all existing events have been migrated the various push event related methods can be removed from the Event model, and the calls to `super` can be removed from the methods in the PushEvent model. The UI and event atom feed have also been slightly changed to better handle this new setup, fortunately only a few changes were necessary to make this work. == API Changes The API only displays push data of events in the new format. Supporting both formats in the API is a bit more difficult compared to the UI. Since the old push data was not really well documented (apart from one example that used an incorrect "action" nmae) I decided that supporting both was not worth the effort, especially since events will be migrated in a few days _and_ new events are created in the correct format.
| * | | Merge branch 'appearances-caching-and-schema' into 'master'Sean McGivern2017-08-111-0/+35
| |\ \ \ | | |_|/ | |/| | | | | | | | | | | | | | | | | | Cache Appearance instances in Redis Closes #36066 and #31698 See merge request !13433
| | * | Cache Appearance instances in Redisappearances-caching-and-schemaYorick Peterse2017-08-101-0/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This caches the result of Appearance.first in a similar fashion to how ApplicationSetting instances are cached. We also add some NOT NULL constraints to the table and correct the timestamp types. Fixes gitlab-org/gitlab-ce#36066, fixes gitlab-org/gitlab-ce#31698
* | | | Merge remote-tracking branch 'upstream/master' into ↵Lin Jen-Shin2017-08-116-7/+7
|\ \ \ \ | |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 36089-handle-ref-failure-better * upstream/master: Fix merge request diff deserialisation when too_large was absent Bumps omniauth-ldap gem version to 2.0.4 Remove an unnecessary `let` in spec/features/projects/user_edits_files_spec.rb Remove documentation about rules that are now enforced by RuboCop Enable the RSpec/HookArgument cop and auto-correct offenses
| * | | Enable the RSpec/HookArgument cop and auto-correct offensesRobert Speicher2017-08-106-7/+7
| | |/ | |/|
* | | Merge remote-tracking branch 'upstream/master' into ↵Lin Jen-Shin2017-08-118-32/+77
|\ \ \ | |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 36089-handle-ref-failure-better * upstream/master: (62 commits) Update gitlab.po: Missing 'r' in "Fouché" that comes from "Fourcher" verb. Docs: update user docs index Fix minor typos in views Fix Layout/SpaceBeforeBlockBraces violation in bin/changelog_spec Merge branch 'rs-alphanumeric-ssh-params' into 'security-9-4' Merge branch 'import-symlinks-9-3' into 'security-9-3' Fix wrong method call on prometheus histogram Document new all-in-one Helm chart - docs Fix 404 on link path Fix line numbers not matching up to code in code viewer. Hide overflow-x on collapsed sidebar removed global use of breakpoint checker Increase performance of the breakpoint size checker Filter sensitive query string parameters from NGINX access logs Added a template for database changes Render new issue link in failed job as a regular link instead of a UJS one Include RE2 in the upgrade docs Remove affix plugin from issuable sidebar with new navigation Fix linter error alternative route for download archive ...
| * | Merge branch 'mk-fix-case-insensitive-redirect-matching' into 'master'Sean McGivern2017-08-102-26/+60
| |\ \ | | |/ | |/| | | | | | | Fix conflicting redirect search See merge request !13357
| | * Fix stylemk-fix-case-insensitive-redirect-matchingMichael Kozono2017-08-091-3/+3
| | |
| | * Fix conflicting redirect searchMichael Kozono2017-08-082-26/+60
| | |
| * | Prevent user from changing username with container registry tagsMichael Kozono2017-08-091-0/+11
| | |
| * | Enable the Layout/SpaceBeforeBlockBraces coprc/enable-the-Layout/SpaceBeforeBlockBraces-copRémy Coutable2017-08-095-6/+6
| |/ | | | | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
* | Detect if we didn't create the ref soonerLin Jen-Shin2017-08-091-0/+21
|/
* Merge branch ↵Rémy Coutable2017-08-081-0/+5
|\ | | | | | | | | | | | | | | | | '36010-api-v4-allows-setting-a-branch-that-doesn-t-exist-as-the-default-one' into 'master' Resolve "API v4 allows setting a branch that doesn't exist as the default one" Closes #36010 See merge request !13359
| * Add checks for branch existence before changing HEAD36010-api-v4-allows-setting-a-branch-that-doesn-t-exist-as-the-default-oneblackst0ne2017-08-081-0/+5
| |
* | Merge branch 'gitaly-find-commit' into 'master'Dmitriy Zaporozhets2017-08-081-3/+1
|\ \ | | | | | | | | | | | | | | | | | | Incorporate Gitaly's CommitService.FindCommit RPC Closes gitaly#402 See merge request !13094
| * | Incorporate Gitaly's CommitService.FindCommit RPCgitaly-find-commitAlejandro Rodríguez2017-08-071-1/+1
| | |
| * | Refactor Gitlab::Git::Commit to include a repositoryAlejandro Rodríguez2017-08-071-2/+0
| | |
* | | Merge branch '31207-clean-locked-merge-requests' into 'master'Stan Hu2017-08-081-0/+26
|\ \ \ | |_|/ |/| | | | | | | | | | | | | | Resolve "Store MergeWorker JID on merge request, and clean up stuck merges" Closes #31207 See merge request !13207
| * | Store MergeWorker JID on merge request, and clean up stuck mergesOswaldo Ferreira2017-08-071-0/+26
| | |
* | | Merge branch 'feature/migrate-find-commits-by-message-to-gitaly' into 'master'Robert Speicher2017-08-071-9/+21
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Migrate Repository#find_commits_by_message to Gitaly Closes gitaly#443 See merge request !13268
| * | | Migrate Repository#find_commits_by_message to Gitalyfeature/migrate-find-commits-by-message-to-gitalyAhmad Sherif2017-08-071-9/+21
| |/ / | | | | | | | | | Closes gitaly#443
* | | Merge branch '32844-issuables-performance' into 'master'Sean McGivern2017-08-071-4/+0
|\ \ \ | | | | | | | | | | | | | | | | Issuables: Move some code from create services to Sidekiq workers See merge request !13326
| * | | Move some after_create parts to worker to improve performance32844-issuables-performanceJarka Kadlecova2017-08-071-4/+0
| | | |
* | | | Merge branch '35761-convdev-perc' into 'master'Sean McGivern2017-08-071-0/+11
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Store & use ConvDev percentages returned by Version app Closes #35761 See merge request !13217
| * | | | Store & use ConvDev percentages returned by Version app35761-convdev-percJarka Kadlecova2017-08-071-0/+11
| | | | |
* | | | | Merge branch 'backport-ee-2251' into 'master'Sean McGivern2017-08-071-10/+0
|\ \ \ \ \ | |_|_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | Backport changes in https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/2551 to CE Closes #21391 See merge request !13275
| * | | | Backport changes in ↵Nick Thomas2017-08-071-10/+0
| | |_|/ | |/| | | | | | | | | | https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/2551 to CE
* | | | Merge branch 'group-milestone-references-system-notes' into 'master'Robert Speicher2017-08-071-7/+31
|\ \ \ \ | |/ / / |/| | | | | | | | | | | | | | | | | | | Support group milestone references Closes #34778 See merge request !13289
| * | | Support references to group milestonesSean McGivern2017-08-071-7/+31
| |/ / | | | | | | | | | | | | Group milestones can only be referred to by name, not IID. They also do not support cross-project references.
* | | Merge branch 'wiki_title' into 'master'Robert Speicher2017-08-072-13/+36
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | add feature rename wiki title Closes #27800 See merge request !10069
| * | | Allow wiki pages to be renamed in the UIwendy04022017-08-032-13/+36
| | | |
* | | | Merge branch 'dashboard-projects-controller-query-performance' into 'master'Sean McGivern2017-08-071-0/+24
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | Improve various parts of Dashboard::ProjectsController See merge request !13319
| * | | | Memoize a user's personal projects countYorick Peterse2017-08-071-0/+24
| | |/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The method User#projects_limit_left would run "personal_projects.count" but such a query is not memoized. As a result multiple calls to User#projects_limit_left would result in multiple COUNT(*) queries being executed. To work around this this commit adds User#personal_projects_count which simply memoizes the result of the COUNT(*) in an instance variable.
* | | | GRPC::Unavailable (< GRPC::BadStatus) is wrapped in a CommandErrorBob Van Landuyt2017-08-071-17/+18
| | | |
* | | | Merge branch 'master' into 'bvl-nfs-circuitbreaker'Douwe Maan2017-08-071-10/+30
|\ \ \ \ | |/ / / | | | | | | | | | | | | # Conflicts: # app/models/repository.rb # spec/models/repository_spec.rb
| * | | Merge branch 'feature/migrate-last-commit-for-path-to-gitaly' into 'master'Robert Speicher2017-08-041-10/+30
| |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Migrate Repository#last_commit_for_path to Gitaly Closes gitaly#433 See merge request !13200
| | * | | Migrate Repository#last_commit_for_path to GitalyAhmad Sherif2017-08-031-10/+30
| | | | | | | | | | | | | | | | | | | | Closes gitaly#433
* | | | | Add a Circuitbreaker for storage pathsBob Van Landuyt2017-08-041-1/+68
|/ / / /