WinCC Redundant Server Pairs in Distributed Multi-Site Systems

David Krause21 min read
SiemensTechnical ReferenceWinCC
Licensed PE Working through this on a live machine? A Maine-licensed engineer can take it from here — included with IMD hardware, by the hour for everything else. Book an engineer

1. Overview: Why You Cannot Add a Third Server to a WinCC Redundancy Pair

WinCC Redundancy, as shipped in every current Siemens release from WinCC V7.0 through V8.1, is a strict two-node hot-standby architecture. The constraint is documented in the WinCC Help node "Redundancy" and repeated in the Siemens Industry Online Support entry ID 109976723 - WinCC V8.1: Configuration and communication:

"The WinCC Redundancy system always consists of 2 servers. Thus, you cannot configure any other PCs as redundant PCs for the two redundant server PCs."

This is a design decision, not a defect. WinCC Redundancy is engineered to recover the loss of a single node inside a pair; it does not implement a 2-of-3 quorum, leader election, or shared-state replication across more than two participants. The synchronization protocol uses a single TCP connection between two named peers, exchanges a defined set of runtime objects (process tags, alarms, user archives, tag logging), and the surviving server continues to publish those values to all subscribed clients.

When the operational requirement is "lose any two nodes, keep operating," the answer is not "add a third server to the pair." The answer is to architect the system as a distributed client/server configuration in which each redundancy pair remains two servers, but the client projects subscribe to multiple pairs simultaneously. A single WinCC client can be configured to display views on up to twelve different redundant servers, with each redundant pair acting as an independent failover island. This article walks through the exact configuration steps, naming rules, and topology constraints that make a multi-pair, multi-site WinCC architecture behave the way plant operators expect.

Hard rule: A WinCC redundancy pair is always exactly two servers. A single WinCC client project can subscribe to up to twelve different servers (each potentially redundant). To survive two simultaneous failures, design two or more independent redundancy pairs and configure clients to span them.

2. The Two-Server Redundancy Model in WinCC RT Classic

In WinCC RT (the classic Explorer-based runtime that ships under the names WinCC V7.4 SP3, V7.5, V7.5 SP1, V7.5 SP2, and V8.0/V8.1), redundancy is configured per computer. Open WinCC Explorer on the master, right-click the "Computer" node, select "Properties," and on the "Redundancy" tab enter the partner computer name. The partner reciprocates: both servers must agree on the pairing before either will synchronize.

Configuration fields that must match on both sides:

Parameter Location in WinCC Explorer Required value
Partner server name Computer > Properties > Redundancy DNS-resolvable NetBIOS name or FQDN of the partner PC. Must be identical to the local "Computer name" entry on the partner.
Redundancy type Computer > Properties > Redundancy "WinCC Redundancy" (the only valid type)
Partner connection Computer > Properties > Redundancy TCP/IP. Default port 80 (HTTP) or 443 (HTTPS) for V8.x encrypted redundancy. Verify the port is open bidirectionally through any firewall between the two PCs.
Authorizations Computer > Properties > Start-up The WinCC service account must be identical (or in identical groups) on both servers and must have local administrator rights.
Time source Operating system Both servers must be synchronized to the same NTP source within 1 second. WinCC uses the system clock for archive timestamps.
Project path Computer > Properties > General Both servers must point to byte-identical project files. File replication is the project's responsibility (DFS, robocopy, or third-party replication).

Once paired, the two servers continuously exchange the following runtime objects:

  • Process tag values (Tag Management)
  • Alarm messages and their acknowledgement state
  • Tag logging values, including those currently in the runtime buffer
  • User archive rows and their modification timestamps
  • Picture Tree selections and the active picture name

The synchronization interval is configurable under "Computer > Properties > Redundancy > Synchronization." Default values: process tag synchronization every 1 second, alarm state every 2 seconds, archive every 30 seconds. Reducing these intervals increases network load; the cumulative bandwidth of a single WinCC pair at default settings is typically between 200 kbit/s and 2 Mbit/s depending on tag count.

Failover detection on a healthy pair is sub-second for process tags (loss of partner TCP connection is detected via heartbeat, default 5 seconds). Archive resynchronization after a failover requires between 30 seconds and several minutes, depending on archive size. During resync, alarm insertion order is preserved; the surviving server backfills the gap in the alarm log by querying its partner when the partner returns.

