Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [equinox-dev] p2 repository optimization

There is already some work done in p2 but it will probably not get into p2 version 1.0. I will explain the reasons for that later.
Full Delta optimization works similar as the Jar Delta Optimization except that the full delta algorithm used is a binary delta algorithm working on the byte level. The binary delta algorithm we use is an extension of jbdiff (http://freshmeat.net/projects/jbdiff/) .
The optimization creates deltas between artifacts of different versions. For compressed artifacts (jar/zip) the artifacts will first be decompressed and than the delta generation is performed on the uncompressed artifacts. The client can now choose a delta for download if it has the required ´base´ artifact version ´locally´ available. With this base version and the delta the ´targeted´ artifact version can be recreated.
This delta creation and recreation is time and space intensive and the client should only download a delta in certain circumstances, e.g. low bandwidth connection, expansive connection, good processing speed and enough memory of client machine. The current p2 DownloadManager will probably not be able to reach a decision on what the best download strategy could be.

Stefan

Janet Dmitrovich wrote:

On the wiki - the description for "Full Delta Optimization" is "in progress..."
Is there any other information available on this?

http://wiki.eclipse.org/Equinox_p2_Repository_Optimization

Janet Dmitrovich
WPLC Expeditor Software Development
jdmitrov@xxxxxxxxxx
512-838-4912 T/L:678-4912 FAX:512-838-3703
11501 Burnet Road, Austin TX 78758 (Internal ZIP: 9372)


_______________________________________________ equinox-dev mailing list equinox-dev@xxxxxxxxxxx https://dev.eclipse.org/mailman/listinfo/equinox-dev

Back to the top