Dragonfly is an intelligent P2P-based image and file distribution tool. It aims to improve the efficiency and success rate of file transferring, and maximize the usage of network bandwidth, especially for the distribution of larget amounts of data, such as application distribution, cache distribution, log distribution, and image distribution.
At Alibaba, every month Dragonfly is invoked two billion times and distributes 3.4PB of data. Dragonfly has become one of the most important pieces of infrastructure at Alibaba.
While container technologies makes DevOps life easier most of the time, it surely brings some challenges: for example the efficiency of image distribution, especially when you have to replicate image distribution on several hosts.
Dragonfly works extremely well with both Docker and PouchContainer in this scenario. It's also compatible with containers of other formats. It delivers up to 57 times the throughput of native docker and saves up to 99.5% of the out bandwidth of registry.
Dragonfly makes it simple and cost-effective to set up, operate, and scale any kind of file, image, or data distribution.
This project is an open-source version of the Dragonfly used at Alibaba. It has the following features:
Note: More Alibaba-internal features will be made available to open-source users soon. Stay tuned!
We carried out an experiment to compare the performance of Dragonfly and wget.
| Test Environment | |
|---|---|
| Dragonfly Server | 2 * (24-Core 64GB-RAM 2000Mb/s) |
| File Source Server | 2 * (24-Core 64GB-RAM 2000Mb/s) |
| Client | 4-Core 8GB-RAM 200Mb/s |
| Target File Size | 200MB |
| Experiment Date | April 20, 2016 |
The expeirment result is as shown in the following figure.

As you can see in the chart, for Dragonfly, no matter how many clients are downloading, the average downloading time is always about 12 seconds. But for wget, the downloading time keeps increasing with the number of clients. When the number of wget clients reaches 1,200, the file source crashed and therefore cannot serve any client.
Dragonfly works slightly differently when downloading general files and downloading container images.
The SuperNode plays the role of CDN and schedules the transfer of blocks between each peer. dfget is the P2P client, which is also called a "peer". It's mainly used to download and share blocks.

Registry is similar to the file server above. dfget proxy is also called dfdaemon, which intercepts HTTP requests from docker pull or docker push, and then decides which requests to process with dfget.

Every file is divided into multiple blocks, which are transferred between peers. Each peer is a P2P client. The SuperNode will check if the corresponding file exists in the local disk. If not, the file will be downloaded into SuperNode from the file server.
