A Scalable, User-Friendly Source Control System.
Go to file
Michael Cuevas d26a8f9f46 add tests for Rust rollout config
Summary:
# Context

Our last attempt at removing the Python version of `eden redirect` failed (see the SEV attached to D55426809). Our next attempt should be done in a phased manner to avoid similar breakages.

# Solution

We will slowly remove all possible fallbacks to Python so that we can be sure no commands are running the Python version of `eden redirect` prior to deleting the code. New rollout plan is as follows:

1) Remove the Chef recipe that writes `/etc/eden/edenfsctl_rollout.json` (Done)
2) Remove "redirect" from the default list of experimental commands in the Rust code.
3) Add a fallback to Rust if Python parsing fails for experimental commands
4) Add an EdenFS event that's logged every time we fallback to the Python `eden redirect` codepath
5) Monitor Scuba data to ensure the Python codepath isn't being hit
6) Delete Python `eden redirect` altogether

# This diff

Adds tests to verify that the new logic from #3 (and old existing logic for rollouts) works as expected.

Reviewed By: kmancini

Differential Revision: D56331275

fbshipit-source-id: 369242d1343b58d78d05dcd41847430ae7304569
2024-04-24 14:06:53 -07:00
.devcontainer Add a devcontainer config (#807) 2024-01-18 08:29:13 -08:00
.github/workflows github: reduce frequency of "Mononoke Mac" CI 2024-03-27 17:49:00 -07:00
addons Customize ButtonDropdown styling for light modern theme 2024-04-23 16:17:13 -07:00
build Updating submodules 2024-04-24 09:31:49 -07:00
ci Add a devcontainer config (#807) 2024-01-18 08:29:13 -08:00
CMake add FilteredHg mixin type to EdenRepoTest 2023-12-19 22:20:08 -08:00
common Prefer module filenames instead of mod.rs 2024-04-09 10:26:48 -07:00
configerator/structs/scm Configuration for sleep time between incremental iterations of RepoMetadataLogger 2024-04-23 16:58:29 -07:00
eden add tests for Rust rollout config 2024-04-24 14:06:53 -07:00
fb303/thrift Re-sync with internal repository 2024-02-21 21:16:37 -05:00
thrift/annotation Remove @cpp.GenerateTypedInterceptor and associated codegen 2024-03-01 17:47:02 -08:00
website website: remove ghstack page 2024-04-10 10:41:39 -07:00
.gitignore mononoke: add README.md and the missing pieces for supporting cargo (#13) 2020-02-13 00:12:36 -08:00
.projectid replace the old getdeps.py script with a build.sh script 2020-03-30 19:27:54 -07:00
build.bat fs: fix license header 2022-01-04 15:00:07 -08:00
build.sh fs: fix license header 2022-01-04 15:00:07 -08:00
clippy.toml clippy: prevent holding a span guard over an .await 2023-11-16 07:31:54 -08:00
CMakeLists.txt add FilteredHg mixin type to EdenRepoTest 2023-12-19 22:20:08 -08:00
CODE_OF_CONDUCT.md Adopt Contributor Covenant 2019-08-29 23:23:31 -07:00
CONTRIBUTING.md fix CONTRIBUTING.md to reference main instead of master (#436) 2023-01-18 19:58:13 -08:00
dependabot.yml oss: attempt to disable dependabot PRs 2024-02-23 12:52:06 -08:00
LICENSE relicense to GPLv2 2019-06-19 17:02:45 -07:00
make-client.py fs: fix license header 2022-01-04 15:00:07 -08:00
README.md Fix spelling mistake (#677) 2023-07-25 12:33:29 -07:00
requirements_ubuntu.txt include oss installation instructions for ubuntu 2020-07-24 11:34:17 -07:00
rustfmt.toml format_code_in_doc_comments = true 2024-01-09 22:59:04 -08:00
SAPLING_VERSION bump SAPLING_VERSION from 0.1 to 0.2 in preparation for the next release 2022-12-21 12:23:53 -08:00

Sapling SCM

Sapling SCM is a cross-platform, highly scalable, Git-compatible source control system.

It aims to provide both user-friendly and powerful interfaces for users, as well as extreme scalability to deal with repositories containing many millions of files and many millions of commits.

Using Sapling

To start using Sapling, see the Getting Started page for how to clone your existing Git repositories. Checkout the Overview for a peek at the various features. Coming from Git? Checkout the Git Cheat Sheet.

Sapling also comes with an Interactive Smartlog (ISL) web UI for seeing and interacting with your repository, as well as a VS Code integrated Interactive Smartlog.

The Sapling Ecosystem

Sapling SCM is comprised of three main components:

  • The Sapling client: The client-side sl command line and web interface for users to interact with Sapling SCM.
  • Mononoke: A highly scalable distributed source control server. (Not yet supported publicly.)
  • EdenFS: A virtual filesystem for efficiently checking out large repositories. (Not yet supported publicly.)

Sapling SCM's scalability goals are to ensure that all source control operations scale with the number of files in use by a developer, and not with the size of the repository itself. This enables fast, performant developer experiences even in massive repositories with millions of files and extremely long commit histories.

Sapling CLI

The Sapling CLI, sl, was originally based on Mercurial, and shares various aspects of the UI and features of Mercurial.

The CLI code can be found in the eden/scm subdirectory.

Mononoke

Mononoke is the server-side component of Sapling SCM.

While it is used in production within Meta, it currently does not build in an open source context and is not yet supported for external usage.

EdenFS

EdenFS is a virtual file system for managing Sapling checkouts.

While it is used in production within Meta, it currently does not build in an open source context and is not yet supported for external usage.

EdenFS speeds up operations in large repositories by only populating working directory files on demand, as they are accessed. This makes operations like checkout much faster, in exchange for a small performance hit when first accessing new files. This is quite beneficial in large repositories where developers often only work with a small subset of the repository at a time.

More detailed EdenFS design documentation can be found at eden/fs/docs/Overview.md.

Building the Sapling CLI

The Sapling CLI currently builds and runs on Linux, Mac, and Windows. It can be built by running make oss in the eden/scm directory and running the resulting sl executable.

Building the Sapling CLI requires Python 3.8, Rust, CMake, and OpenSSL for the main cli, and Node and Yarn for the ISL web UI.

License

See LICENSE.