A Scalable, User-Friendly Source Control System.
Go to file
Lukas Piatkowski 462d31233f fbwhoami: return a singleton for FbWhoAmI and DynoWhatAmI
Summary: If someone realy doesn't want a singleton then one would need to use FbWhoAmI::parse_from directly, which is fine.

Reviewed By: farnz

Differential Revision: D8556535

fbshipit-source-id: 3f49970b7b9692277932407ca1ec888a0d9458c0
2018-06-20 18:22:55 -07:00
apiserver/src Create initial binary for Mononoke API Server 2018-06-18 10:09:43 -07:00
async-compression/src mercurial_bundles: make Bundle2Stream sendable across threads 2018-01-15 10:36:32 -08:00
asyncmemo/src Don't do a fetch when MemoizedBlobstore::is_present is called 2018-06-08 06:53:16 -07:00
blobrepo mercurial-types: simplify Manifest API significantly 2018-06-20 18:22:55 -07:00
blobstore Implement a "cache mutex" to avoid multiple writes through memcache 2018-06-19 13:07:13 -07:00
bookmarks mononoke: add missing repo_id to bookmarks update queries 2018-06-20 00:21:59 -07:00
bookmarks_old/src mercurial_types: remove D* types and move mercurial types around 2018-06-07 13:19:16 -07:00
bundle2-resolver/src bundle2-resolver: provide filechanges from revlog cs rather than compute it during push 2018-06-20 18:11:21 -07:00
bytes-ext add cargo build support for local development 2018-02-22 04:30:32 -08:00
cache-warmup/src mercurial_types: remove D* types and move mercurial types around 2018-06-07 13:19:16 -07:00
changesets changesets: use connection to master only as fallback and for writes 2018-06-20 17:37:22 -07:00
cmds mercurial-types: simplify Manifest API significantly 2018-06-20 18:22:55 -07:00
common/pylz4/src mononoke: add CompressContext 2018-06-04 04:56:11 -07:00
docs CODEMOD: rename mercurial::Parents to HgParents 2018-04-16 03:40:25 -07:00
eden_server/src mercurial-types: simplify Manifest API significantly 2018-06-20 18:22:55 -07:00
filenodes filenodes: use connection to master only as fallback and for writes 2018-06-20 17:37:22 -07:00
futures-ext/src Add ability to set timeouts on Futures 2018-06-19 18:21:56 -07:00
hgcli update username and email in Rust code 2018-06-07 21:07:14 -07:00
hgproto mononoke: streaming gettreepack 2018-06-14 02:50:18 -07:00
hooks/src Introduce ChangesetStore so hook manager can get changesets from blobstore or in memory cache 2018-06-19 20:53:00 -07:00
hooks_old/src mercurial_types: remove D* types and move mercurial types around 2018-06-07 13:19:16 -07:00
mercurial/src blobrepo: simplify code for converting bonsai FileChange to hg 2018-06-20 13:24:57 -07:00
mercurial-bundles/src mononoke: use SinkAsyncWrite in gettreepack 2018-06-14 02:50:18 -07:00
mercurial-types mercurial-types: simplify Manifest API significantly 2018-06-20 18:22:55 -07:00
metaconfig/src Add bookmarks and hooks to the server config 2018-06-20 16:07:18 -07:00
mononoke-types blobrepo: simplify code for converting bonsai FileChange to hg 2018-06-20 13:24:57 -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 mercurial_types: remove D* types and move mercurial types around 2018-06-07 13:19:16 -07:00
revset/src update_generation refactoring 2018-06-19 18:37:03 -07:00
server/src fbwhoami: return a singleton for FbWhoAmI and DynoWhatAmI 2018-06-20 18:22:55 -07:00
sshrelay/src mononoke: fix sshrelay 2018-05-10 02:02:35 -07:00
storage tp2: update to rust 1.26.0 and corresponding rust-crates-io rebuild 2018-05-11 11:07:33 -07:00
tests mercurial-types: simplify Manifest API significantly 2018-06-20 18:22:55 -07:00
vfs/src mercurial-types: simplify Manifest API significantly 2018-06-20 18:22:55 -07:00
.gitignore add .gitignore 2018-03-13 11:58:20 -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
packman.yml packman config file for admin tool 2018-06-04 22:09:49 -07:00
README.md mention in README that Mononoke supports Mercurial 2017-07-28 14:41:37 -07:00
rustfmt.toml updates for rustfmt 0.3.4 2018-01-05 12:07:01 -08: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.