DBZ-8071 Set internal.object.id.cache.size default to 256

This commit is contained in:
Chris Cranford 2024-09-04 06:36:03 -04:00 committed by Chris Cranford
parent 2c0eea6b25
commit de36ff3532

View File

@ -653,7 +653,7 @@ public class OracleConnectorConfig extends HistorizedRelationalDatabaseConnector
.withDisplayName("Controls the maximum size of the object ID cache") .withDisplayName("Controls the maximum size of the object ID cache")
.withType(Type.INT) .withType(Type.INT)
.withWidth(Width.SHORT) .withWidth(Width.SHORT)
.withDefault(10) .withDefault(256)
.withImportance(Importance.LOW) .withImportance(Importance.LOW)
.withValidation(OracleConnectorConfig::validateObjectIdCacheSize) .withValidation(OracleConnectorConfig::validateObjectIdCacheSize)
.withDescription("The connector maintains a least-recently used cache of database table object ID to name mappings. " .withDescription("The connector maintains a least-recently used cache of database table object ID to name mappings. "