Project

General

Profile

InterServerSync » History » Version 13

Chris Duryee, 10/28/2015 02:02 PM

1 1 Chris Duryee
h1. InterServerSync
2
3 2 Chris Duryee
h3. What is ISS?
4
5
Inter-Server Sync is a feature designed to help users in two scenarios:
6
7
 * 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.
8
 * 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.
9
10 5 Chris Duryee
More info is available at https://fedorahosted.org/spacewalk/wiki/InterSpacewalkServerSync.
11
12 1 Chris Duryee
h3. Goals
13
14 7 Chris Duryee
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.
15 1 Chris Duryee
16 10 Chris Duryee
All code, test, doc and installer changes should be merged by the end of each phase in order to keep PR size down.
17
18 1 Chris Duryee
h4. Phase 1 "get it working" goals
19
20
 * allow exporting and importing of products and Library content views
21
 * export/import can occur via hammer and web UI, but some filesystem-level access is needed for accessing yum repo exports (scp, http, etc)
22
 * only yum is supported
23
 * incremental dumps are supported
24
25 10 Chris Duryee
Note: phase 1 replaces katello-disconnected script, and solves the same problem that Spacewalk solves with Inter-Spacewalk Sync in a minimal fashion (notably, without the disk space usage optimization which comes in phase 3).
26 1 Chris Duryee
27 3 Chris Duryee
h4. Phase 2 "web UI and optimization" goals
28 1 Chris Duryee
29 3 Chris Duryee
 * 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
30
 * support for import/export of products and library CV via web UI
31 1 Chris Duryee
 * allow export and import without filesystem access to machine (hammer or web ui can provide download of export and upload of import)
32
33 6 Chris Duryee
h4. Phase 3 "do it with less disk space" goals
34
35
 * stream export/import data from one Foreman/katello to another without needing to write a full export to disk
36 9 Chris Duryee
 * streaming must be able to be initiated from either the source or destination foreman/katello
37 6 Chris Duryee
38
h4. Phase 4+ "rinse and repeat" goals
39 1 Chris Duryee
40
 * allow exporting and importing of other data (environments, non-library content views, etc)
41
 * support for ostree, docker, puppet content
42
43
44
h3. Phase 1 Design
45
46
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.
47
48 12 Chris Duryee
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 (this work is currently in progress).
49 1 Chris Duryee
50 3 Chris Duryee
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.
51
52
h4. Hammer design
53
54
(need to fill in)
55
56
h4. API modifications
57
58
(need to fill in)
59 11 Chris Duryee
60 13 Chris Duryee
h4. User Stories
61
62
 * as a katello user, I would like to be able to export and import a yum repository via disk with a hammer command. This includes both "full" and "incremental" export. The demoable output would be exporting from one Katello instance and importing to another, then confirming the published files are the same. Note: this story is the one that replaces http://www.katello.org/docs/user_guide/disconnected/index.html with new functionality, and will require a docs update.
63
64
 * as a katello user, I would like to be able to export and import library content views to CSV via hammer.
65
66
 * as a katello user, I would like to be able to export and import product information to a CSV file via hammer, including repository information. The demoable output would be exporting a product from Katello A that has had its repos already exported, then importing the product to Katell B after the repo import occurs. Katellos A and B should have the same products.
67
68 11 Chris Duryee
69
h3. Phase 2 Design
70
71
The main user-facing output of Phase 2 is the ability to do import/export from the web UI. An additional important feature is that data processing does not occur on the hammer client anymore. This greatly improves resiliency of the import/export process.
72
73
74
h4. API modifications
75
76
(need to fill in)
77
78
h4. Web UI design/mockup
79
80
(need to fill in)
81
82
83
84
h3. Phase 3 Design
85
86
This phase is further optimization, focusing on the "connected" scenario where the two foreman/katello instances can talk to each other. Previous phases treated the connected scenario as being solved by the disconnected scenario, which meant that all data was written to disk and optionally transferred via scp or http.
87
88
89
h3. Phase 4 Design
90
91
Phase 4 adds additional content types and data to ISS. Detailed design will be added here after phase 2 or phase 3 is complete.