Project

General

Profile

Actions

InterServerSync » History » Revision 7

« Previous | Revision 7/34 (diff) | Next »
Chris Duryee, 10/27/2015 11:48 AM


InterServerSync

What is ISS?

Inter-Server Sync is a feature designed to help users in two scenarios:

  • users who have a connected Foreman/Katello instance and disconnected Foreman/Katello, who want to propogate data from the connected side of their network to the disconnected side.
  • users who have a "main" Foreman/Katello and want to propogate some data (but not all data) to other instances. One example is for users who have "blessed" content views that are validated by the IT department, and want to propogate those down elsewhere.

More info is available at https://fedorahosted.org/spacewalk/wiki/InterSpacewalkServerSync.

Goals

Roughly, phase 1 is the minimal "get it working" phase where we have a demoable end-to-end scenario that works via hammer. After that, we will collect feedback and move on to phase 2 which moves some of the grunt work done by hammer to the server, and adds web UI support. Phase 3 enhances the "connected" scenario, and Phase 4 will be for support of additional content types and new types of foreman/katello data.

Phase 1 "get it working" goals

  • allow exporting and importing of products and Library content views
  • export/import can occur via hammer and web UI, but some filesystem-level access is needed for accessing yum repo exports (scp, http, etc)
  • only yum is supported
  • incremental dumps are supported

Note: phase 1 replaces katello-disconnected script, and solves the same problem that Spacewalk solves with Inter-Spacewalk Sync in a minimal fashion.

Phase 2 "web UI and optimization" goals

  • API clean up to allow for bulk export/import with only a few server calls - this is needed for web UI support since we can't rely on hammer
  • support for import/export of products and library CV via web UI
  • allow export and import without filesystem access to machine (hammer or web ui can provide download of export and upload of import)

Phase 3 "do it with less disk space" goals

  • stream export/import data from one Foreman/katello to another without needing to write a full export to disk
  • streaming must be able to be initiated from either foreman/katello

Phase 4+ "rinse and repeat" goals

  • allow exporting and importing of other data (environments, non-library content views, etc)
  • support for ostree, docker, puppet content

Phase 1 Design

There are two areas that need to be updated for phase 1. We need to allow for exporting and importing of yum repo data (including incremental updates), and we need to allow for exporting and importing of product and library CV data. The former is largely provided by Pulp, and the latter is provided by hammer-cli-csv.

We will need to add the Pulp export distributor on newly created yum repos. Additionally, existing repos will need to have the export distributor added in via migration.

Phase 1 allows for hammer-cli-csv doing a lot of "grunt" work in loading the CSV data. This will need to be done server-side in later phases.

Hammer design

(need to fill in)

API modifications

(need to fill in)

Updated by Chris Duryee over 8 years ago · 7 revisions