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-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-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
2017-01-16fix nil path errorJames Lopez
2017-01-16Remove rollback and fixed a couple of issuesJames Lopez
2017-01-16Fix remove dot git migration failing when user has no projectsJames Lopez
- Fixed typo - Fixed migration when there are no projects and path is nil - Added path rollback that was missing if there was a SQL error
2017-01-15Backport backend work for time tracking.Ruben Davila
2017-01-13Add check for new path existenceJames Lopez
2017-01-12Merge branch 'fill-authorized-projects' into 'master' Douwe Maan
Fill missing authorized projects rows Closes #26194 See merge request !8476
2017-01-12Merge branch 'fix-more-orphans-remove-undeleted-groups' into 'master' Douwe Maan
Remove more orphans when removing stray namespaces Closes #25146 See merge request !7841
2017-01-12Add support for PlantUML diagrams in Asciidoc.Horacio Sanson
This MR enables rendering of PlantUML diagrams in Asciidoc documents. To add a PlantUML diagram all we need is to include a plantuml block like: ``` [plantuml, id="myDiagram", width="100px", height="100px"] -- bob -> alice : ping alice -> bob : pong -- ``` The plantuml block is substituted by an HTML img element with *src* pointing to an external PlantUML server. This MR also add a PlantUML integration section to the Administrator -> Settings page to configure the PlantUML rendering service and to enable/disable it. Closes: #17603
2017-01-11Fill missing authorized projects rowsYorick Peterse
This ensures that the project_authorizations rows exist for all users for which this data has not yet been populated. Fixes #26194
2017-01-11Remove more orphans when removing stray namespacesYorick Peterse
Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/25146
2017-01-09Merge branch 'remove-project-authorizations-id-column' into 'master' Douwe Maan
Remove the project_authorizations.id column See merge request !8479
2017-01-09Merge branch 'track_last_used_date_of_ssh_keys' into 'master' Sean McGivern
Record and show last used date of SSH Keys See merge request !8113
2017-01-08Record and show last used date of SSH KeysVincent Wong
Addresses: Issue #13810 1. Adds a last_used_at attribute to the Key table/model 2. Update a key's last_used_at whenever it gets used 3. Display how long ago an ssh key was last used
2017-01-08Remove the project_authorizations.id columnYorick Peterse
This column used to be a 32 bits integer, allowing for only a maximum of 2 147 483 647 rows. Given enough users one can hit this limit pretty quickly, as was the case for GitLab.com. Changing this type to bigint (= 64 bits) would give us more space, but we'd eventually hit the same limit given enough users and projects. A much more sustainable solution is to simply drop the "id" column. There were only 2 lines of code depending on this column being present, and neither truly required it to be present. Instead the code now uses the "project_id" column combined with the "user_id" column. This means that instead of something like this: DELETE FROM project_authorizations WHERE user_id = X AND id = Y; We now run the following when removing rows: DELETE FROM project_authorizations WHERE user_id = X AND project_id = Y; Since both user_id and project_id are indexed this should not slow down the DELETE query. This commit also removes the "dependent: destroy" clause from the "project_authorizations" relation in the User and Project models. Keeping this prevents Rails from being able to remove data as it relies on an "id" column being present. Since the "project_authorizations" table has proper foreign keys set up (with cascading removals) we don't need to depend on any Rails logic.
2017-01-06Whitelist next project names: assets, profile, publicDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2016-12-28Revert MattermostNotificationService and SlackNotificationService to ↵Felipe Artur
MattermostService and SlackService
2016-12-27Merge branch 'master' into 'dz-rename-reserved-project-names'Dmitriy Zaporozhets
# Conflicts: # db/schema.rb
2016-12-27Merge branch 'feature/1376-allow-write-access-deploy-keys' into 'master' Douwe Maan
Allow to add deploy keys with write-access Closes #1376 See merge request !7383
2016-12-27Merge branch 'dz-rename-invalid-users' into 'master' Douwe Maan
Rename users with namespace ending with .git See merge request !8309
2016-12-27Disable timeout while removing servicesZ.J. van de Weg
On GitLab.com this migration could take about 3 minutes. Disabling the statement we know we have enough time to complete this. Fixes #25976
2016-12-26Rename users with namespace ending with .gitDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2016-12-26Merge branch 'feature/more-storage-statistics' into 'master' Sean McGivern
Add more storage statistics See merge request !7754
2016-12-24Removed return from reserved project migrationYorick Peterse
This return is redundant as the query now uses "WHERE EXISTS (...)" to filter out projects without a namespace.
2016-12-24Fix parallel renaming of reserved projectsYorick Peterse
This ensures threads don't re-use the same connection object, and use fewer queries to perform the work.
2016-12-24Rename projects with reserved path namesDmitriy Zaporozhets
We cant have project with name 'project' or 'tree' anymore. This merge request containts a migration that will find and rename all projects using reserved names by adding N digit to the end of the name. Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2016-12-22Exclude non existent repository storages.Ruben Davila
2016-12-21Add more storage statisticsMarkus Koller
This adds counters for build artifacts and LFS objects, and moves the preexisting repository_size and commit_count from the projects table into a new project_statistics table. The counters are displayed in the administration area for projects and groups, and also available through the API for admins (on */all) and normal users (on */owned) The statistics are updated through ProjectCacheWorker, which can now do more granular updates with the new :statistics argument.