3. The Distributed System: Up to Twelve Servers per Client Project

The same WinCC help text that declares the two-server rule immediately afterward explains how to build larger systems. From the WinCC V8.1 documentation (ID 109976723):

"In runtime, each client can display views on up to twelve different redundant servers, e.g. display messages from Server 1 and Server 2, display and write process values from Server 3, display pictures from Server 4, etc."

The limit of twelve is a WinCC client engineering constraint, not a server constraint. Each WinCC Server process on each PC is independent; what limits a single client is the number of server data sources declared in that client's project. You add sources under "Server Data" in WinCC Explorer or under "Connections" in the TIA Portal HMI device configuration of the client HMI device.

The practical implication for multi-site plants:

Scenario Physical server PCs Redundancy pairs Clients visible to Fits in one client project?
Single control room, single process area 2 1 2 servers Yes
Single control room, two independent areas 4 2 4 servers Yes
Two control rooms, single shared area 4 (2 per room) 2 4 servers Yes
Two control rooms, two independent areas 4 (one pair per room) 2 4 servers Yes
Three control rooms, three areas 6 3 6 servers Yes
Six independent areas, one operator station 12 6 12 servers Yes (at the limit)
Seven areas, one operator station 14 7 14 servers No - split into two client projects
Engineering implication: If the requirement is "two main servers in different locations, both updated in real time, with the standby control room capable of taking over if the main control room fails," the clean architecture is two redundancy pairs - one pair at the main control room, one pair at the standby control room - and clients at both rooms configured to subscribe to all four servers. No client needs to span more than two pairs, and the design survives the loss of any single PC.

4. Server Prefix Naming: Why Every Server Must Have a Unique Prefix

WinCC resolves cross-server tag references through a server prefix. The syntax is ServerPrefix::Tagname where ServerPrefix is a short, unique identifier (typically 2-8 characters) that the WinCC server publishes to clients. When a client receives MCR::TankLevel, the runtime consults its server data table, finds which configured server owns prefix MCR, and resolves the tag against that server's tag management.

If two servers share the same prefix, clients cannot disambiguate, and the runtime will return values from whichever server happens to respond first - which is non-deterministic and unsafe for control-room display. The prefix must be:

  • Unique across all servers visible to the same client project
  • Identical between the master and standby of a redundancy pair (clients see one logical server behind the prefix; the runtime picks the live member of the pair)
  • Configured under "Computer > Properties > General > Server Prefix" in WinCC Explorer
  • Implemented on the HMI server side under "Runtime settings > General > Server prefix" in TIA Portal

Typical prefix conventions used in plant deployments:

Site Pair Master prefix Standby prefix Logical pair prefix (client-side)
Main Control Room MCR_A MCRA_M MCRA_S MCRA
Main Control Room MCR_B MCRB_M MCRB_S MCRB
Standby Control Room SCR_A SCRA_M SCRA_S SCRA
Standby Control Room SCR_B SCRB_M SCRB_S SCRB

Clients display the logical prefix MCRA, MCRB, SCRA, SCRB. The failover between MCRA_M and MCRA_S is invisible to the client because the client only references MCRA::TankLevel; the WinCC redundancy layer swaps which physical server supplies the value.

The configuration that makes this work on the client side is "Preferred server" under each server entry in the client's project. Set the preferred server to the local control room's master when the client is in the main control room, and to the standby control room's master when the client is in the standby control room. This bias accelerates recovery when the partner in the local room fails but the partner at the remote room is still healthy: the client prefers its local copy first, then falls back to the remote pair.

5. Multi-User System in TIA Portal (WinCC Professional / RT Professional)

WinCC Professional (also called RT Professional) integrated into the TIA Portal offers a different but compatible model: the multi-user system. In this architecture one or more HMI servers publish runtime data, and multiple HMI clients (WinCC RT Client) subscribe to those servers without holding their own copy of the project. The TIA Portal documentation defines the configurations at Multi-user system (RT Professional).

Key differences from WinCC RT classic:

  • Project engineering is centralized in TIA Portal; all HMI devices (servers and clients) share one project file on the engineering station.
  • HMI server devices are added under "Devices & Networks" with the device type "WinCC RT Professional."
  • HMI clients are added similarly; their "Connections" editor binds them to one or more HMI servers.
  • Redundancy for RT Professional is configured per HMI server under "Runtime settings > Redundancy" - the partner HMI server is selected from the project tree. Behavior is the same two-server model as classic WinCC.

