Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/db
AgeCommit message (Collapse)Author
2017-02-14Run two threads to improve migration running timeLin Jen-Shin
2017-02-14Remove inactive default email servicesLin Jen-Shin
Note that we no longer generate this by default. This is for clearing legacy default data.
2017-02-13Merge branch 'option-to-be-notified-of-own-activity' into 'master' Douwe Maan
Add option to receive email notifications about your own activity See merge request !8836
2017-02-13Merge branch 'sh-add-labels-index' into 'master' Yorick Peterse
Add indices to improve loading of labels page Closes #25413 See merge request !9121
2017-02-13Add indices to improve loading of labels pageStan Hu
2017-02-10Enforce use of add_concurrent_foreign_keyYorick Peterse
This adds a Rubocop rule to enforce the use of add_concurrent_foreign_key instead of the regular add_foreign_key method. This cop has been disabled for existing migrations so we don't need to change those.
2017-02-10Add index to ci_trigger_requests for commit_idStan Hu
https://gitlab.com/gitlab-org/gitlab-ce/pipelines.json makes a number of unindexed slow queries. This index should speed things up.
2017-02-09Migration does not require downtimeDouwe Maan
2017-02-09Satisfy the new rubocop :)Douwe Maan
2017-02-08Store group and project full name and full path in routes tableDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2017-02-07Refactor migration to not require downtimeRuben Davila
2017-02-07Use normal associations instead of polymorphic.Ruben Davila
We can't properly use foreign keys on columns that are configured for polymorphic associations which has disadvantages related to data integrity and storage. Given we only use time tracking for Issues and Merge Requests we're moving to the usage of regular associations.
2017-02-07Merge branch '21518_recaptcha_spam_issues' into 'master'Sean McGivern
Use reCaptcha when an issue identified as spam Closes #21518 See merge request !8846
2017-02-07Use reCaptcha when an issue identified as spamJarka Kadlecova
2017-02-06Merge branch 'master' into 'jej-pages-to-ce'James Edwards-Jones
# Conflicts: # db/schema.rb
2017-02-06Introduce maximum session time for terminal websocket connectionAdam Niedzielski
Store the value in application settings. Expose the value to Workhorse.
2017-02-04Add index to labels for `type` and project_id`Stan Hu
When loading pages that display the number of open issues, the backend runs a query such as: ```sql SELECT "labels"."id" FROM "labels" WHERE "labels"."type" IN ('ProjectLabel') AND "labels"."project_id" = 1000 ``` This results in an entire scan of the `labels` table. To optimize performance, add the appropriate index to the table. Closes #27676
2017-02-03Merge branch 'master' into jej-pages-picked-from-eeJames Edwards-Jones
2017-02-03Fixed DB schemaPhil Hughes
Changed how components are added in objects
2017-02-03Remove unnecessary include from RemoveBacklogListsFromBoards migrationDouglas Barbosa Alexandre
2017-02-03Remove backlog lists from boardsDouglas Barbosa Alexandre
2017-02-03Merge branch 'fwn-to-find-by-full-path' into 'master' Dmitriy Zaporozhets
replace `find_with_namespace` with `find_by_full_path` See merge request !8949
2017-02-03replace `find_with_namespace` with `find_by_full_path`Adam Pahlevi
add complete changelog for !8949
2017-02-02Use non-downtime migration for ApplicationSetting’s max_pages_sizeJames Edwards-Jones
2017-02-02Merge branch '20248-add-coverage-regex-in-job-yaml' into 'master'Douwe Maan
Add ability to define a coverage regex in the .gitlab-ci.yml Closes #20428 See merge request !7447
2017-02-01Add notified_of_own_activity column to users tableRichard Macklin
2017-02-01Pages domain model specsKamil Trzcinski
2017-02-01Added PagesDomainKamil Trzcinski
2017-02-01Implement proper verification of certificate's public_key against the ↵Kamil Trzcinski
private_key
2017-02-01Initial work on GitLab Pages updateKamil Trzcinski
2017-02-01Add GitLab PagesKamil Trzcinski
- The pages are created when build artifacts for `pages` job are uploaded - Pages serve the content under: http://group.pages.domain.com/project - Pages can be used to serve the group page, special project named as host: group.pages.domain.com - User can provide own 403 and 404 error pages by creating 403.html and 404.html in group page project - Pages can be explicitly removed from the project by clicking Remove Pages in Project Settings - The size of pages is limited by Application Setting: max pages size, which limits the maximum size of unpacked archive (default: 100MB) - The public/ is extracted from artifacts and content is served as static pages - Pages asynchronous worker use `dd` to limit the unpacked tar size - Pages needs to be explicitly enabled and domain needs to be specified in gitlab.yml - Pages are part of backups - Pages notify the deployment status using Commit Status API - Pages use a new sidekiq queue: pages - Pages use a separate nginx config which needs to be explicitly added
2017-01-31Merge branch '26852-fix-slug-for-openshift' into 'master' Kamil Trzciński
Avoid repeated dashes in $CI_ENVIRONMENT_SLUG Closes #26852 See merge request !8638
2017-01-30Add project ID index to `project_authorizations` table to optimize queriesStan Hu
As described in #27443, the `project_authorizations` table is often used to retrieve all team members of this project. This can lead to a number of slow queries impacting load times. This MR adds an index for just `project_id`. Closes #27443
2017-01-25Merge branch 'refresh-authorizations-fork-join' into 'master' Douwe Maan
Fix race conditions for AuthorizedProjectsWorker Closes #26194 and #26310 See merge request !8701
2017-01-25Fix race conditions for AuthorizedProjectsWorkerYorick Peterse
There were two cases that could be problematic: 1. Because sometimes AuthorizedProjectsWorker would be scheduled in a transaction it was possible for a job to run/complete before a COMMIT; resulting in it either producing an error, or producing no new data. 2. When scheduling jobs the code would not wait until completion. This could lead to a user creating a project and then immediately trying to push to it. Usually this will work fine, but given enough load it might take a few seconds before a user has access. The first one is problematic, the second one is mostly just annoying (but annoying enough to warrant a solution). This commit changes two things to deal with this: 1. Sidekiq scheduling now takes places after a COMMIT, this is ensured by scheduling using Rails' after_commit hook instead of doing so in an arbitrary method. 2. When scheduling jobs the calling thread now waits for all jobs to complete. Solution 2 requires tracking of job completions. Sidekiq provides a way to find a job by its ID, but this involves scanning over the entire queue; something that is very in-efficient for large queues. As such a more efficient solution is necessary. There are two main Gems that can do this in a more efficient manner: * sidekiq-status * sidekiq_status No, this is not a joke. Both Gems do a similar thing (but slightly different), and the only difference in their name is a dash vs an underscore. Both Gems however provide far more than just checking if a job has been completed, and both have their problems. sidekiq-status does not appear to be actively maintained, with the last release being in 2015. It also has some issues during testing as API calls are not stubbed in any way. sidekiq_status on the other hand does not appear to be very popular, and introduces a similar amount of code. Because of this I opted to write a simple home grown solution. After all, all we need is storing a job ID somewhere so we can efficiently look it up; we don't need extra web UIs (as provided by sidekiq-status) or complex APIs to update progress, etc. This is where Gitlab::SidekiqStatus comes in handy. This namespace contains some code used for tracking, removing, and looking up job IDs; all without having to scan over an entire queue. Data is removed explicitly, but also expires automatically just in case. Using this API we can now schedule jobs in a fork-join like manner: we schedule the jobs in Sidekiq, process them in parallel, then wait for completion. By using Sidekiq we can leverage all the benefits such as being able to scale across multiple cores and hosts, retrying failed jobs, etc. The one downside is that we need to make sure we can deal with unexpected increases in job processing timings. To deal with this the class Gitlab::JobWaiter (used for waiting for jobs to complete) will only wait a number of seconds (30 by default). Once this timeout is reached it will simply return. For GitLab.com almost all AuthorizedProjectWorker jobs complete in seconds, only very rarely do we spike to job timings of around a minute. These in turn seem to be the result of external factors (e.g. deploys), in which case a user is most likely not able to use the system anyway. In short, this new solution should ensure that jobs are processed properly and that in almost all cases a user has access to their resources whenever they need to have access.
2017-01-25Add ability to define a coverage regex in the .gitlab-ci.ymlLeandro Camargo
* Instead of using the proposed `coverage` key, this expects `coverage_regex`
2017-01-24Make the time estimate migrations reversibleRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-01-24Reject projects without namespaceZ.J. van de Weg
2017-01-24Quote class name in case it gets destroyedZeger-Jan van de Weg
2017-01-24Requeue projects pending deletionZ.J. van de Weg
There have been several bugs in the project deletion service and worker. Resulting in projects stuck in pending delete state, which limits users to create projects with the same name, keeps stale records in the database, and all kinds of other trouble. This post deployment migration requeues all these projects for deletion, in the hope that most of these could be removed by the updated code.
2017-01-23Avoid repeated dashes in $CI_ENVIRONMENT_SLUGNick Thomas
2017-01-21Add index for ci_runners if they are sharedKamil Trzcinski
2017-01-21Add index for ci_builds that makes shared runners query to run 50x faster.Kamil Trzcinski
2017-01-20Rename duplicate migrations and skip them if table/columns are already presentRémy Coutable
The time tracking feature was backported from EE to CE, thus the CE migrations should be uniquely named and should skip the actual migration content if the table/columns already exist (that means that the EE migrations were already performed). Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-01-18Merge branch 'backport-time-tracking-ce' into 'master' Douwe Maan
Backport timetracking to CE See merge request !8195
2017-01-16fix typo, added relevant specJames Lopez
2017-01-16fix typoJames Lopez
2017-01-16fix var inside loopJames Lopez
2017-01-16fix bug in loopJames Lopez
2017-01-16cope with namespace duplicated paths in any storageJames Lopez