Project

General

Profile

Actions

General approach » History » Revision 3

« Previous | Revision 3/18 (diff) | Next »
Greg Burri, 04/05/2011 10:50 PM


General approach

Each file the user want to share is cut sequentially in pieces called chunk. Each chunk has the same size except the last one which can be smaller.

For each chunk there is a footprint called hash which identify the chunk. We admit that two chunks with the same hash contains the same data. The hash is computed with a cryptographic hash function like SHA-1.

A chunk can only be downloaded if we know its hash. The hashes associated to a specific file can be given when browsing remote files if the remote peer knows them or can be explicitly asked. If the remote peer doesn't know the hashes of one of its file when they are asked it will compute these hashes on the fly and send them one by one as soon as possible.

The list of the files to download is ordered by the user, thus the top files must be downloaded first. We will try to know first the hashes of the top files. As soon as we know a hash we can try to download the associated chunk. There can be many parallel downloads but only from different remote peers. The number of parallel downloads is limited.

To choose a chunk to download, if the number of parallel downloads isn't reached, we will take the first undownloaded chunk which has at least one free peer.

To known which remote peer has which wanted chunk we asked periodically to all remote peers if they have the next chunks we want to download by sending them the corresponding hashes. The number of hash sent is limited.

Glossary

A file:
A peer:
A free peer:
A remote peer:
A chunk:
A hash:

Updated by Greg Burri about 13 years ago · 3 revisions