From 0ce4dca05a7ba12ff8f58305b20e3f24cc9fc123 Mon Sep 17 00:00:00 2001 From: Konstantin Knizhnik Date: Wed, 8 Dec 2021 10:30:45 +0300 Subject: [PATCH] Diable relish upload and backpressure --- control_plane/src/compute.rs | 6 +++--- pageserver/src/tenant_mgr.rs | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/control_plane/src/compute.rs b/control_plane/src/compute.rs index 841cf050c7..3934a13217 100644 --- a/control_plane/src/compute.rs +++ b/control_plane/src/compute.rs @@ -293,9 +293,9 @@ impl PostgresNode { conf.append("wal_level", "replica"); // wal_sender_timeout is the maximum time to wait for WAL replication. // It also defines how often the walreciever will send a feedback message to the wal sender. - conf.append("wal_sender_timeout", "5s"); - conf.append("max_replication_flush_lag", "160MB"); - conf.append("max_replication_apply_lag", "1500MB"); + //conf.append("wal_sender_timeout", "5s"); + //conf.append("max_replication_flush_lag", "160MB"); + //conf.append("max_replication_apply_lag", "1500MB"); conf.append("listen_addresses", &self.address.ip().to_string()); conf.append("port", &self.address.port().to_string()); diff --git a/pageserver/src/tenant_mgr.rs b/pageserver/src/tenant_mgr.rs index ef35762831..50294757a2 100644 --- a/pageserver/src/tenant_mgr.rs +++ b/pageserver/src/tenant_mgr.rs @@ -106,7 +106,7 @@ fn init_repo(conf: &'static PageServerConf, tenant_id: ZTenantId) { conf, Arc::new(walredo_mgr), tenant_id, - true, + false, )); let mut m = access_tenants();