In TIA Portal V17 and later, RT Professional supports the "Redundancy" runtime license option, and the partner is configured with a few clicks rather than through WinCC Explorer dialogs. The TIA Portal project compiles into separate runtime executables for each HMI device, deployed independently through the "Download to device" workflow. Once running, the two paired servers behave identically to a classic WinCC pair.

Version note: WinCC Professional (RT Professional) has supported redundant server configuration since TIA Portal V15.1. The TIA Portal V17 / V18 / V19 / V20 / V21 releases progressively add features (for example OPC UA server redundancy and encrypted partner connection). Verify the specific behavior matrix in the TIA Portal release notes for the version you deploy. As of V21, the multi-user system documentation remains consistent with the two-server-per-pair rule.

6. Designing the Two-Control-Room Topology

The canonical "main control room plus standby control room" architecture with full WinCC redundancy is shown below. This design pattern applies whether you use WinCC RT classic or WinCC RT Professional.

Two-Control-Room WinCC Redundancy Topology Main Control Room (MCR) MCR-SRV1 Master prefix: MCR port 80 / 443 MCR-SRV2 Standby prefix: MCR port 80 / 443 Partner (redundancy sync) Operator Stations (RT Clients) preferred server: MCR-SRV1 Subscribes to all four servers (MCR pair primary, SCR pair secondary) Standby Control Room (SCR) SCR-SRV1 Master prefix: SCR port 80 / 443 SCR-SRV2 Standby prefix: SCR port 80 / 443 Partner Operator Stations (RT Clients) preferred server: SCR-SRV1 Client subscription

6.1 Server placement and licensing

PC Role Prefix Required license components OS
MCR-SRV1 Main CR, master MCR WinCC Server (power tag count) + Redundancy option Windows Server 2019 / 2022 Standard
MCR-SRV2 Main CR, standby MCR WinCC Server + Redundancy option Windows Server 2019 / 2022 Standard
SCR-SRV1 Standby CR, master SCR WinCC Server + Redundancy option Windows Server 2019 / 2022 Standard
SCR-SRV2 Standby CR, standby SCR WinCC Server + Redundancy option Windows Server 2019 / 2022 Standard
MCR-CL1..N Main CR, operator stations n/a (clients) WinCC RT Client Windows 10 LTSC 2019 / Windows 11 LTSC
SCR-CL1..N Standby CR, operator stations n/a (clients) WinCC RT Client Windows 10 LTSC 2019 / Windows 11 LTSC

6.2 Network requirements

Each redundancy pair requires a dedicated TCP path between the two partners. Recommended practices:

  • Separate VLAN for the redundancy partner connection (so plant broadcast traffic does not interfere with the synchronization stream).
  • Minimum 100 Mbit/s dedicated link; 1 Gbit/s recommended for large tag counts (>10,000 tags).
  • Latency between the two peers should be below 50 ms RTT. Cross-room links typically satisfy this on plant fiber; WANs across cities often do not, in which case the standby room should be considered an independent pair with its own PLC connections rather than a true partner.
  • Firewall rules must permit the configured redundancy port bidirectionally on the partner IPs only; deny on all others.
  • All four servers should resolve each other's names via DNS; add static entries to C:\Windows\System32\drivers\etc\hosts as a fallback in case DNS is degraded during a failover event.

6.3 Client subscription strategy

Both MCR and SCR operators need to see the same data. Two configurations are valid:

  1. Local-first: Each client configures its own pair as the preferred server, with the remote pair as secondary. This minimizes cross-room bandwidth in normal operation.
  2. Symmetric: Both rooms' clients list all four servers equally. Simpler engineering, more cross-room traffic.

For dual control room standby operation, configuration (1) is preferred: under normal conditions each room runs on its own data, and only on failover does the standby room pull from the main room.

7. Step-by-Step Configuration Procedure

The procedure below uses WinCC RT classic (V7.x / V8.x). For TIA Portal RT Professional, the equivalent steps are reached through "Devices & Networks > HMI server > Runtime settings > Redundancy."

