A Scalable, User-Friendly Source Control System.
Go to file
Lukas Piatkowski e55e4a3a2d hgproto: introduce stream based handling of input and output of hg protocol
Summary: This is the first step that establishes a stream based API, later diffs will propagate this idea downstream, so that we fully support streaming in f.e. unbundle bundle2

Reviewed By: jsgf

Differential Revision: D6239508

fbshipit-source-id: 43afba4f640586b728cb4cb85d14226a677ee58b
2017-11-08 12:30:47 -08:00
async-compression/src rust: async-compression: loosen decompressor lifetime bound 2017-11-01 18:51:21 -07:00
asyncmemo/src rust: asyncmemo: add failure test 2017-08-29 12:36:18 -07:00
blobrepo/src mononoke: Use MemHeads and MemBookmarks in TestManifoldBlobState 2017-11-01 19:11:20 -07:00
blobstore blobstore: add RetryingBlobstore that retries failed put/get operations with delay 2017-10-31 20:53:08 -07:00
bookmarks filekv: allow specifying a version during set 2017-11-02 13:10:56 -07:00
cmds blobimport: add more stats 2017-11-07 10:43:50 -08:00
eden_server/src mononoke: accept urls with trailing slash and without 2017-11-01 19:11:20 -07:00
futures-ext/src rust: futures-ext: only consume as much input as needed for the decoder to make progress 2017-11-01 18:51:21 -07:00
heads heads: unify heads tests 2017-10-17 16:59:27 -07:00
hgcli hgcli: add a bash script for using mononoke deployed inside tupperware 2017-10-18 05:37:00 -07:00
hgproto hgproto: introduce stream based handling of input and output of hg protocol 2017-11-08 12:30:47 -08:00
hooks/src add a prototype to implement hooks 2017-09-05 22:52:51 -07:00
linknodes memlinknodes: add test conveniences for adding linknode data 2017-11-02 13:10:56 -07:00
mercurial/src tp2: rust: update rust-crates-io and rust-bindgen 2017-11-02 13:10:56 -07:00
mercurial-bundles/src rust: futures-ext: only consume as much input as needed for the decoder to make progress 2017-11-01 18:51:21 -07:00
mercurial-graphql/src rename Path to MPath 2017-09-22 17:27:03 -07:00
mercurial-types Make Repo trait Send + Sync 2017-11-06 17:21:20 -08:00
metaconfig/src server: refactor the main function for future diffs 2017-10-04 14:06:00 -07:00
py_tar_utils move tar_utils.py from update_rust into an open sourceable location 2017-09-14 13:52:23 -07:00
repoinfo/src Make Repo trait Send + Sync 2017-11-06 17:21:20 -08:00
revset/src SingleNodeHash revset should not fail if the hash is unknown 2017-11-06 17:36:13 -08:00
server/src hgproto: introduce stream based handling of input and output of hg protocol 2017-11-08 12:30:47 -08:00
sshrelay/src Initial commit 2017-07-27 18:00:19 -07:00
storage filekv: allow specifying a version during set 2017-11-02 13:10:56 -07:00
tests mononoke: accept urls with trailing slash and without 2017-11-01 19:11:20 -07:00
vfs/src use RepoPath instead of MPath in a few places 2017-10-31 14:26:39 -07:00
CONTRIBUTING.md Initial commit 2017-07-27 18:00:19 -07:00
LICENSE Initial commit 2017-07-27 18:00:19 -07:00
README.md mention in README that Mononoke supports Mercurial 2017-07-28 14:41:37 -07:00
rustfmt.toml config for rustfmt-nightly 0.2.6 2017-09-18 10:50:27 -07:00

Mononoke

Mononoke is a next-generation server for the Mercurial source control system, meant to scale up to accepting thousands of commits every hour across millions of files. It is primarily written in the Rust programming language.

Caveat Emptor

Mononoke is still in early stages of development. We are making it available now because we plan to start making references to it from our other open source projects such as Eden.

The version that we provide on GitHub does not build yet.

This is because the code is exported verbatim from an internal repository at Facebook, and not all of the scaffolding from our internal repository can be easily extracted. The key areas where we need to shore things up are:

  • Full support for a standard cargo build.
  • Open source replacements for Facebook-internal services (blob store, logging etc).

The current goal is to get Mononoke working on Linux. Other Unix-like OSes may be supported in the future.