RedisEnterpriseDatabase API Reference
| Redis Enterprise for Kubernetes |
|---|
apiVersion:
app.redislabs.com/v1alpha1
RedisEnterpriseDatabase is the Schema for the redisenterprisedatabases API
| Name | Type | Description | Required |
|---|---|---|---|
| apiVersion | string | app.redislabs.com/v1alpha1 | true |
| kind | string | RedisEnterpriseDatabase | true |
| metadata | object | Refer to the Kubernetes API documentation for the fields of the `metadata` field. | true |
| spec | object |
RedisEnterpriseDatabaseSpec defines the desired state of RedisEnterpriseDatabase |
false |
| status | object |
RedisEnterpriseDatabaseStatus defines the observed state of RedisEnterpriseDatabase |
false |
spec
RedisEnterpriseDatabaseSpec defines the desired state of RedisEnterpriseDatabase
| Name | Type | Description | Required |
|---|---|---|---|
| activeActive | object |
Connection/ association to the Active-Active database. |
false |
| alertSettings | object |
Settings for database alerts |
false |
| auditing | object |
Database auditing configuration. |
false |
| backup | object |
Target for automatic database backups. |
false |
| clientAuthenticationCertificates | []string |
The Secrets containing TLS Client Certificate to use for Authentication |
false |
| dataInternodeEncryption | boolean |
Internode encryption (INE) setting. An optional boolean setting, overriding a similar cluster-wide policy. If set to False, INE is guaranteed to be turned off for this DB (regardless of cluster-wide policy). If set to True, INE will be turned on, unless the capability is not supported by the DB ( in such a case we will get an error and database creation will fail). If left unspecified, will be disabled if internode encryption is not supported by the DB (regardless of cluster default). Deleting this property after explicitly setting its value shall have no effect. |
false |
| databasePort | integer |
TCP port assigned to the database within the Redis Enterprise cluster. Must be unique across all databases in the Redis Enterprise cluster. Will be generated automatically if omitted. can not be changed after creation |
false |
| databaseSecretName | string |
Name of the secret containing the database password (Redis databases only). The secret is created automatically if it does not exist. The password is stored under the "password" key in the secret. If creating the secret manually, create an opaque secret with the password under the "password" key. To disable authentication, set the value of the "password" key in the secret to an empty string. Note: For Active-Active databases, this secret is not created automatically. For memcached databases, use memcachedSaslSecretName instead. |
false |
| databaseServicePort | integer |
A custom port to be exposed by the database Services. Can be modified/added/removed after REDB creation. If set, it'll replace the default service port (namely, databasePort or defaultRedisPort). |
false |
| defaultUser | boolean |
Allows connections with the default user. When disabled, the DatabaseSecret is not created or updated. |
false |
| evictionPolicy | string |
Database eviction policy. See https://redis.io/docs/latest/operate/rs/databases/memory-performance/eviction-policy/ |
false |
| isRof | boolean |
Enables Auto Tiering (formerly Redis on Flash) for Redis databases only. Defaults to false. |
false |
| memcachedSaslSecretName | string |
Name of the secret containing credentials for memcached database authentication. Store credentials in an opaque secret with "username" and "password" keys. Note: Connections are not encrypted. |
false |
| memorySize | string |
Memory size for the database using formats like 100MB or 0.1GB. Minimum value is 100MB. For Auto Tiering (formerly Redis on Flash), this value represents RAM+Flash memory and must be at least 1GB. |
false |
| modulesList | []object |
List of modules associated with the database. The list of valid modules for the specific cluster can be retrieved from the status of the REC object. Use the "name" and "versions" fields for the specific module configuration. If specifying an explicit version for a module, automatic modules versions upgrade must be disabled by setting the '.upgradeSpec.upgradeModulesToLatest' field in the REC to 'false'. Note that the option to specify module versions is deprecated, and will be removed in future releases. for Redis version 8 and above, bundled modules are enabled automatically, so there is no need to specify them |
false |
| ossCluster | boolean |
Enables OSS Cluster mode. Note: Not all client libraries support OSS cluster mode. |
false |
| persistence | enum |
Database persistence policy for on-disk storage. Enum: disabled, aofEverySecond, aofAlways, snapshotEvery1Hour, snapshotEvery6Hour, snapshotEvery12Hour |
false |
| proxyPolicy | string |
Proxy policy for the database. Supported proxy policies are: single/all-master-shards/all-nodes When left blank, the default value will be chosen according to the value of ossCluster - single if disabled, all-master-shards when enabled |
false |
| rackAware | boolean |
Enables rack awareness for improved availability. See https://redis.io/docs/latest/operate/rs/clusters/configure/rack-zone-awareness/ |
false |
| redisEnterpriseCluster | object |
Connection to the Redis Enterprise Cluster. |
false |
| redisVersion | string |
Redis OSS version. Version can be specified via |
false |
| replicaSources | []object |
What databases to replicate from |
false |
| replication | boolean |
Enables in-memory database replication for higher availability. Creates a replica shard for every master shard. Defaults to false. |
false |
| resp3 | boolean |
Whether this database supports RESP3 protocol. Note - Deleting this property after explicitly setting its value shall have no effect. Please view the corresponding field in RS doc for more info. |
false |
| rofRamRatio | integer |
RAM allocation ratio for Redis Flex (v2) databases as a percentage of total data size. Valid range 0-100. When omitted, RS uses the default value of 50%. Controls how much RAM is allocated per unit of data (e.g., 30% means 3MB RAM per 10MB data). RAM grows proportionally with data until rofRamSize limit is reached (if specified). Only applicable when isRof=true and Redis version >= 8.0 (BigStore v2 - Redis Flex). Minimum: 0 Maximum: 100 |
false |
| rofRamSize | string |
The size of the RAM portion of an Auto Tiering (formerly Redis on Flash) database. Similarly to "memorySize" use formats like 100MB, 0.1GB. It must be at least 10% of combined memory size (RAM and Flash), as specified by "memorySize". |
false |
| rolesPermissions | []object |
List of Redis Enteprise ACL and Role bindings to apply |
false |
| shardCount | integer |
Number of database server-side shards. |
false |
| shardingEnabled | boolean |
Toggles database sharding for REAADBs (Active Active databases) and enabled by default. This field is blocked for REDB (non-Active Active databases) and sharding is toggled via the shardCount field - when shardCount is 1 this is disabled otherwise enabled. |
false |
| shardsPlacement | enum |
Shard placement strategy: "dense" or "sparse". dense: Shards reside on as few nodes as possible. sparse: Shards are distributed across as many nodes as possible. Enum: dense, sparse |
false |
| tlsMode | enum |
Require TLS authenticated and encrypted connections to the database. enabled - all client and replication connections to the Database must use TLS. disabled - no incoming connection to the Database should use TLS. replica_ssl - databases that replicate from this one need to use TLS. Enum: disabled, enabled, replica_ssl |
false |
| type | enum |
Database type: redis or memcached. Enum: redis, memcached |
false |
| upgradeSpec | object |
Specifications for DB upgrade. |
false |
spec.activeActive
Connection/ association to the Active-Active database.
| Name | Type | Description | Required |
|---|---|---|---|
| name | string |
The the corresponding Active-Active database name, Redis Enterprise Active Active Database custom resource name, this Resource is associated with. In case this resource is created manually at the active active database creation this field must be filled via the user, otherwise, the operator will assign this field automatically. Note: this feature is currently unsupported. |
true |
| participatingClusterName | string |
The corresponding participating cluster name, Redis Enterprise Remote Cluster custom resource name, in the Active-Active database, In case this resource is created manually at the active active database creation this field must be filled via the user, otherwise, the operator will assign this field automatically. Note: this feature is currently unsupported. |
true |
spec.alertSettings
Settings for database alerts
| Name | Type | Description | Required |
|---|---|---|---|
| bdb_backup_delayed | object |
Periodic backup has been delayed for longer than specified threshold value [minutes]. -Note threshold is commented (allow string/int/float and support backwards compatibility) but is required |
false |
| bdb_crdt_src_high_syncer_lag | object |
Active-active source - sync lag is higher than specified threshold value [seconds] -Note threshold is commented (allow string/int/float and support backwards compatibility) but is required |
false |
| bdb_crdt_src_syncer_connection_error | object |
Active-active source - sync has connection error while trying to connect replica source -Note threshold is commented (allow string/int/float and support backwards compatibility) but is required |
false |
| bdb_crdt_src_syncer_general_error | object |
Active-active source - sync encountered in general error -Note threshold is commented (allow string/int/float and support backwards compatibility) but is required |
false |
| bdb_high_latency | object |
Latency is higher than specified threshold value [micro-sec] -Note threshold is commented (allow string/int/float and support backwards compatibility) but is required |
false |
| bdb_high_throughput | object |
Throughput is higher than specified threshold value [requests / sec.] -Note threshold is commented (allow string/int/float and support backwards compatibility) but is required |
false |
| bdb_long_running_action | object |
An alert for state-machines that are running for too long -Note threshold is commented (allow string/int/float and support backwards compatibility) but is required |
false |
| bdb_low_throughput | object |
Throughput is lower than specified threshold value [requests / sec.] -Note threshold is commented (allow string/int/float and support backwards compatibility) but is required |
false |
| bdb_proxy_cert_expiring_soon | object |
Proxy certificate will expire in less than specified threshold value [days] |
false |
| bdb_ram_dataset_overhead | object |
Dataset RAM overhead of a shard has reached the threshold value [% of its RAM limit] -Note threshold is commented (allow string/int/float and support backwards compatibility) but is required |
false |
| bdb_ram_values | object |
Percent of values kept in a shard's RAM is lower than [% of its key count] -Note threshold is commented (allow string/int/float and support backwards compatibility) but is required |
false |
| bdb_replica_src_high_syncer_lag | object |
Replica-of source - sync lag is higher than specified threshold value [seconds] -Note threshold is commented (allow string/int/float and support backwards compatibility) but is required |
false |
| bdb_replica_src_syncer_connection_error | object |
Replica-of source - sync has connection error while trying to connect replica source -Note threshold is commented (allow string/int/float and support backwards compatibility) but is required |
false |
| bdb_shard_num_ram_values | object |
Number of values kept in a shard's RAM is lower than [values] -Note threshold is commented (allow string/int/float and support backwards compatibility) but is required |
false |
| bdb_size | object |
Dataset size has reached the threshold value [% of the memory limit] expected fields: -Note threshold is commented (allow string/int/float and support backwards compatibility) but is required |
false |
spec.alertSettings.bdb_backup_delayed
Periodic backup has been delayed for longer than specified threshold value [minutes]. -Note threshold is commented (allow string/int/float and support backwards compatibility) but is required
| Name | Type | Description | Required |
|---|---|---|---|
| enabled | boolean |
Alert enabled or disabled |
false |
spec.alertSettings.bdb_crdt_src_high_syncer_lag
Active-active source - sync lag is higher than specified threshold value [seconds] -Note threshold is commented (allow string/int/float and support backwards compatibility) but is required
| Name | Type | Description | Required |
|---|---|---|---|
| enabled | boolean |
Alert enabled or disabled |
false |
spec.alertSettings.bdb_crdt_src_syncer_connection_error
Active-active source - sync has connection error while trying to connect replica source -Note threshold is commented (allow string/int/float and support backwards compatibility) but is required
| Name | Type | Description | Required |
|---|---|---|---|
| enabled | boolean |
Alert enabled or disabled |
false |
spec.alertSettings.bdb_crdt_src_syncer_general_error
Active-active source - sync encountered in general error -Note threshold is commented (allow string/int/float and support backwards compatibility) but is required
| Name | Type | Description | Required |
|---|---|---|---|
| enabled | boolean |
Alert enabled or disabled |
false |
spec.alertSettings.bdb_high_latency
Latency is higher than specified threshold value [micro-sec] -Note threshold is commented (allow string/int/float and support backwards compatibility) but is required
| Name | Type | Description | Required |
|---|---|---|---|
| enabled | boolean |
Alert enabled or disabled |
false |
spec.alertSettings.bdb_high_throughput
Throughput is higher than specified threshold value [requests / sec.] -Note threshold is commented (allow string/int/float and support backwards compatibility) but is required
| Name | Type | Description | Required |
|---|---|---|---|
| enabled | boolean |
Alert enabled or disabled |
false |
spec.alertSettings.bdb_long_running_action
An alert for state-machines that are running for too long -Note threshold is commented (allow string/int/float and support backwards compatibility) but is required
| Name | Type | Description | Required |
|---|---|---|---|
| enabled | boolean |
Alert enabled or disabled |
false |
spec.alertSettings.bdb_low_throughput
Throughput is lower than specified threshold value [requests / sec.] -Note threshold is commented (allow string/int/float and support backwards compatibility) but is required
| Name | Type | Description | Required |
|---|---|---|---|
| enabled | boolean |
Alert enabled or disabled |
false |
spec.alertSettings.bdb_proxy_cert_expiring_soon
Proxy certificate will expire in less than specified threshold value [days]
| Name | Type | Description | Required |
|---|---|---|---|
| enabled | boolean |
Alert enabled or disabled |
false |
spec.alertSettings.bdb_ram_dataset_overhead
Dataset RAM overhead of a shard has reached the threshold value [% of its RAM limit] -Note threshold is commented (allow string/int/float and support backwards compatibility) but is required
| Name | Type | Description | Required |
|---|---|---|---|
| enabled | boolean |
Alert enabled or disabled |
false |
spec.alertSettings.bdb_ram_values
Percent of values kept in a shard's RAM is lower than [% of its key count] -Note threshold is commented (allow string/int/float and support backwards compatibility) but is required
| Name | Type | Description | Required |
|---|---|---|---|
| enabled | boolean |
Alert enabled or disabled |
false |
spec.alertSettings.bdb_replica_src_high_syncer_lag
Replica-of source - sync lag is higher than specified threshold value [seconds] -Note threshold is commented (allow string/int/float and support backwards compatibility) but is required
| Name | Type | Description | Required |
|---|---|---|---|
| enabled | boolean |
Alert enabled or disabled |
false |
spec.alertSettings.bdb_replica_src_syncer_connection_error
Replica-of source - sync has connection error while trying to connect replica source -Note threshold is commented (allow string/int/float and support backwards compatibility) but is required
| Name | Type | Description | Required |
|---|---|---|---|
| enabled | boolean |
Alert enabled or disabled |
false |
spec.alertSettings.bdb_shard_num_ram_values
Number of values kept in a shard's RAM is lower than [values] -Note threshold is commented (allow string/int/float and support backwards compatibility) but is required
| Name | Type | Description | Required |
|---|---|---|---|
| enabled | boolean |
Alert enabled or disabled |
false |
spec.alertSettings.bdb_size
Dataset size has reached the threshold value [% of the memory limit] expected fields: -Note threshold is commented (allow string/int/float and support backwards compatibility) but is required
| Name | Type | Description | Required |
|---|---|---|---|
| enabled | boolean |
Alert enabled or disabled |
false |
spec.auditing
Database auditing configuration.
| Name | Type | Description | Required |
|---|---|---|---|
| dbConnsAuditing | boolean |
Enables auditing of database connection and authentication events.
When enabled, connection, authentication, and disconnection events are tracked and sent
to the configured audit listener (configured at the cluster level).
The cluster-level auditing configuration must be set before enabling this on a database. |
false |
spec.backup
Target for automatic database backups.
| Name | Type | Description | Required |
|---|---|---|---|
| abs | object |
|
false |
| ftp | object |
|
false |
| gcs | object |
GoogleStorage |
false |
| interval | integer |
Backup Interval in seconds |
false |
| mount | object |
MountPointStorage |
false |
| s3 | object |
|
false |
| sftp | object |
|
false |
| swift | object |
|
false |
spec.backup.abs
| Name | Type | Description | Required |
|---|---|---|---|
| absSecretName | string |
The name of the K8s secret that holds ABS credentials. The secret must contain the keys "AccountName" and "AccountKey", and these must hold the corresponding credentials |
true |
| container | string |
Azure Blob Storage container name. |
true |
| subdir | string |
Optional. Azure Blob Storage subdir under container. |
false |
spec.backup.ftp
| Name | Type | Description | Required |
|---|---|---|---|
| url | string |
a URI of the ftps://[USER[:PASSWORD]@]HOST[:PORT]/PATH[/] |
true |
spec.backup.gcs
GoogleStorage
| Name | Type | Description | Required |
|---|---|---|---|
| bucketName | string |
Google Storage bucket name. |
true |
| gcsSecretName | string |
The name of the K8s secret that holds the Google Cloud Storage credentials. The secret must contain the keys "CLIENT_ID", "PRIVATE_KEY", "PRIVATE_KEY_ID", "CLIENT_EMAIL" and these must hold the corresponding credentials. The keys should correspond to the values in the key JSON. |
true |
| subdir | string |
Optional. Google Storage subdir under bucket. |
false |
spec.backup.mount
MountPointStorage
| Name | Type | Description | Required |
|---|---|---|---|
| path | string |
Path to the local mount point. You must create the mount point on all nodes, and the redislabs:redislabs user must have read and write permissions on the local mount point. |
true |
spec.backup.s3
| Name | Type | Description | Required |
|---|---|---|---|
| awsSecretName | string |
The name of the K8s secret that holds the AWS credentials. The secret must contain the keys "AWS_ACCESS_KEY_ID" and "AWS_SECRET_ACCESS_KEY", and these must hold the corresponding credentials. |
true |
| bucketName | string |
Amazon S3 bucket name. |
true |
| subdir | string |
Optional. Amazon S3 subdir under bucket. |
false |
spec.backup.sftp
| Name | Type | Description | Required |
|---|---|---|---|
| sftpSecretName | string |
The name of the K8s secret that holds SFTP credentials. The secret must contain the "Key" key, which is the SSH private key for connecting to the sftp server. |
true |
| sftp_url | string |
SFTP url |
true |
spec.backup.swift
| Name | Type | Description | Required |
|---|---|---|---|
| auth_url | string |
Swift service authentication URL. |
true |
| container | string |
Swift object store container for storing the backup files. |
true |
| swiftSecretName | string |
The name of the K8s secret that holds Swift credentials. The secret must contain the keys "Key" and "User", and these must hold the corresponding credentials: service access key and service user name (pattern for the latter does not allow special characters &,<,>,") |
true |
| prefix | string |
Optional. Prefix (path) of backup files in the swift container. |
false |
spec.modulesList[]
Redis Enterprise module (see https://redis.io/docs/latest/develop/reference/modules/)
| Name | Type | Description | Required |
|---|---|---|---|
| name | string |
The name of the module, e.g. "search" or "ReJSON". The complete list of modules available in the cluster can be retrieved from the '.status.modules' field in the REC. |
true |
| config | string |
Module command line arguments e.g. VKEY_MAX_ENTITY_COUNT 30 30 |
false |
| version | string |
The semantic version of the module, e.g. '1.6.12'. Optional for REDB, must be set for REAADB. Note that this field is deprecated, and will be removed in future releases. |
false |
spec.redisEnterpriseCluster
Connection to the Redis Enterprise Cluster.
| Name | Type | Description | Required |
|---|---|---|---|
| name | string |
The name of the Redis Enterprise Cluster where the database should be stored. |
true |
spec.replicaSources[]
| Name | Type | Description | Required |
|---|---|---|---|
| replicaSourceName | string |
The name of the resource from which the source database URI is derived. The type of resource must match the type specified in the ReplicaSourceType field. |
true |
| replicaSourceType | string |
The type of resource from which the source database URI is derived. If set to 'SECRET', the source database URI is derived from the secret named in the ReplicaSourceName field. The secret must have a key named 'uri' that defines the URI of the source database in the form of 'redis://...'. The type of secret (kubernetes, vault, ...) is determined by the secret mechanism used by the underlying REC object. If set to 'REDB', the source database URI is derived from the RedisEnterpriseDatabase resource named in the ReplicaSourceName field. |
true |
| clientKeySecret | string |
Secret that defines the client certificate and key used by the syncer in the target database cluster. The secret must have 2 keys in its map: "cert" which is the PEM encoded certificate, and "key" which is the PEM encoded private key. |
false |
| compression | integer |
GZIP compression level (0-6) to use for replication. |
false |
| serverCertSecret | string |
Secret that defines the server certificate used by the proxy in the source database cluster. The secret must have 1 key in its map: "cert" which is the PEM encoded certificate. |
false |
| tlsSniName | string |
TLS SNI name to use for the replication link. |
false |
spec.rolesPermissions[]
Redis Enterprise Role and ACL Binding
| Name | Type | Description | Required |
|---|---|---|---|
| acl | string |
Acl Name of RolePermissionType |
true |
| role | string |
Role Name of RolePermissionType |
true |
| type | enum |
Type of Redis Enterprise Database Role Permission. Currently, only "redis-enterprise" is supported, which uses roles and ACLs defined within Redis Enterprise directly. Enum: redis-enterprise Default: redis-enterprise |
true |
spec.upgradeSpec
Specifications for DB upgrade.
| Name | Type | Description | Required |
|---|---|---|---|
| upgradeModulesToLatest | boolean |
DEPRECATED Upgrades the modules to the latest version that supports the DB version during a DB upgrade action, to upgrade the DB version view the 'redisVersion' field. Notes - All modules must be without specifying the version. in addition, This field is currently not supported for Active-Active databases. The default is true |
true |
status
RedisEnterpriseDatabaseStatus defines the observed state of RedisEnterpriseDatabase
| Name | Type | Description | Required |
|---|---|---|---|
| activeActive | object |
Connection/ association to the Active-Active database. |
false |
| backupInfo | object |
Information on the database's periodic backup |
false |
| bigstoreVersion | integer |
BigStore version for Redis on Flash databases (1 for Auto Tiering, 2 for Redis Flex). Read-only field populated from RS. |
false |
| createdTime | string |
Time when the database was created |
false |
| databaseUID | string |
Database UID provided by redis enterprise |
false |
| internalEndpoints | []object |
Endpoints listed internally by the Redis Enterprise Cluster. Can be used to correlate a ReplicaSourceStatus entry. |
false |
| lastActionStatus | string |
Status of the last action done by operator on this database |
false |
| lastActionUid | string |
UID of the last action done by operator on this database |
false |
| lastUpdated | string |
Time when the database was last updated |
false |
| observedGeneration | integer |
The generation (built in update counter of K8s) of the REDB resource that was fully acted upon, meaning that all changes were handled and sent as an API call to the Redis Enterprise Cluster (REC). This field value should equal the current generation when the resource changes were handled. Note: the lastActionStatus field tracks actions handled asynchronously by the Redis Enterprise Cluster. Format: int64 |
false |
| redisEnterpriseCluster | string |
The Redis Enterprise Cluster Object this Resource is associated with |
false |
| replicaSourceStatuses | []object |
ReplicaSource statuses |
false |
| shardStatuses | map[string]integer |
Aggregated statuses of shards |
false |
| specStatus | string |
Whether the desired specification is valid |
false |
| status | string |
The status of the database |
false |
| version | string |
Database compatibility version |
false |
status.activeActive
Connection/ association to the Active-Active database.
| Name | Type | Description | Required |
|---|---|---|---|
| name | string |
The the corresponding Active-Active database name, Redis Enterprise Active Active Database custom resource name, this Resource is associated with. In case this resource is created manually at the active active database creation this field must be filled via the user, otherwise, the operator will assign this field automatically. Note: this feature is currently unsupported. |
true |
| participatingClusterName | string |
The corresponding participating cluster name, Redis Enterprise Remote Cluster custom resource name, in the Active-Active database, In case this resource is created manually at the active active database creation this field must be filled via the user, otherwise, the operator will assign this field automatically. Note: this feature is currently unsupported. |
true |
status.backupInfo
Information on the database's periodic backup
| Name | Type | Description | Required |
|---|---|---|---|
| backupFailureReason | string |
Reason of last failed backup process |
false |
| backupHistory | integer |
Backup history retention policy (number of days, 0 is forever) |
false |
| backupInterval | integer |
Interval in seconds in which automatic backup will be initiated |
false |
| backupIntervalOffset | integer |
Offset (in seconds) from round backup interval when automatic backup will be initiated (should be less than backup_interval) |
false |
| backupProgressPercentage | integer |
Database scheduled periodic backup progress (percentage) |
false |
| backupStatus | string |
Status of scheduled periodic backup process |
false |
| lastBackupTime | string |
Time of last successful backup |
false |
status.internalEndpoints[]
| Name | Type | Description | Required |
|---|---|---|---|
| host | string |
Hostname assigned to the database |
false |
| port | integer |
Database port name |
false |
status.replicaSourceStatuses[]
| Name | Type | Description | Required |
|---|---|---|---|
| endpointHost | string |
The internal host name of the replica source database. Can be used as an identifier. See the internalEndpoints list on the REDB status. |
true |
| lag | integer |
Lag in millisec between source and destination (while synced). |
false |
| lastError | string |
Last error encountered when syncing from the source. |
false |
| lastUpdate | string |
Time when we last receive an update from the source. |
false |
| rdbSize | integer |
The source’s RDB size to be transferred during the syncing phase. |
false |
| rdbTransferred | integer |
Number of bytes transferred from the source’s RDB during the syncing phase. |
false |
| status | string |
Sync status of this source |
false |