7.1 Prerequisites

  • Four server-grade PCs with identical hardware (CPU, RAM, disk). Asymmetric pairs cause inconsistent archive performance.
  • Windows Server 2019 Standard (or later) installed and patched on all four servers.
  • Identical local administrator account (e.g., WinCCAdmin) on all four PCs with the same password. Configure through Local Users and Groups, not through Active Directory managed service accounts, to avoid permission drift.
  • Plant network with the redundancy VLAN configured and ports open.
  • NTP service pointing to a common time source on all four servers.
  • WinCC installation media matching the version (e.g., V8.1 DVD or SIMATIC WinCC V8.1 setup).
  • Licenses: 4x WinCC Server, 4x WinCC Redundancy option, plus RT Client licenses per operator station.

7.2 Configure server MCR-SRV1 (master of main pair)

  1. Install WinCC V8.1 with the "WinCC Server" and "Redundancy" options checked.
  2. Open the WinCC project on MCR-SRV1.
  3. In WinCC Explorer, right-click "Computer" and select "Properties."
  4. On the "General" tab, set Computer name to MCR-SRV1 and Server prefix to MCR.
  5. On the "Redundancy" tab, check Activate redundancy, enter partner MCR-SRV2, and leave port 80 (HTTP) or 443 (HTTPS) as required by your firewall policy.
  6. On the "Start-up" tab, add the WinCC service account under "Authorizations."
  7. Save and close. Repeat the entire project on MCR-SRV2, SCR-SRV1, SCR-SRV2 - but adjust computer names and partner names accordingly.

7.3 Configure server MCR-SRV2 (standby of main pair)

  1. Open the same WinCC project (copy from MCR-SRV1 first, or share the project folder with file-level replication).
  2. Set Computer name to MCR-SRV2 and Server prefix to MCR (must match the master).
  3. Set Partner to MCR-SRV1.
  4. Save and close.

7.4 Configure server SCR-SRV1 (master of standby pair)

  1. Open the SCR project (can be a different WinCC project from the MCR if it serves a different process area, or a copy with adjusted server prefixes).
  2. Set Computer name to SCR-SRV1 and Server prefix to SCR.
  3. Set Partner to SCR-SRV2.

7.5 Configure server SCR-SRV2 (standby of standby pair)

  1. Set Computer name to SCR-SRV2 and Server prefix to SCR.
  2. Set Partner to SCR-SRV1.

7.6 Configure each operator client

  1. On each operator station, install the WinCC RT Client runtime.
  2. Open the client project (or the shared project in TIA Portal).
  3. Under "Server Data," add four entries: MCR-SRV1, MCR-SRV2, SCR-SRV1, SCR-SRV2. Each entry is configured with the server's IP, the prefix, and the redundancy-aware connection parameters.
  4. For each server entry, set the Preferred server. On MCR clients, set MCR-SRV1 as the preferred server for the MCR pair and SCR-SRV1 as the preferred server for the SCR pair. Reverse for SCR clients.
  5. Compile and download the client project. Activate runtime.

7.7 Configure alarm and archive redundancy

Beyond the basic pair, you must enable redundancy for each subsystem that contains stateful data:

  • Alarm Logging: In the Alarm Logging editor, open the "Configuration" dialog and verify "Redundancy" is enabled. Defaults are usually correct.
  • Tag Logging: Open each archive's properties and verify "Redundancy" is checked. Archive segments are replicated between partners; on failover the surviving server continues writing.
  • User Archives: Enable redundancy per archive. Field-proven pitfall: large user archives with millions of rows can take 10+ minutes to resync after a long failover; size accordingly.

8. Verification and Commissioning Tests

Acceptance testing for a multi-pair WinCC architecture must demonstrate failover in each pair independently and verify that the client re-converges. The standard test sequence is:

8.1 Pair-level failover test

  1. Both MCR servers running. Verify in WinCC Explorer "Redundancy" status indicator: both show "Master" and "Standby" correctly.
  2. On the operator client, navigate to a screen that reads MCR::TankLevel. Note the value.
  3. Pull the network cable from MCR-SRV1.
  4. Within 5 seconds, MCR-SRV2 transitions to "Master." Verify by reconnecting a client session and observing the value remains unchanged.
  5. Reconnect the cable. MCR-SRV1 returns as standby. Verify resync completes within the configured time.

