## Developer Certificate of Origin + License By contributing to GitLab B.V., You accept and agree to the following terms and conditions for Your present and future Contributions submitted to GitLab B.V. Except for the license granted herein to GitLab B.V. and recipients of software distributed by GitLab B.V., You reserve all right, title, and interest in and to Your Contributions. All Contributions are subject to the following DCO + License terms. [DCO + License](https://gitlab.com/gitlab-org/dco/blob/master/README.md) _This notice should stay as the first item in the CONTRIBUTING.md file._ ## Code of conduct As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities. We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, or religion. Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct. Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team. This code of conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Instances of abusive, harassing, or otherwise unacceptable behavior can be reported by emailing contact@gitlab.com. This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.1.0, available at [http://contributor-covenant.org/version/1/1/0/](http://contributor-covenant.org/version/1/1/0/). ## Style Guide The Gitaly style guide is [documented in it's own file](STYLE.md) ## Changelog Any new merge request must contain either a CHANGELOG.md entry or a justification why no changelog entry is needed. New changelog entries should be added to the **top** of the 'UNRELEASED' section of CHANGELOG.md. If a change is specific to an RPC, start the changelog line with the RPC name. So for a change to RPC `FooBar` you would get: > FooBar: Add support for `fluffy_bunnies` parameter ## GitLab CE changelog We only create GitLab CE changelog entries for two types of merge request: - adding a feature flag for one or more Gitaly RPC's (meaning the RPC becomes available for trials) - removing a feature flag for one or more Gitaly RPC's (meaning everybody is using a given RPC from that point on) ## Gitaly Maintainers | Maintainer | |--------------------| |@jacobvosmaer-gitlab| ## Development Process We use long-running "~Conversation" issues (aka meta-issues) to track the progress of endpoint migrations and other work. These issues can be tracked on the **[Migration Board](https://gitlab.com/gitlab-org/gitaly/boards/331341)**. Conversation issues help us track migrations through the stages of the [migration process](doc/MIGRATION_PROCESS.md): - ~"Migration:Ready-for-Development" - ~"Migration:RPC-Design" - ~"Migration:Server-Impl" - ~"Migration:Client-Impl" - ~"Migration:Ready-for-Testing" - ~"Migration:Acceptance-Testing" - ~"Migration:Disabled" - ~"Migration:Opt-In" - ~"Migration:Opt-Out" - ~"Migration:Mandatory" While migration may take several releases from end-to-end, and, so that we can better track progress, each stage of the migration will spawn it's own issue. These issues should generally not stay open for more than a week or two. ## How to develop a migration 1. **Select a migration endpoint**: select a migration from the [migration board](https://gitlab.com/gitlab-org/gitaly/boards/331341). These migrations are prioritised so choose one near the top. - Assign the conversation issue to yourself so that others know that you are working on it. 1. **Build the RPC interface**: - Using the RPC design in the issue, create a merge request in the [gitaly-proto](https://gitlab.com/gitlab-org/gitaly-proto) repo 1. **Build the Gitaly Server implementation** 1. **Build the client implementation**: this will be in one or more of GitLab-Workhorse, GitLab-Shell, GitLab-CE and GitLab-EE. 1. **Note**: you may find it more productive to work on the RPC interface, server and client implementations simultaneously - Sometimes while building the server and client you may discover problems with the RPC interface - For this reason, it can be easier to vendor your branch of `gitaly-proto` into your server and client branches during development - In GitLab-CE and GitLab-Shell, custom versions of Gitaly can be specified in the `GITALY_SERVER_VERSION` file by using the syntax `=my-branch-name` - Remember to release a new version of `gitaly-proto` and `gitaly` and change the `GITALY_SERVER_VERSIONS` before review. 1. **Await a new release of GitLab**: - Assign the conversation to the corresponding ["Post GitLab Deployment"](https://gitlab.com/gitlab-org/gitaly/milestones/) milestone. 1. **Perform Acceptance Testing** - We use feature toggles to gradually enable migration endpoints while monitoring their performance and status - If a critical bug is discovered, it's disable the feature toggle and move the conversation into the ~"Migration:Disabled" columm on the [migration board](https://gitlab.com/gitlab-org/gitaly/boards/331341) until a fix has been released. ### Workflow 1. The owner of a migration is responsible for moving conversation issues across the [migration board](https://gitlab.com/gitlab-org/gitaly/boards/331341). 1. The Gitaly team uses a weekly Wednesday-Wednesday iteration with retrospectives every second week. 1. Work for the cycle should be assigned to the [appropriate Infrastructure Deliverable](https://gitlab.com/gitlab-org/gitaly/milestones/) milestone and tagged with the ~"Infrastructure Deliverable" label. - Please **do not assign ~Conversation issues** to the weekly infrastructure deliverable milestone or the ~"Infrastructure Deliverable" label. - ~"Conversation"s are ongoing work-streams while ~"Infrastructure Deliverable" issues should be closed by the upcoming milestone. 1. To keep track of slipping issues, items which we have been unable to complete by the infrastructure deliverable milestone should be moved over to the next milestone and marked with ~"Moved:x1", ~"Moved:x2", ~"Moved:x3" etc ## Reviews and Approvals Merge requests need to **approval by at least two [Gitaly team members](https://gitlab.com/groups/gl-gitaly/group_members)**. If a merge request will affect code that cannot be conditionally disabled via [feature flags](https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/11747) then at least one of the approvers should be a **Gitaly maintainer**. Examples of code that **requires maintainer approval** include: * Configuration management * Process startup or shutdown * Shared utility classes such as stream utilities, etc Examples of code that **does not require maintainer approval** include: * Build script changes (does not run in production) * Testing changes (does not run in production) * Migration endpoints (can be disabled via a feature flag) Additionally, if you feel that the change you are making is sufficiently complicated or just for your own confidence, please feel free to assign a maintainer. ### Review Process The Gitaly team uses the following process: - When you merge request is ready for review, select two approvers from the Merge Request edit view. - Assign the first reviewer - When the first reviewer is done, they assign the second reviewer - When the second reviewer is done - If there are no discussions, they are free to merge - Otherwise assign back to the author for next round of review. **Note**: the author-reviewer 1-reviewer 2-author cycle works best with small changes. With larger changes feel free to use the traditional author-reviewer 1-author-reviewer 1-reviewer 2-author-reviewer 2-cycle. ## Gitaly Developer Quick-start Guide See the [beginner's guide](doc/beginners_guide.md). ## Debug Logging Debug logging can be enabled in Gitaly using `level = "debug"` under `[logging]` in config.toml. ## Git Tracing Gitaly will reexport `GIT_TRACE*` [environment variables](https://git-scm.com/book/en/v2/Git-Internals-Environment-Variables) if they are set. This can be an aid to debugging some sets of problems. For example, if you would like to know what git is going internally, you can set `GIT_TRACE=true`: Note that since git stderr stream will be logged at debug level, you need to enable debug logging in `config.toml`. ```shell $ GIT_TRACE=true ./gitaly config.toml ... DEBU[0015] 13:04:08.646399 git.c:322 trace: built-in: git 'gc' grpc.method=GarbageCollect grpc.request.repoPath="gitlab/gitlab-design.git" grpc.request.repoStorage=default grpc.request.topLevelGroup=gitlab grpc.service=gitaly.RepositoryService peer.address= span.kind=server system=grpc DEBU[0015] 13:04:08.649346 run-command.c:626 trace: run_command: 'pack-refs' '--all' '--prune' grpc.method=GarbageCollect grpc.request.repoPath="gitlab/gitlab-design.git" grpc.request.repoStorage=default grpc.request.topLevelGroup=gitlab grpc.service=gitaly.RepositoryService peer.address= span.kind=server system=grpc DEBU[0015] 13:04:08.652240 git.c:322 trace: built-in: git 'pack-refs' '--all' '--prune' grpc.method=GarbageCollect grpc.request.repoPath="gitlab/gitlab-design.git" grpc.request.repoStorage=default grpc.request.topLevelGroup=gitlab grpc.service=gitaly.RepositoryService peer.address= span.kind=server system=grpc DEBU[0015] 13:04:08.655497 run-command.c:626 trace: run_command: 'reflog' 'expire' '--all' grpc.method=GarbageCollect grpc.request.repoPath="gitlab/gitlab-design.git" grpc.request.repoStorage=default grpc.request.topLevelGroup=gitlab grpc.service=gitaly.RepositoryService peer.address= span.kind=server system=grpc DEBU[0015] 13:04:08.658331 git.c:322 trace: built-in: git 'reflog' 'expire' '--all' grpc.method=GarbageCollect grpc.request.repoPath="gitlab/gitlab-design.git" grpc.request.repoStorage=default grpc.request.topLevelGroup=gitlab grpc.service=gitaly.RepositoryService peer.address= span.kind=server system=grpc DEBU[0015] 13:04:08.669787 run-command.c:626 trace: run_command: 'repack' '-d' '-l' '-A' '--unpack-unreachable=2.weeks.ago' grpc.method=GarbageCollect grpc.request.repoPath="gitlab/gitlab-design.git" grpc.request.repoStorage=default grpc.request.topLevelGroup=gitlab grpc.service=gitaly.RepositoryService peer.address= span.kind=server system=grpc DEBU[0015] 13:04:08.672589 git.c:322 trace: built-in: git 'repack' '-d' '-l' '-A' '--unpack-unreachable=2.weeks.ago' grpc.method=GarbageCollect grpc.request.repoPath="gitlab/gitlab-design.git" grpc.request.repoStorage=default grpc.request.topLevelGroup=gitlab grpc.service=gitaly.RepositoryService peer.address= span.kind=server system=grpc DEBU[0015] 13:04:08.673185 run-command.c:626 trace: run_command: 'pack-objects' '--keep-true-parents' '--non-empty' '--all' '--reflog' '--indexed-objects' '--write-bitmap-index' '--unpack-unreachable=2.weeks.ago' '--local' '--delta-base-offset' 'objects/pack/.tmp-60361-pack' grpc.method=GarbageCollect grpc.request.repoPath="gitlab/gitlab-design.git" grpc.request.repoStorage=default grpc.request.topLevelGroup=gitlab grpc.service=gitaly.RepositoryService peer.address= span.kind=server system=grpc DEBU[0015] 13:04:08.675955 git.c:322 trace: built-in: git 'pack-objects' '--keep-true-parents' '--non-empty' '--all' '--reflog' '--indexed-objects' '--write-bitmap-index' '--unpack-unreachable=2.weeks.ago' '--local' '--delta-base-offset' 'objects/pack/.tmp-60361-pack' grpc.method=GarbageCollect grpc.request.repoPath="gitlab/gitlab-design.git" grpc.request.repoStorage=default grpc.request.topLevelGroup=gitlab grpc.service=gitaly.RepositoryService peer.address= span.kind=server system=grpc DEBU[0037] 13:04:30.737687 run-command.c:626 trace: run_command: 'prune' '--expire' '2.weeks.ago' grpc.method=GarbageCollect grpc.request.repoPath="gitlab/gitlab-design.git" grpc.request.repoStorage=default grpc.request.topLevelGroup=gitlab grpc.service=gitaly.RepositoryService peer.address= span.kind=server system=grpc DEBU[0037] 13:04:30.753856 git.c:322 trace: built-in: git 'prune' '--expire' '2.weeks.ago' grpc.method=GarbageCollect grpc.request.repoPath="gitlab/gitlab-design.git" grpc.request.repoStorage=default grpc.request.topLevelGroup=gitlab grpc.service=gitaly.RepositoryService peer.address= span.kind=server system=grpc DEBU[0037] 13:04:31.071140 run-command.c:626 trace: run_command: 'worktree' 'prune' '--expire' '3.months.ago' grpc.method=GarbageCollect grpc.request.repoPath="gitlab/gitlab-design.git" grpc.request.repoStorage=default grpc.request.topLevelGroup=gitlab grpc.service=gitaly.RepositoryService peer.address= span.kind=server system=grpc DEBU[0037] 13:04:31.074736 git.c:322 trace: built-in: git 'worktree' 'prune' '--expire' '3.months.ago' grpc.method=GarbageCollect grpc.request.repoPath="gitlab/gitlab-design.git" grpc.request.repoStorage=default grpc.request.topLevelGroup=gitlab grpc.service=gitaly.RepositoryService peer.address= span.kind=server system=grpc DEBU[0037] 13:04:31.076135 run-command.c:626 trace: run_command: 'rerere' 'gc' grpc.method=GarbageCollect grpc.request.repoPath="gitlab/gitlab-design.git" grpc.request.repoStorage=default grpc.request.topLevelGroup=gitlab grpc.service=gitaly.RepositoryService peer.address= span.kind=server system=grpc DEBU[0037] 13:04:31.079286 git.c:322 trace: built-in: git 'rerere' 'gc' grpc.method=GarbageCollect grpc.request.repoPath="gitlab/gitlab-design.git" grpc.request.repoStorage=default grpc.request.topLevelGroup=gitlab grpc.service=gitaly.RepositoryService peer.address= span.kind=server system=grpc ``` ## Testing with Instrumentation If you would like to test with instrumentation and prometheus metrics, use the `instrumented-cluster` docker compose configuration in `_support/instrumented-cluster`. This cluster will create several services: |*Service*|*Endpoint*| |---------|------| | Gitaly | [http://localhost:9999](http://localhost:9999) | | Gitaly Metrics and pprof | [http://localhost:9236](http://localhost:9236) | | Prometheus | [http://localhost:9090](http://localhost:9090) | | cAdvisor | [http://localhost:8080](http://localhost:8080) | | Grafana | [http://localhost:3000](http://localhost:3000) use default login `admin`/`admin` | The gitaly service uses the `gitlab/gitaly:latest` image, which you need to build using `make docker` before starting the cluster. Once you have the `gitlab/gitaly:latest` image, start the cluster from the `_support/instrumented-cluster` directory using: ```shell docker-compose up --remove-orphans ``` Enter `^C` to kill the cluster. Note that the Gitaly service is intentionally limited to 50% CPU and 200MB of memory. This can be adjusted in the `docker-compose.yml` file. Once the cluster has started, it will clone the `gitlab-org/gitlab-ce` repository, for testing purposes. This can then be used for testing, using tools like [gitaly-bench](https://gitlab.com/gitlab-org/gitaly-bench): ```shell gitaly-bench -concurrency 100 -repo gitlab-org/gitlab-ce.git find-all-branches ``` It can also be used with profiling tools, for example [go-torch](https://github.com/uber/go-torch) for generating flame graphs, as follows: ```shell go-torch --url http://localhost:9236 -p > flamegraph.svg ``` ## Development and testing with a custom gitaly-proto During development you sometimes want to use a feature branch of gitaly-proto instead of an officially released tag. This is how you can do that. Every time you change gitaly-proto you need to perform these steps. If you follow the process below, Gitaly's CI will be able to fetch your custom protocol and use it to run the test suite. ### 1. Change gitaly-proto - clone https://gitlab.com/gitlab-org/gitaly-proto.git - create a new branch in gitaly-proto - make changes to the `*.proto` files - **run `make`** to generate the new protobuf wrapper code, otherwise your changes get ignored! - `git add .` and commit - push to your new branch in gitlab-org/gitaly-proto or to your own fork ### 2. Make Gitaly use your custom gitaly-proto The following steps take place inside your Gitaly repo. - Fetch the generated Go code: ```shell # for forks: govendor fetch gitlab.com/gitlab-org/gitaly-proto/go::gitlab.com/my-user/gitaly-proto/go@my-branch # for a gitlab-org branch: govendor fetch gitlab.com/gitlab-org/gitaly-proto/go@my-branch # if the gitaly-proto version you want to use was already released: govendor fetch gitlab.com/gitlab-org/gitaly-proto/go@v ``` - Include the new proto Go code in your next commit with `git add vendor` - For gitaly-ruby, edit `ruby/Gemfile` so that it has: ```ruby gem 'gitaly-proto', git: 'https://gitlab.com/my-user/gitaly-proto.git', branch: 'my-branch' ``` - Update Gemfile.lock with ```shell cd ruby && bundle update gitaly-proto ``` - Include the changes in your next commit with `git add ruby/Gemfile ruby/Gemfile.lock`