diff --git a/config.md b/config.md index e83b9d84..cd804e6a 100644 --- a/config.md +++ b/config.md @@ -204,7 +204,7 @@ |Key|Description|Type|Default Value| |---|-----------|----|-------------| -|type|The type of persistence to use|Only 'leveldb' currently supported|`leveldb` +|type|The type of persistence to use|`leveldb`, `postgres`(supports rich query)|`leveldb` ## persistence.leveldb diff --git a/internal/tmmsgs/en_config_descriptions.go b/internal/tmmsgs/en_config_descriptions.go index 664ca267..99c84d3f 100644 --- a/internal/tmmsgs/en_config_descriptions.go +++ b/internal/tmmsgs/en_config_descriptions.go @@ -1,4 +1,4 @@ -// Copyright © 2023 Kaleido, Inc. +// Copyright © 2024 Kaleido, Inc. // // SPDX-License-Identifier: Apache-2.0 // @@ -94,7 +94,7 @@ var ( ConfigEventStreamsRetryMaxDelay = ffc("config.eventstreams.retry.maxDelay", "Maximum delay between retries", i18n.TimeDurationType) ConfigEventStreamsRetryFactor = ffc("config.eventstreams.retry.factor", "Factor to increase the delay by, between each retry", i18n.FloatType) - ConfigPersistenceType = ffc("config.persistence.type", "The type of persistence to use", "Only 'leveldb' currently supported") + ConfigPersistenceType = ffc("config.persistence.type", "The type of persistence to use", "`leveldb`, `postgres`(supports rich query)") ConfigPersistenceLevelDBPath = ffc("config.persistence.leveldb.path", "The path for the LevelDB persistence directory", i18n.StringType) ConfigPersistenceLevelDBMaxHandles = ffc("config.persistence.leveldb.maxHandles", "The maximum number of cached file handles LevelDB should keep open", i18n.IntType) ConfigPersistenceLevelDBSyncWrites = ffc("config.persistence.leveldb.syncWrites", "Whether to synchronously perform writes to the storage", i18n.BooleanType)