You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// ConnectionConfig required configuration in order to
// open session with BCDB instance, replica set informations
// servers root CAs
type ConnectionConfig struct {
// List of replicas URIs client can connect to
ReplicaSet []*Replica
// Keeps path to the server's root CA
RootCAs []string
// Logger instance, if nil an internal logger is created
Logger *logger.SugarLogger
}
when creating a db instance in bcdb.Create, check that there is
at least one CA cert
at least one replica
The text was updated successfully, but these errors were encountered:
Currently, we are doing so many serial sync writes
to metadata databases in the block store. This commit
uses batch writes and goroutines to parallelize these
sync writes.
As existing recovery logic is robust, node failure during
any parallel operations is not a problem.
Signed-off-by: senthil <[email protected]>
// ConnectionConfig required configuration in order to
// open session with BCDB instance, replica set informations
// servers root CAs
type ConnectionConfig struct {
// List of replicas URIs client can connect to
ReplicaSet []*Replica
// Keeps path to the server's root CA
RootCAs []string
// Logger instance, if nil an internal logger is created
Logger *logger.SugarLogger
}
when creating a db instance in
bcdb.Create
, check that there isThe text was updated successfully, but these errors were encountered: