File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 3030 *
3131 *
3232 * IDENTIFICATION
33- * $PostgreSQL: pgsql/src/backend/replication/walsender.c,v 1.21 2010/05/26 22:21:33 heikki Exp $
33+ * $PostgreSQL: pgsql/src/backend/replication/walsender.c,v 1.22 2010/05/26 22:34:49 heikki Exp $
3434 *
3535 *-------------------------------------------------------------------------
3636 */
@@ -109,10 +109,10 @@ static void CheckClosedConnection(void);
109109 * We don't have a good idea of what a good value would be; there's some
110110 * overhead per message in both walsender and walreceiver, but on the other
111111 * hand sending large batches makes walsender less responsive to signals
112- * because signals are checked only between messages. 128kB seems like
113- * a reasonable guess for now.
112+ * because signals are checked only between messages. 128kB (with
113+ * default 8k blocks) seems like a reasonable guess for now.
114114 */
115- #define MAX_SEND_SIZE (128 * 1024 )
115+ #define MAX_SEND_SIZE (XLOG_BLCKSZ * 16 )
116116
117117/* Main entry point for walsender process */
118118int
You can’t perform that action at this time.
0 commit comments