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

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-08-18Remove snowman parameters from links to issues URLtnir-remove-snowmans-from-issue-linksTakuya Noguchi
Signed-off-by: Takuya Noguchi <takninnovationresearch@gmail.com>
2022-04-20docs: Document Gitaly backpressureJohn Cai
There are a number of knobs in Gitaly to tune backpressure Gitaly can impose on services that call it. This commit documents these.
2022-04-12README: Add link to backpressure videoJohn Cai
Add a link in the presentations section of the README to a video explaining the different ways to configure request limits (or backpressure) in Gitaly.
2021-10-13Merge branch 'ps-update-go-readme' into 'master'John Cai
documentation: Update Go version in README.md See merge request gitlab-org/gitaly!3978
2021-10-13Fix a typo in READMEVipul Kumar
Fix spell of necessary (neccesairy -> necessary).
2021-10-13documentation: Update Go version in README.mdPavlo Strokov
2021-10-12README: Bump minimum required Git versionPatrick Steinhardt
In commit c8c774edc (git: Bump minimum required Git version to v2.33.0, 2021-10-06), we have bumped the minimum required Git version to v2.33.0, but forgot to adjust our README to point out this new requirement. Adapt the version in there, too.
2021-04-27Update dashboard URL and screenshotsTakuya Noguchi
Signed-off-by: Takuya Noguchi <takninnovationresearch@gmail.com>
2021-04-20README.md: Document updated Go version requirementsPatrick Steinhardt
Our README.md still pretends that we support Go 1.13 and newer. This has changed a few releases ago already and thus isn't accurate: first, we never suppord "and newer", but only the latest two releases. And second, we now support Go 1.15 and 1.16. Update the file to explicitly spell out the two supported releases.
2021-04-09git: Bump minimum git version to git v2.31.0Patrick Steinhardt
With git v2.31.0, several new features have been introduced which we want to make use of: - Passing git configuration via a new set of enviroment variables `GIT_CONFIG_COUNT`, `GIT_CONFIG_KEY_$n` and `GIT_CONFIG_VALUE_$n`. This allows us to configure credentials without leaking them via the command line. - Atomic fetches, which allow us to make use of transactions when fetching many references via git-fetch(1). - A performance optmization for fetches from a repository which has a huge amount of references. Bump the minimum required git version to v2.31.0. Distributions of Gitaly (CNG, GDK, Omnibus) have been adapted to use Gitaly's `make git` target already and are thus using git v2.31.1.
2021-03-06Update Ruby from 2.6 to 2.7 on docsTakuya Noguchi
Signed-off-by: Takuya Noguchi <takninnovationresearch@gmail.com>
2021-02-06fix typo: spell correction for observability markdown documentunknown
2020-11-04README: Fix supported Git versionsPatrick Steinhardt
While our minimum required Git version was bumped to v2.29.0, the README claims that we support v2.26.x and v2.27.x. Fix this inconsistency.
2020-10-29README: Fix the broken link to the roadmapÆvar Arnfjörð Bjarmason
The search for ~Gitaly added in 3bd9e88e ("Use epics for Gitaly roadmap", 2018-09-12) didn't work anymore, I don't know why. But looking at epics zj authored (https://gitlab.com/groups/gitlab-org/-/epics?scope=all&utf8=%E2%9C%93&state=opened&author_username=zj-gitlab) it seems searching on group::gitaly is the right thing now.
2020-07-03Update proposals to rfcs in docsZeger-Jan van de Weg
2020-06-02Upgrade to Git 2.27Christian Couder
- update Docker base image - update CI testing matrix Part of: https://gitlab.com/gitlab-org/gitaly/-/issues/2829
2020-04-08Upgrade to Git 2.26Christian Couder
- update Docker base image - update CI testing matrix Part of: https://gitlab.com/gitlab-org/gitaly/issues/2497
2020-04-03Merge branch 'osw-enable-stackdriver-profiler' into 'master'Jacob Vosmaer
Add stackdriver profiler support with LabKit See merge request gitlab-org/gitaly!1842
2020-04-02Add stackdriver profiler support with LabKitOswaldo Ferreira
Bumps Labkit version in order to be able to start Gitaly / Praefect with the Go Profiler. Once Gitaly is compiled with continuous profiling, the profiler configuration can be set via GITLAB_CONTINUOUS_PROFILING environment variable: ```shell GITLAB_CONTINUOUS_PROFILING="stackdriver?service=gitaly&service_version=1.0.1&project_id=test-123 ./binary" ```
2020-03-26golang: Drop support for Golang 1.12Zeger-Jan van de Weg
Now both omnibus[1] and CNG[2] use Golang 1.13, we can drop support for Go 1.12. This would allow us to use 1.13 features if required. Further it allows us to only support Go versions which are suppported by Google. This change removes the Go 1.12 jobs from the CI pipeline, and updates the documentation to reflect that one should use 1.13.9 or up from now on. Further, it removes an implementation copied from Go 1.13s reflect package, and uses the the original now we can depend on it. [1]: https://gitlab.com/gitlab-org/omnibus-gitlab/-/issues/5179 [2]: https://gitlab.com/gitlab-org/build/CNG/-/merge_requests/415
2020-02-17Document Gitaly's use of feature flagsZeger-Jan van de Weg
Change should be merged after: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/24679
2019-12-11Upgrade to Git 2.24Pavlo Strokov
- update Docker base image - extend CI testing matrix Part of: https://gitlab.com/gitlab-org/gitaly/issues/2170
2019-12-10Add Postgres config support to PraefectJacob Vosmaer
2019-11-15Drop support for Go 1.11jramsay
Closes: https://gitlab.com/gitlab-org/gitaly/issues/2076
2019-10-02Move the user documentation in GitLab CEAchilleas Pipinellis
2019-08-20Apply suggestion to README.mdOswaldo Ferreira
2019-08-19Add link to Gitaly talk at TheConfOswaldo Ferreira
2019-07-16Merge branch 'zj-bump-git-version-test-matrix' into 'master'Jacob Vosmaer
Add Git 2.22 to the test pipeline See merge request gitlab-org/gitaly!1359
2019-07-12Allow explicit missing ref error in testsZeger-Jan van de Weg
In https://gitlab.com/gitlab-org/git/commit/014ade748420b074a06dbb7f5fb974b5e6184f4 the behaviour of upload-pack changed to be explicit about missing refs. In the Gitaly test the assertion was made against the output of the command being empty. This is no longer the case, so now an assertion is made against the output. This itself might break in the furture, but given the test is about hidden refs it's probably better to have this test break somewhere in the future than remove the assertion or weaken it.
2019-07-10Add prometheus demo video linkJacob Vosmaer
2019-06-05Replace govendor with 'go mod'Jacob Vosmaer
2019-05-23Fix link to docsCindy Pallares 🦉
2019-05-20Expend on Gitaly observibilityZeger-Jan van de Weg
Working toward one place to find all up to date documentation, I've expended on our observibility story at GitLab.com.
2019-05-16Change video links to Youtube linksJames Ramsay
2019-04-16Test and require Git 2.21Zeger-Jan van de Weg
Prior to this change, Git 2.18 was the minimal version GitLab required. This commit will require 2.21. This allows GitLab to leverage newer Git features. Part of: https://gitlab.com/gitlab-org/gitlab-ce/issues/54255
2019-04-02Add link to training session 6Jacob Vosmaer
2019-03-26Drop support for Golang 1.10Zeger-Jan van de Weg
Fixes https://gitlab.com/gitlab-org/gitaly/issues/1516
2019-03-26Add link to Gitaly training 5Jacob Vosmaer
2019-03-20Add link to git object quarantine documentationJacob Vosmaer
2019-03-19Add link to gitaly training session 4Jacob Vosmaer
2019-03-12Add link to video of third training sessionJacob Vosmaer
2019-03-05Merge branch 'zj-update-documentation' into 'master'Paul Okstad
Update documentation and add a index See merge request gitlab-org/gitaly!1111
2019-03-05Link to part 2 training videoJacob Vosmaer
2019-03-01Update documentation and add a indexZeger-Jan van de Weg
If one wanted to read all the documentation in the Gitaly repository the best way to do so was opening the doc directory. Structure was missing. This commit updates the documentation and adds an index page.
2019-02-26Add link to training video from 2019-02-21Jacob Vosmaer
2019-01-11Add distributed tracing support with LabKitAndrew Newdigate
2019-01-02Update docs about monitoring and READMETakuya Noguchi
Signed-off-by: Takuya Noguchi <takninnovationresearch@gmail.com>
2018-12-10README cleanupJacob Vosmaer
2018-11-28Update version requirements for GitalyZeger-Jan van de Weg
Closes gitlab-org/gitaly#1407
2018-11-05Upgraded Git minimum version to 2.18.0Francisco Javier López