@@ -193,20 +193,12 @@ var DynamicSettings = [...]*protos.DynamicSetting{
193193 },
194194 {
195195 Name : "PEERDB_S3_BYTES_PER_AVRO_FILE" ,
196- Description : "S3 upload chunk size in bytes, needed for large unpartitioned initial loads." ,
196+ Description : "S3 upload chunk size in bytes before compression , needed for large unpartitioned initial loads." ,
197197 DefaultValue : "1000000000" ,
198198 ValueType : protos .DynconfValueType_INT ,
199199 ApplyMode : protos .DynconfApplyMode_APPLY_MODE_IMMEDIATE ,
200200 TargetForSetting : protos .DynconfTarget_CLICKHOUSE ,
201201 },
202- {
203- Name : "PEERDB_S3_CHUNK_ON_UNCOMPRESSED" ,
204- Description : "Track uncompressed Avro size during initial load, following the in-memory size on the destination." ,
205- DefaultValue : "true" ,
206- ValueType : protos .DynconfValueType_BOOL ,
207- ApplyMode : protos .DynconfApplyMode_APPLY_MODE_IMMEDIATE ,
208- TargetForSetting : protos .DynconfTarget_CLICKHOUSE ,
209- },
210202 {
211203 Name : "PEERDB_QUEUE_FORCE_TOPIC_CREATION" ,
212204 Description : "Force auto topic creation in mirrors, applies to Kafka and PubSub mirrors" ,
@@ -789,10 +781,6 @@ func PeerDBMetricsRecordAggregatesEnabled(ctx context.Context, env map[string]st
789781 return dynamicConfBool (ctx , env , "PEERDB_METRICS_RECORD_AGGREGATES_ENABLED" )
790782}
791783
792- func PeerDBS3ChunkOnUncompressed (ctx context.Context , env map [string ]string ) (bool , error ) {
793- return dynamicConfBool (ctx , env , "PEERDB_S3_CHUNK_ON_UNCOMPRESSED" )
794- }
795-
796784func PeerDBPostgresApplyCtidBlockPartitioning (ctx context.Context , env map [string ]string ) (bool , error ) {
797785 return dynamicConfBool (ctx , env , "PEERDB_POSTGRES_APPLY_CTID_BLOCK_PARTITIONING_OVERRIDE" )
798786}
0 commit comments