Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Equinox p2 Repository Mirroring"

(Running the Mirroring Tools)
Line 16: Line 16:
 
This example demonstrates how to mirror a repository using the repository mirror application available in the equinox p2 tools.
 
This example demonstrates how to mirror a repository using the repository mirror application available in the equinox p2 tools.
  
==Getting the Mirroring Tools==
 
  
The mirroring application is in the org.eclipse.equinox.p2.tools bundle, available in CVS at http://dev.eclipse.org/viewcvs/index.cgi/org.eclipse.equinox/p2/bundles/org.eclipse.equinox.p2.tools/.  The plan is to add this application to the Equinox p2 agent download available on the [http://download.eclipse.org/eclipse/equinox/ Equinox download page]. See [http://bugs.eclipse.org/237100 bug 237100] for progress on adding the mirror application to the p2 agent download.
 
  
 
==Running the Mirroring Tools==
 
==Running the Mirroring Tools==

Revision as of 16:37, 18 November 2008

Introduction

p2 manages all of its data in repositories. There are two types of repos, artifact and metadata.

p2 artifact repositories can hold many different forms of the same artifact. For example, a JAR artifact may exist as

  • a canonical (unmolested) JAR
  • a compressed JAR (assuming the original was not compressed)
  • a pack200 JAR
  • a delta relative to another version of the artifact
  • ...

p2 metadata repositories describe inter-component dependencies and identify artifacts to install.

The Repository Mirroring application can be used to mirror artifact and metadata repositories. In addition, users can do selective mirroring of artifacts or metadata either to create a more specific mirror (e.g. only mirror latest code) or merge content into an existing mirror.

This example demonstrates how to mirror a repository using the repository mirror application available in the equinox p2 tools.


Running the Mirroring Tools

Currently, the mirror application is split into two different applications: one for artifacts and one for metadata.

Mirroring Metadata

To make an exact mirror of a metadata repository, use the following arguments. Note that if the target repository does not exist, a new repository is created with the same properties as the source.

 -application org.eclipse.equinox.p2.metadata.repository.MirrorApplication
 -source Insert Source URL (e.g. http://download.eclipse.org/eclipse/updates/3.4milestones/)
 -destination Insert Destination URL (e.g. file:/tmp/3.4milestonesMirror/)
 -append


If you omit the -append argument, all installable units in the target destination will be removed before the mirroring is performed.

Mirroring Artifacts

To make an exact mirror of an artifact repository, use the following arguments. Note that if the target repository does not exist, a new repository is created with the same properties as the source.

 -application org.eclipse.equinox.p2.artifact.repository.MirrorApplication
 -source Insert Source URL (e.g. http://download.eclipse.org/eclipse/updates/3.4milestones/)
 -destination Insert Destination URL (e.g. file:/tmp/3.4milestonesMirror/)
 -append


If you omit the -append argument, all artifacts in the target destination will be removed before the mirroring is performed.

Adding the argument -verbose will enable verbose error reporting and logging.

Adding the argument -ignoreErrors will ensure the mirror application does not fail in the event of an error. Note: while using this argument the mirror application may complete without errors but the destination repository may not include all artifacts from the source repository.

Back to the top