8.2 Cross-pair client test

  1. On the SCR operator station, open a screen showing both MCR::TankLevel and SCR::TankLevel.
  2. Pull the network cable from MCR-SRV1 (now: MCR-SRV2 is the only survivor of the MCR pair).
  3. Verify the MCR value on the SCR client continues to update from MCR-SRV2 without operator intervention.
  4. Power down MCR-SRV2 as well (now: no MCR servers are running).
  5. Verify the SCR client logs an alarm "Server MCR not reachable" and the SCR-related values continue normally from the SCR pair.

8.3 Archive continuity test

  1. Trigger a known process event (e.g., a tank level crossing 50%) on the MCR pair.
  2. Verify the alarm appears in the Alarm Logging view on both the MCR and SCR operator stations.
  3. Failover MCR-SRV1 to MCR-SRV2.
  4. Verify the historical tag logging view shows no gap across the failover time.

8.4 Performance baseline

Record before commissioning: CPU, RAM, network utilization, archive write latency, alarm insertion rate. These become the baseline against which future failure modes are compared. Typical target numbers for a 5,000-tag project with 10 archives on a four-core Xeon at 2.5 GHz:

Metric Acceptable range at commissioning
CPU utilization, normal operation 10-30%
RAM working set 4-8 GB
Archive write latency (p95) < 500 ms
Alarm insertion rate, peak up to 100 alarms/s sustained
Partner sync heartbeat jitter < 50 ms

9. Licensing, Operating System, and Hardware Constraints

Item Constraint Notes
WinCC Server license One per physical server PC Required even for the standby member of a pair
WinCC Redundancy license option One per physical server PC Activates the two-server synchronization capability; verify the option code against the current Siemens catalog for your WinCC version
WinCC Client license One per operator station, tag-count tiered RT Client may require its own runtime license separate from viewer licenses
Operating system (server) Windows Server 2019 / 2022 Standard or Datacenter WinCC V8.x does not support Windows Server 2012 R2; minimum is Server 2016 with recent patches
Client OS Windows 10 LTSC 2019 / 2021, or Windows 11 LTSC WinCC RT Client does not support consumer editions of Windows 10 / 11
Disk RAID 1 or RAID 10, SSDs at minimum Archive I/O dominates the disk load; SSDs reduce archive write latency by 5-10x compared to spinning disks
RAM Minimum 16 GB; recommended 32 GB for projects > 5,000 tags WinCC memory grows linearly with archive size
CPU Xeon class, 4+ cores at 2.5 GHz or better Alarm insertion and tag logging are CPU-bound under high event rates

10. Troubleshooting Matrix

Symptom Probable cause Verification Resolution
Server prefix conflict error at client start-up Two servers configured with the same prefix Open each server's "Computer > Properties > General" and inspect the prefix field Make every server prefix unique across the client project
Pair never transitions to "Synchronized" Partner unreachable or partner firewall blocking port 80 / 443 From server A, run Test-NetConnection -ComputerName MCR-SRV2 -Port 80 in PowerShell Open the port, verify DNS resolution, verify the partner's WinCC service is running
Frequent flapping between master and standby Unstable network or clock drift > 1 s Run w32tm /monitor from each server Stabilize the link, add a second NIC for redundancy, fix NTP
Alarm log gaps after failover Alarm Logging redundancy not enabled Open Alarm Logging editor and check the redundancy setting Enable redundancy per alarm log
User archive rows missing after failover User archive redundancy not enabled Open the user archive editor and verify redundancy Enable redundancy; consider archive sizing for long resync times
"Maximum number of servers exceeded" on client start-up Client project references more than 12 server data sources Count entries under "Server Data" Split the client project, or consolidate servers into fewer pairs
Client shows values from wrong server after failover Preferred server bias not configured Inspect the server entry in the client's project Set the preferred server explicitly per client location
RT Professional redundancy partner not detected TIA Portal project was not compiled after partner added Check "Devices & Networks" compile output Recompile and re-download both HMI servers
Alarm timestamps out of order on the standby after takeover Servers were not NTP-synchronized at commissioning Compare w32tm /query /status output on both peers Reconfigure NTP, then perform a full archive resync
WinCC service account cannot replicate project files between partners Service account differs between partners or lacks share permissions Run whoami and verify group membership on both sides Use a single named account with identical passwords and add to local Administrators on both PCs

11. Field-Proven Notes and Caveats

