Skip to content

cockroachdb/snappy

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 

Repository files navigation

cockroachdb/snappy

This repository is CockroachDB's fork of Snappy, a fast compressor/decompressor.

It exists for two reasons: to provide a home for CockroachDB-specific patches, as necessary, and to ensure that Snappy submodule in cockroachdb/cockroach has a company-controlled remote to point at.

It is critical that any commit in this repository that is referenced from cockroachdb/cockroach remains available here in perpetuity. For every referenced commit, there must be at least one named branch or tag here that has the commit as an ancestor, or else the commit will be garbage collected by GitHub.

To add a patch to an existing release branch:

  1. In your cockroachdb/cockroach clone, change into the submodule's directory, c-deps/snappy:

    $ cd $GOPATH/src/github.com/cockroachdb/cockroach
    $ cd c-deps/snappy
  2. Create a feature branch named after yourself, like tamird/staticlib.

  3. Commit your patch.

  4. Push your changes to the named feature branch. External contributors will need to fork this repository and push to their fork instead.

  5. Make a commit in cockroachdb/cockroach that updates the submodule ref.

    $ cd $GOPATH/src/github.com/cockroachdb/cockroach
    $ git add c-deps/snappy
    $ git commit -m "snappy: upgrade to..."
  6. Open a pull request against cockroachdb/cockroach and wait for review.

  7. Before your downstream PR has merged but after it has been LGTM'd and passed tests, push your changes to the release branch in this repository. You do not need to open a PR against this repository directly; the review of your downstream PR suffices.

    $ git checkout crl-release-X.X
    $ git merge --ff-only FEATURE-BRANCH
    $ git push origin crl-release-X.X

    Important: don't force push! If your push is rejected, either someone else merged an intervening change or you didn't base your feature branch off the tip of the release branch. Rebase your feature branch, update your downstream PR with the new commit SHA, and verify tests still pass. Then try your push again.

  8. From the GitHub web UI, verify that the exact submodule SHA that landed in cockroachdb/cockroach is on the appropriate release branch. If it is, delete your feature branch.

    $ git push -d origin FEATURE-BRANCH

To create a new release branch:

  1. Follow step one above.

  2. Add an upstream remote and fetch from it.

    $ git remote add upstream https://github.com/google/snappy
    $ git fetch upstream
  3. Create and push a new branch with the desired start point:

    $ git checkout -b crl-release-X.X upstream/RELEASE-BRANCH
    $ git push origin crl-release-X.X
  4. Protect the branch from force-pushes in the repository settings. This is crucial in ensuring that we don't break commit references in cockroachdb/cockroach's submodules.

  5. Follow steps three through six above.

Releases

No releases published

Packages

No packages published

Languages

  • C++ 90.7%
  • M4 3.4%
  • C 2.6%
  • CMake 2.5%
  • Other 0.8%