Meta developer instruments: Working at scale

Daily, 1000’s of builders at Meta are working in repositories with hundreds of thousands of information. These builders want instruments that assist them at each stage of the workflow whereas working at excessive scale. On this article we’ll undergo a number of of the instruments within the improvement course of. And, as an added bonus, these we speak about beneath are open supply so you may attempt them your self.
Sapling: Scaling model management
Sapling is a model management system that may scale to very large sizes, but additionally emphasizes usability. There are three predominant parts to Sapling – a server, a shopper, and a digital file system.
The server shops all the information and is a cautious mixture of intelligent storage codecs, wire protocols, and algorithms, largely carried out in Rust and architected to scale.
The shopper then talks to that server, offering all of the acquainted operations (try, rebase, commit, amend, and many others). As well as, the shopper can be able to speaking to a git server, which means that open supply GitHub repositories might be labored on utilizing our open-source Sapling release.
The ultimate part is the digital file system. When testing a repository of our scale, simply the disk I/O of writing all of the information can take a major period of time. One answer is sparse checkouts, the place a developer declares what subset of the repo they want to see prematurely. A extra ergonomic different is EdenFS, which checks out every little thing in a number of seconds however then solely truly downloads the information from the server when they’re accessed.
Buck2: Construct system
After making adjustments, many builders at Meta use Buck2 to compile the outcomes and check out their adjustments. Buck2 is designed to work at massive scale, supporting distant caching and execution, in order that builders can share one another’s compilations and a single developer can have entry to 1000’s of machines to run compilations in parallel. Buck2 can be designed to help a number of programming languages concurrently – so in order for you your OCaml program to rely upon a Rust library that makes use of a C++ library whose supply code was generated by Erlang, that may work simply high quality.
Buck2 works nicely with out Sapling, however has particular design issues to allow Sapling and EdenFS. Buck2 makes use of Watchman to seek out out which information have modified, and Watchman helps EdenFS in order that it could possibly combine easily with information that aren’t on the disk. Buck2 also can use particular EdenFS operations to entry the file with out going through the disk, optimizing efficiency on methods the place digital file methods might be slower.
Infer, RacerD, and Jest: Testing and static evaluation
Handwritten exams and static evaluation play an vital position in ensuring all of our code capabilities as meant. Working with the amount of code we do at Meta signifies that we’d like instruments that present a high-quality sign, and achieve this in a short time.
For normal static evaluation, we use a platform known as Infer, which is interprocedural and helps a number of languages, together with Java and C++. We even have extra tailored evaluation instruments resembling RacerD, which detects Java concurrency bugs. RacerD performed a giant position in our undertaking to transfer Fb’s Information Feed on Android from single-threaded to multi-threaded.
We even have language-specific testing frameworks. For instance, Jest is our Javascript testing framework. In 2022 we formally transferred Jest to the OpenJS Basis to additional help its progress inside the wider trade.
Lastly, there are instruments that sit between static evaluation and handbook check circumstances. Our Sapienz software, for instance, robotically exams cellular apps by permitting builders to simulate the person expertise to hunt out crashes and different potential points.
Be taught extra about Meta’s developer workflow
Along with our open-source instruments, our builders additionally use a lot of proprietary instruments of their day-to-day workflows as nicely. For instance, Phabricator (Phab for brief), our CI and reviewing software, helps our builders overview and submit stacks of diffs. You will discover extra about these instruments (together with those lined above) within the article on Meta developer’s workflow.