Time synchronization is non-negotiable. WinCC uses the system clock for archive timestamps and alarm ordering. If two servers drift more than 1 second apart, archive continuity breaks across failover. Configure all servers to point at the same NTP source and verify with w32tm /monitor before commissioning.

Use identical service accounts. WinCC replicates files between partners using the service account credentials. If the account differs in name or password between partners, file replication silently fails and the failover surfaces as missing picture files or broken alarm views.

Avoid cross-WAN redundancy. WinCC Redundancy tolerates at most ~50 ms RTT between partners. For geographically distant rooms, prefer the multi-pair architecture: each room is its own pair, and clients subscribe to both pairs rather than running one pair stretched across the WAN. The synchronization protocol was not designed for high-latency links, and recovery behavior becomes non-deterministic above the latency limit.

The 12-server client limit is a per-project limit. If the plant grows beyond 12 servers in a single client view, split the operator stations. The most common pattern is one client project per process area, with a higher-level SCADA (WinCC OA, SIMATIC PCS 7, or a third-party system) aggregating above them.

Tag Logging resync can be slow. After a long outage, the surviving server must replay its partner's archive backlog. For projects with multi-gigabyte archives, this can take hours. Pre-size the archive partition with 2-3x the expected steady-state consumption to leave headroom for backlog.

Picture Tree failover is automatic. The picture tree selection state is replicated, so an operator who has drilled into a sub-picture on the master and then fails over to the standby will see the same sub-picture after recovery. This is one of the few stateful pieces of information that survives failover seamlessly.

OPC UA redundancy is version-dependent. In TIA Portal V18 / V19, the WinCC Professional OPC UA Server is published from both members of a pair; clients with OPC UA redundancy awareness pick the live server. Older releases expose only one OPC UA endpoint at a time. Verify your release's OPC UA redundancy behavior against the TIA Portal release notes.

Server project file replication. WinCC Redundancy does not replicate the project file (the .mcp for classic or the TIA Portal project). You must keep both project copies byte-identical through an out-of-band mechanism: robocopy scheduled task, DFS Replication, or a shared project folder on a SAN. Treat the project as code; do not let engineers edit one copy and forget to push to the partner.

Anti-virus exclusions. Add the WinCC project folder, the WinCC archive folder, and the WinCC service executables to the anti-virus exclusion list on both partners. Real-time scanning of the archive database files causes intermittent I/O stalls that WinCC interprets as partner loss and triggers spurious failovers.

FAQ

Can I add a third server to a WinCC redundancy pair?

No. WinCC Redundancy is a strict two-server architecture. The WinCC Help and Siemens support entry ID 109976723 state this explicitly. To survive two simultaneous node losses, deploy two or more independent redundancy pairs and configure clients to span them. The maximum is twelve servers per client project, which yields up to six redundancy pairs visible to one operator station.

How many redundant servers can a single WinCC client connect to?

A single WinCC client project supports up to twelve different servers in its server data list. Each server can be a member of its own redundancy pair, so a client can effectively subscribe to six independent redundancy pairs (twelve physical servers) in one project. Beyond that, split the operator station into multiple client projects.

Do the two pairs in different control rooms need the same server prefix?

No. Each redundancy pair shares one prefix between its two members, but different pairs must use different prefixes so the client can disambiguate. A typical two-room plant uses one prefix per pair, for example MCR for the main control room pair and SCR for the standby control room pair. Clients reference tags as MCR::TankLevel or SCR::TankLevel.

Does WinCC RT Professional support redundant servers the same way as classic WinCC?

Yes, since TIA Portal V15.1. The redundancy behavior is identical: one master, one standby, identical projects, identical prefixes. Configuration moves from WinCC Explorer dialogs to the TIA Portal "Runtime settings > Redundancy" tab on the HMI server device. The reference documentation is the multi-user system guide for the TIA Portal release you deploy.

What is the failover time for a WinCC redundancy pair?

Process tag failover is sub-second because the client detects the lost TCP connection and re-subscribes to the surviving server (typical heartbeat 5 seconds). Archive continuity takes longer: typically 30 seconds to several minutes depending on archive size and the duration of the outage. Alarm state and picture tree selection are restored within a few seconds. The longest delay is usually user-archive resync, which can take 10+ minutes for large archives after an extended outage.

Back to blog