Fast, safe and reliable transit for the delivery of software updates to users.
ferryd
is the binary repository manager for Solus. In addition to providing basic management for repositories, it is also an asynchronous job-based daemon, processing incoming package
uploads from authorised builder machines. ferryd
attempts to optimise all operations ahead of time, by caching all metadata required for repository indexes.
The primary goal for ferryd
is to provide a daemon that constantly monitors new uploads, and processes them as fast as possible. This ensures new packages are available almost immediately.
Complex, long running operations, are run in the background within a dedicated worker pool. This allows new packages to turn up in batch, and the delta packages to be produced lazily. Once
those delta packages are available, they're inserted into the main repository (and will appear in the index.)
The design of ferryd
allows us to blit a repository index from the database to disk very fast (around 2-3s for a large repository). Special care is taken to only perform atomic updates to the
index - meaning no connectivity issues for clients with corrupt or partial indexes. The repository index should always be available, and all published packages should permanently be present.
ferryd
takes special care to cache wherever possible, and uses a reference-counted package pool. All package files within each repository are hard-linked from the pool tree, allowing to
save disk space through enforced deduplication. As such, a package's ID (the basename of the file) must be unique to a ferryd instance. Putting it all together, this allows us to simply "ref"
a package into a repository from the pool, which is used for very rapid clone and pull operations.
ferryd
is the replacement for the aging binman.py
script currently used by Solus, and is designed to combat the design mistakes of that implementation. Emphasis is placed on speed, scaling,
and having packages immediately and permanently available. Less delays for developers, and rapid updates and sync deployment to users.
Lastly, ferryd
aims to provide very simple sync abilities to help control deployment of packages to other repositories. An explicit design goal is to enable "Pulling" a repository into an
existing repository, which in turn publishes one channel to another. This is used in Solus to control sync-windows from unstable to stable, and is done as a single atomic operation.
Note: ferryd
is currently a work in progress, and is currently our highest priority work item.
ferryd is a Solus project.
Disclaimer regarding the name: Solus has this weird obsession with all things nautilic. Oh and birds.
- Restore delta op per package
- Restore delta operation for whole repo
- Fire off delta job for each new package in the transit manifest - parallel
- Get delta inclusion working
- Mark failed deltas
- Then have per-delta fire off sequential Index job for the entire repo (cheap enough)
- Handle garbage collection of all deltas when removing a package
- Add
clone
operation to clone one repo to another (optionally all or tip) - Add
pull
operation to pull from one repo into another (missing and mismatched) - Add delete operation to remove repo (unref cycle)
- Have
clone
andpull
operations sync*.xml
asset files - Ensure job claim status is cleared on startup.
- Add
trim
commands - Maybe add
trim
subcommand to nuke obsoletes ? - Ensure systemd unix socket isnt unlinked on exit
- Replace all Fprintf/printf with logrus
- Redirect logrus to a log file within our directory structure
- Add global lockfile
- Kick out all TODO comments
- Throw another shedload of data and test upload cycle/bump upload/delta/index
- Stats UI? i.e. ongoing jobs, recently completed, etc.
- Restore binman parity, allow removing package (by release number), copying a single package, group of packages, etc.
- Ensure any operation resulting in adding new packages first checks entries don't exist in the pool. We will NOT allow importing a broken package set.
- Add
.tram
support to solbuild - Make sure builder script uploads
.tram
file last if it exists - Set up ferryd on the Solus package server
- Import existing repos "as is" but without any old delta packages
- Set up new ring0 A Record
- Set up ring0 vhost
- Ensure deltas work
- Ensure simple pull operation works as expected
- Test indexes in cli + SC to verify languages show as expected
- Build ISOs from the repos to ensure they're identical (all deps accounted for)
Start ferryd to monitor ferryd.sock
:
./bin/ferryd -d myRepoBase -s ./ferryd.sock
Create a repo:
./bin/ferryctl -s ./ferryd.sock create-repo testing
Add packages:
./bin/ferryctl -s ./ferryd.sock import testing path/to/eopkgs
Copyright © 2016-2017 Solus Project, ferryd Developers (See AUTHORS file)
ferryd
is available under the terms of the Apache-2.0 license