Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge branch 'master' into per-project-pipeline-iid | Shinya Maeda | 2018-06-02 | 1 | -0/+13 |
|\ | |||||
| * | Merge branch '46487-add-support-for-jupyter-in-gitlab-via-kubernetes' into ↵ | Dmitriy Zaporozhets | 2018-06-01 | 1 | -0/+13 |
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | 'master' Resolve "Add support for Jupyter in GitLab via Kubernetes" Closes #46487 See merge request gitlab-org/gitlab-ce!19019 | ||||
| | * | Fix schema.rb46487-add-support-for-jupyter-in-gitlab-via-kubernetes | Dmitriy Zaporozhets | 2018-05-31 | 1 | -1/+1 |
| | | | | | | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | ||||
| | * | Fix column order for jupyter table in schema.rb | Dmitriy Zaporozhets | 2018-05-31 | 1 | -1/+1 |
| | | | | | | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | ||||
| | * | Improve jupyter app db migrations | Dmitriy Zaporozhets | 2018-05-31 | 1 | -0/+2 |
| | | | | | | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | ||||
| | * | Merge remote-tracking branch 'origin/master' into ↵ | Dmitriy Zaporozhets | 2018-05-30 | 1 | -1/+18 |
| | |\ | | | | | | | | | | | | | 46487-add-support-for-jupyter-in-gitlab-via-kubernetes | ||||
| | * | | Rename clusters_applications_jupyters to uncountable | Dmitriy Zaporozhets | 2018-05-30 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | ||||
| | * | | Revert changes to db/schema | Dmitriy Zaporozhets | 2018-05-30 | 1 | -26/+24 |
| | | | | | | | | | | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | ||||
| | * | | Add oauth reference to jupyter cluster app | Dmitriy Zaporozhets | 2018-05-25 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | ||||
| | * | | Add support for Jupyter in GitLab via Kubernetes | Dmitriy Zaporozhets | 2018-05-25 | 1 | -24/+36 |
| | | | | | | | | | | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | ||||
* | | | | Merge branch 'master' into per-project-pipeline-iid | Shinya Maeda | 2018-06-01 | 1 | -2/+3 |
|\ \ \ \ | |/ / / | |||||
| * | | | Export assigned issues in iCalendar feed | Imre Farkas | 2018-05-31 | 1 | -2/+2 |
| | |/ | |/| | |||||
| * | | Merge branch 'blackst0ne-squash-and-merge-in-gitlab-core-ce' into 'master' | Phil Hughes | 2018-05-30 | 1 | -0/+1 |
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | Resolve "Squash and merge in GitLab Core (CE)" Closes #34591 See merge request gitlab-org/gitlab-ce!18956 | ||||
| | * | | Add 'squash and rebase' feature to CEblackst0ne-squash-and-merge-in-gitlab-core-ce | blackst0ne | 2018-05-29 | 1 | -0/+1 |
| | | | | |||||
* | | | | Merge branch 'master' into per-project-pipeline-iid | Shinya Maeda | 2018-05-30 | 1 | -1/+17 |
|\ \ \ \ | |/ / / | |||||
| * | | | Adds migration to ensure all remote mirror columns get created | Tiago Botelho | 2018-05-29 | 1 | -1/+1 |
| | | | | |||||
| * | | | Added partial index for merge requests | Yorick Peterse | 2018-05-28 | 1 | -1/+2 |
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This index is added on `(target_project_id, iid)` and has a `WHERE state = 'opened'` condition. Using this index we can drastically improve the performance of the query used to count the total number of merge requests in a group. Without this index the query would eventually perform the following: -> Index Scan using index_merge_requests_on_target_project_id_and_iid on merge_requests (cost=0.43..4.89 rows=7 width=4) (actual time=0.058..0.353 rows=6 loops=228) Index Cond: (target_project_id = projects.id) Filter: ((state)::text = 'opened'::text) Rows Removed by Filter: 141 Buffers: shared hit=34351 dirtied=1 Out of the ~180 milliseconds the entire query would take, around 170 milliseconds was spent in just this segment. With the index in place, the above segment is turned into the following: -> Index Only Scan using yorick_test on merge_requests (cost=0.42..0.55 rows=7 width=4) (actual time=0.004..0.010 rows=6 loops=228) Index Cond: (target_project_id = projects.id) Heap Fetches: 419 Buffers: shared hit=1381 The index also reduces the total query time to roughly 10 milliseconds. | ||||
| * | | Persist truncated note diffs on a new table45190-create-notes-diff-files | Oswaldo Ferreira | 2018-05-24 | 1 | -0/+15 |
| |/ | | | | | | | | | We request Gitaly in a N+1 manner to build discussion diffs. Once the diffs are from different revisions, it's hard to make a single request to the service in order to build the whole response. With this change we solve this problem and simplify a lot fetching this piece of info. | ||||
* | | Merge branch 'master' into per-project-pipeline-iid | Shinya Maeda | 2018-05-28 | 1 | -4/+4 |
|\ \ | |/ | |||||
| * | Increase text limit for GPG keys (mysql only).ab-46530-mediumtext-for-gpg-keys | Andreas Brandl | 2018-05-22 | 1 | -1/+1 |
| | | | | | | | | Closes #46530. | ||||
| * | Add NOT NULL constraints to project_authorizations. | Andreas Brandl | 2018-05-21 | 1 | -4/+4 |
| | | | | | | | | Closes #32258. | ||||
* | | Merge branch 'master' into per-project-pipeline-iid | Shinya Maeda | 2018-05-17 | 1 | -3/+4 |
|\ \ | |/ | |||||
| * | Add a unique and not null constraint on the project_features.project_id column | Stan Hu | 2018-05-15 | 1 | -3/+3 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit has two migrations: 1. The first prunes duplicate rows in the project_features table and leaves the row with the highest ID. Since the behavior was indeterministic before and depended on which row the database decided to use, this change at least makes the permissions consistent. For example, in some cases, the Wiki may have been disabled but enabled in another entry. 2. The second adds a non-null constraint on the project_features.project_id column. Closes #37882 Fixes a significant part of gitlab-com/migration#408. We found that we were overcounting Wikis because of these duplicates. On GitLab.com, there are 56 rows with duplicate entries by project_id, and 16,661 rows with NULL project_id values. | ||||
| * | Add index on runner_type for ci_runners46010-add-index-to-runner-type | Dylan Griffith | 2018-05-15 | 1 | -1/+2 |
| | | | | | | | | | | We use this to filter runner and will use this increasingly in future instead of is_shared so it should be indexed | ||||
* | | Merge branch 'master' into per-project-pipeline-iid | Shinya Maeda | 2018-05-10 | 1 | -4/+5 |
|\ \ | |/ | |||||
| * | Merge branch 'master' into 'fix-project-mirror-data-schema' | Douwe Maan | 2018-05-09 | 1 | -2/+3 |
| |\ | | | | | | | | | | # Conflicts: # db/schema.rb | ||||
| | * | Merge branch 'fix/gb/add-missing-foreign-key-to-database-schema' into 'master' | Kamil Trzciński | 2018-05-09 | 1 | -0/+1 |
| | |\ | | | | | | | | | | | | | | | | | Add missing pipeline build foreign key to the schema See merge request gitlab-org/gitlab-ce!18846 | ||||
| | | * | Add missing pipeline build foreign key to the schema | Grzegorz Bizon | 2018-05-09 | 1 | -0/+1 |
| | | | | |||||
| | * | | Add DB constraint ci_runners.runner_type not null | Dylan Griffith | 2018-05-09 | 1 | -2/+2 |
| | |/ | |||||
| * | | Adds unique constraint to ProjectMirrorData project_id index | Tiago Botelho | 2018-05-08 | 1 | -2/+2 |
| | | | |||||
| * | | Adds not null constraint to ProjectMirrorData's foreign_key project_id | Tiago Botelho | 2018-05-08 | 1 | -2/+2 |
| |/ | |||||
* | | Merge branch 'master' into per-project-pipeline-iid | Shinya Maeda | 2018-05-09 | 1 | -2/+2 |
|\ \ | |/ | |||||
| * | Add MakeRemoteMirrorsDisabledByDefault DB migration | Ash McKenzie | 2018-05-08 | 1 | -2/+2 |
| | | |||||
* | | Merge branch 'master' into per-project-pipeline-iid | Shinya Maeda | 2018-05-08 | 1 | -2/+84 |
|\ \ | |/ | |||||
| * | Merge branch '42099-port-push-mirroring-to-ce-ce-port-v-2' into 'master' | Douwe Maan | 2018-05-07 | 1 | -0/+24 |
| |\ | | | | | | | | | | | | | | | | | | | CE backport of Backports Push Mirrors to CE Closes #42099 See merge request gitlab-org/gitlab-ce!18715 | ||||
| | * | Adds remote mirror table migration | Tiago Botelho | 2018-05-07 | 1 | -3/+27 |
| | | | |||||
| | * | Backports every CE related change from ee-5484 to CE | Tiago Botelho | 2018-05-07 | 1 | -3/+3 |
| | | | |||||
| * | | Merge branch 'live-trace-v2' into 'master' | Grzegorz Bizon | 2018-05-07 | 1 | -0/+10 |
| |\ \ | | |/ | |/| | | | | | | | | | | | | | New CI Job live-trace architecture (v2) Closes #44935 See merge request gitlab-org/gitlab-ce!18169 | ||||
| | * | Merge branch 'master' into live-trace-v2 | Shinya Maeda | 2018-05-07 | 1 | -1/+49 |
| | |\ | |||||
| | * \ | Merge branch 'master' into live-trace-v2 | Shinya Maeda | 2018-05-03 | 1 | -0/+2 |
| | |\ \ | |||||
| | * | | | Fix schema version | Shinya Maeda | 2018-04-27 | 1 | -1/+1 |
| | | | | | |||||
| | * | | | Refactoring ci_job_trace to ci_build_trace | Shinya Maeda | 2018-04-26 | 1 | -11/+11 |
| | | | | | |||||
| | * | | | Merge branch 'master' into live-trace-v2 | Shinya Maeda | 2018-04-26 | 1 | -1/+9 |
| | |\ \ \ | |||||
| | * | | | | Chnage raw_data type to binary from text | Shinya Maeda | 2018-04-23 | 1 | -1/+1 |
| | | | | | | |||||
| | * | | | | Merge branch 'master' into live-trace-v2 | Shinya Maeda | 2018-04-23 | 1 | -2/+5 |
| | |\ \ \ \ | |||||
| | * \ \ \ \ | Merge branch 'master' into live-trace-v2 | Shinya Maeda | 2018-04-20 | 1 | -1/+3 |
| | |\ \ \ \ \ | |||||
| | * \ \ \ \ \ | Merge branch 'master' into live-trace-v2 | Shinya Maeda | 2018-04-17 | 1 | -0/+23 |
| | |\ \ \ \ \ \ | |||||
| | * | | | | | | | Add rake task and timestamped migration file for mysql raw_data MIDIUMTEXT | Shinya Maeda | 2018-04-06 | 1 | -1/+1 |
| | | | | | | | | | |||||
| | * | | | | | | | Merge branch 'master' into live-trace-v2 | Shinya Maeda | 2018-04-06 | 1 | -1/+3 |
| | |\ \ \ \ \ \ \ | |||||
| | * | | | | | | | | Fix migration file and schema | Shinya Maeda | 2018-04-05 | 1 | -12/+2 |
| | | | | | | | | | |