@@ -219,7 +219,8 @@ protocol to make nodes agree on a serializable transactional order.
219
219
<listitem>
220
220
221
221
<para>
222
- For servers that are not regularly connected, like laptops or
222
+ For servers that are not regularly connected or have slow
223
+ communication links, like laptops or
223
224
remote servers, keeping data consistent among servers is a
224
225
challenge. Using asynchronous multimaster replication, each
225
226
server works independently, and periodically communicates with
@@ -238,9 +239,8 @@ protocol to make nodes agree on a serializable transactional order.
238
239
In synchronous multimaster replication, each server can accept
239
240
write requests, and modified data is transmitted from the
240
241
original server to every other server before each transaction
241
- commits. Heavy write activity can cause excessive locking,
242
- leading to poor performance. In fact, write performance is
243
- often worse than that of a single server. Read requests can
242
+ commits. Heavy write activity can cause excessive locking and
243
+ commit delays, leading to poor performance. Read requests can
244
244
be sent to any server. Some implementations use shared disk
245
245
to reduce the communication overhead. Synchronous multimaster
246
246
replication is best for mostly read workloads, though its big
0 commit comments