Test Description
KubeBlocks is an open-source Kubernetes database Operator that supports rich database engines and comprehensive database maintenance operations and services. This test aims to verify whether the maintenance operations and services results of the engines supported by KubeBlocks meet expectations.
These are the engines covered by the test:
- ApeCloud Mysql
- Clickhouse
- Damengdb
- Doris
- ElasticSearch
- Etcd
- GaussDB
- Greatdb
- Greptimedb
- Hadoop
- Hive
- Influxdb
- Kafka
- Kingbase
- Loki
- Mariadb
- Milvus
- Minio
- Mogdb
- Mongodb
- Mongodb Sharding
- Mssql
- Mysql
- Mysql Proxysql
- Mysql Orchestrator
- Nacos
- Nebula
- OceanBase
- OceanBase Proxy
- OpenSearch
- Oracle
- Orchestrator
- Orioledb
- Postgresql
- Qdrant
- Rabbitmq
- Redis
- Redis Cluster
- Risingwave
- RocketMQ
- Starrocks
- TdSql
- Tdengine
- Tidb
- Vanilla Postgresql
- Vastbase
- Victoria Metrics
- Weaviate
- Yashandb
- Zookeeper
Test Method
KubeBlocks database maintenance operations have different ways to perform, most of the which can be realized by submitting a OpsRequest operation, you may refer to https://github.com/apecloud/kubeblocks/tree/main/examples for details.
Create Cluster
Working Principle:
KubeBlocks deploys database engine components using the Kubernetes Operator pattern and creates database clusters based on custom resources (such as ComponentDefinition and ComponentVersion). The controller automatically schedules and maintains the state of the database instances according to the configuration.
Practical Significance:
- Verify if the database cluster can successfully initialize and enter a normal running state.
- Ensure that the database service is accessible after startup and that the data persistence mechanism is effective.
- Provide foundational validation for subsequent operational and maintenance activities.
Test Examples
```yaml
apiVersion: apps.kubeblocks.io/v1
kind: Cluster
metadata:
name: example-mysql-cluster
namespace: demo
spec:
clusterDef: mysql
topology: semisync
terminationPolicy: Delete
componentSpecs:
- name: mysql
serviceVersion: 8.0.35
replicas: 2
resources:
limits:
cpu: '0.5'
memory: 0.5Gi
requests:
cpu: '0.5'
memory: 0.5Gi
volumeClaimTemplates:
- name: data
spec:
storageClassName: ""
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 20Gi
```
Restart Cluster
Working Principle:
The restart behavior of the database instance is controlled by modifying the state fields of the cluster resource objects. KubeBlocks supports restarting all Pods in the cluster. During a restart, each Pod will be deleted one by one and then recreated.
You can restart all pods of the cluster. When an exception occurs in a database, you can try to restart it.
Practical Significance:
- Verify whether the database restart process is safe and reliable.
- Ensure that data corruption or loss does not occur during the restart process.
Test Examples
```yaml
apiVersion: operations.kubeblocks.io/v1alpha1
kind: OpsRequest
metadata:
name: example-mysql-cluster-restart-ops
namespace: demo
spec:
clusterName: example-mysql-cluster
type: Restart
restart:
- componentName: mysql
```
Stop/Start
Working Principle:
The stop/start behavior of the database instance is controlled by modifying the state fields of the cluster resource objects. When stopping, all database Pods will be gracefully shut down.
When a cluster is stopped, the computing resources of this cluster are released, which means the pods of Kubernetes are released, but the storage resources are reserved. You can start this cluster again to restore it to the state it was in before it was stopped.
Practical Significance:
- Verify whether the database stop/start process is safe and reliable.
- Ensure that data corruption or loss does not occur during the stop/start process.
- Provide the ability to stop non-active clusters on demand to save resource consumption.
Test Examples
Stop
```yaml
apiVersion: operations.kubeblocks.io/v1alpha1
kind: OpsRequest
metadata:
name: example-mysql-cluster-stop-ops
namespace: demo
spec:
clusterName: example-mysql-cluster
type: Stop
```
Start
```yaml
apiVersion: operations.kubeblocks.io/v1alpha1
kind: OpsRequest
metadata:
name: example-mysql-cluster-start-ops
namespace: demo
spec:
clusterName: example-mysql-cluster
type: Start
```
Vertical Scaling
Working Principle:
You can vertically scale a cluster by changing resource requests and limits (CPU and Memory), and KubeBlocks coordinates with the underlying InstanceSets controller to complete vertical scaling.
- In-Place Update: The cluster does not restart, minimizing the impact of instance updates on system availability.
- Non-In-Place Update: KubeBlocks controller detects changes and triggers rolling or hot update strategies to ensure configuration changes take effect without affecting service availability.
Practical Significance:
- Verify whether the system can dynamically adjust CPU/Memory resources to respond to load changes.
- Ensure that data loss or service interruption does not occur during vertical scaling.
Test Examples
Vertical ScaleOut
```yaml
apiVersion: operations.kubeblocks.io/v1alpha1
kind: OpsRequest
metadata:
name: example-mysql-cluster-vscale-ops
namespace: demo
spec:
clusterName: example-mysql-cluster
type: VerticalScaling
verticalScaling:
- componentName: mysql
requests:
cpu: '1'
memory: 1Gi
limits:
cpu: '1'
memory: 1Gi
```
Vertical ScaleIn
```yaml
apiVersion: operations.kubeblocks.io/v1alpha1
kind: OpsRequest
metadata:
name: example-mysql-cluster-vscale-ops
namespace: demo
spec:
clusterName: example-mysql-cluster
type: VerticalScaling
verticalScaling:
- componentName: mysql
requests:
cpu: '0.5'
memory: 0.5Gi
limits:
cpu: '0.5'
memory: 0.5Gi
```
Horizontal Scaling
Working Principle:
KubeBlocks supports ScaleOut and ScaleIn operations and supports scaling both replicas and instances.
- ScaleOut: It supports scaling out the specified replicas and makes the offline instances online again.
- ScaleIn: It supports scaling in the specified replicas and offloading specified instances.
You can perform the horizontal scale by modifying the cluster in a declarative API style or creating an OpsRequest:
- With the declarative API style, users can directly modify the Cluster YAML file to specify the number of replicas for each component and instance template. If the new number of replicas is greater than the current number of Pods, it indicates a scale-out; conversely, if the new number of replicas is less than the current number of Pods, it indicates a scale-in.
- Another approach is to specify the replica count increment in the OpsRequest. The controller will calculate the desired number of replicas based on the current number of Pods in the Cluster's components and the increment value, and perform scaling accordingly.
Practical Significance:
- Verify whether the system can dynamically adjust resources to respond to load changes.
- Ensure that new nodes correctly join the cluster and share the load after expansion.
- Ensure that no data loss or service interruption occurs during contraction.
Test Examples
ScaleOut
```yaml
apiVersion: operations.kubeblocks.io/v1alpha1
kind: OpsRequest
metadata:
name: example-mysql-cluster-scale-out-ops
namespace: demo
spec:
clusterName: example-mysql-cluster
type: HorizontalScaling
horizontalScaling:
- componentName: mysql
scaleOut:
replicaChanges: 1
```
ScaleIn
```yaml
apiVersion: operations.kubeblocks.io/v1alpha1
kind: OpsRequest
metadata:
name: example-mysql-cluster-scale-in-ops
namespace: demo
spec:
clusterName: example-mysql-cluster
type: HorizontalScaling
horizontalScaling:
- componentName: mysql
scaleIn:
replicaChanges: 1
```
Volume Expansion
Working Principle:
Volume expansion is triggered by modifying the requested storage size of the PVC, and KubeBlocks ensures that the database file system and data directories expand synchronously.
Practical Significance:
- Verify the elasticity and scalability of the storage layer.
- Ensure that storage capacity can be expanded without downtime when data grows.
- Enhance the long-term availability and stability of the database cluster.
Test Examples
```yaml
apiVersion: operations.kubeblocks.io/v1alpha1
kind: OpsRequest
metadata:
name: example-mysql-expand-volume-ops
namespace: demo
spec:
clusterName: example-mysql-cluster
type: VolumeExpansion
volumeExpansion:
- componentName: mysql
volumeClaimTemplates:
- name: data
storage: 30Gi
```
Rebuild Instance
Working Principle:
Reconstruction of an abnormal database instance involves deleting the target Pod and rebuilding the database instance based on the original data.
- In-Place Rebuild: Rebuild the instance with the same pod name.
- Non-In-Place Rebuild: Create a new instance by horizontalScaling and remove the instance after the new instance is ready.
Practical Significance:
- Verify the capability of reconstructing individual database instances.
- Ensure that the rebuilt instance can quickly recover and rejoin the cluster.
- Improve the self-healing capabilities of the database system.
Test Examples
```yaml
apiVersion: operations.kubeblocks.io/v1alpha1
kind: OpsRequest
metadata:
name: example-mysql-rebuildinstance-ops
namespace: demo
spec:
type: RebuildInstance
clusterName: example-mysql-cluster
force: true
rebuildFrom:
- componentName: mysql
instances:
- name: example-mysql-cluster-mysql-0
backupName: backup-demo-example-mysql-cluster-20250528130909
inPlace: false
restoreEnv:
- name: BACKUP_FOR_STANDBY
value: "true"
```
Switchover
Working Principle:
Database switchover refers to the process of switching the role of the primary database to the standby database in a database cluster, making the standby database the new primary database instance.
Switchover operations are usually performed when the primary database fails, undergoes maintenance, or is upgraded to ensure high availability and continuity of database services.
Practical Significance:
- Verify whether the master-slave switchover process is controllable.
- Ensure that data consistency remains unaffected during the switchover.
- Support planned maintenance and load balancing scenarios.
Test Examples
```yaml
apiVersion: operations.kubeblocks.io/v1alpha1
kind: OpsRequest
metadata:
name: example-mysql-switchover-ops
namespace: demo
spec:
clusterName: example-mysql-cluster
type: Switchover
switchover:
- componentName: mysql
instanceName: example-mysql-cluster-mysql-0
```
Backup/Restore
Working Principle:
KubeBlocks provides the backup and restore function to ensure the safety and reliability of your data. The backup and restore function of KubeBlocks relies on BackupRepo and before using the full backup and restore function, you need to configure BackupRepo first.
KubeBlocks adopts physical backup which takes the physical files in a database as the backup object. You can choose one backup option based on your demands to back up the cluster data on demand or by schedule.
- On-demand backup Based on different backup options, on-demand backup can be further divided into backup tool and snapshot backup.
- Backup tool: You can use the backup tool of the corresponding data product, such as MySQL XtraBackup and PostgreSQL pg_basebackup. KubeBlocks supports configuring backup tools for different data products.
- Snapshot backup: If your data is stored in a cloud disk that supports snapshots, you can create a data backup by snapshots. Snapshot backup is usually faster than a backup tool, and thus is recommended.
- Scheduled backup: You can specify retention time, backup method, time, and other parameters to customize your backup schedule.
As for the restore function, KubeBlocks supports restoring data from the backup set.
Practical Significance:
- Verify the effectiveness of data protection mechanisms.
- Ensure that data can be quickly restored in disaster recovery scenarios.
- Meet enterprise-level SLA requirements for data security.
Test Examples
Backup
```yaml
apiVersion: dataprotection.kubeblocks.io/v1alpha1
kind: Backup
metadata:
name: example-mysql-cluster-backup
namespace: demo
spec:
backupMethod: xtrabackup
backupPolicyName: example-mysql-cluster-mysql-backup-policy
deletionPolicy: Delete
```
Restore
```yaml
apiVersion: operations.kubeblocks.io/v1alpha1
kind: OpsRequest
metadata:
name: example-mysql-cluster-restore
namespace: demo
spec:
clusterName: example-mysql-cluster-restored
force: false
restore:
backupName: example-mysql-cluster-backup
backupNamespace: demo
type: Restore
```
Parameter Configuration
Working Principle:
KubeBlocks supports dynamic configuration.
This feature simplifies the process of configuring parameters, which saves you from manually configuring database parameters as KubeBlocks handles the updates and configurations automatically to adapt to the new specifications. This saves time and effort and reduces performance issues caused by incorrect configuration.
But it's also important to note that the dynamic parameter configuration doesn't apply to all parameters. Some parameters may require manual configuration.
Additionally, if you have manually modified database parameters before, KubeBlocks may overwrite your customized configurations when updating the database configuration template. Therefore, when using the dynamic configuration feature, it is recommended to back up and record your custom configuration so that you can restore them if needed.
Practical Significance:
- Verify the ability to dynamically adjust database parameters.
- Support flexible optimization of database performance based on different business requirements.
- Improve operational efficiency and reduce the risk of human error in configuration.
Test Examples
```yaml
apiVersion: operations.kubeblocks.io/v1alpha1
kind: OpsRequest
metadata:
name: mysql-reconfigure-dynamic
namespace: demo
spec:
clusterName: example-mysql-cluster
force: false
reconfigures:
- componentName: mysql
parameters:
- key: max_connections
value: '100'
preConditionDeadlineSeconds: 0
type: Reconfiguring
```
Service Expose
Working Principle:
Control whether the database service is exposed externally by creating or deleting Service resources. Multiple methods are supported, including LoadBalancer and NodePort.
Practical Significance:
- Verify the security and immediacy of network service exposure/hiding.
- Support temporarily opening access permissions for debugging or integration testing.
- Enhance the granularity of database service access control.
Test Examples
Enable
```yaml
apiVersion: operations.kubeblocks.io/v1alpha1
kind: OpsRequest
metadata:
name: example-mysql-cluster-expose-enable-ops
namespace: demo
spec:
type: Expose
clusterName: example-mysql-cluster
expose:
- componentName: mysql
services:
- name: internet
serviceType: LoadBalancer
annotations:
service.beta.kubernetes.io/aws-load-balancer-type: nlb
service.beta.kubernetes.io/aws-load-balancer-internal: "false" # or "true" for an internal VPC IP
roleSelector: primary
switch: Enable
```
Disable
```yaml
apiVersion: operations.kubeblocks.io/v1alpha1
kind: OpsRequest
metadata:
name: example-mysql-cluster-expose-disable-ops
namespace: demo
spec:
type: Expose
clusterName: example-mysql-cluster
expose:
- componentName: mysql
services:
- name: internet
roleSelector: primary
serviceType: LoadBalancer
switch: Disable
preConditionDeadlineSeconds: 0
```
Update Cluster
Working Principle:
Update cluster configuration (e.g., Monitor toggle, TerminationPolicy, etc.), and the KubeBlocks controller will detect changes and trigger rolling or hot update strategies to ensure configuration changes take effect while maintaining service availability.
Practical Significance:
- Support dynamic adjustment of cluster parameters, enhancing operational flexibility.
- Verify service continuity and consistency during configuration updates.
- Reduce manual intervention and achieve automated configuration management.
Connect Database
Working Principle:
Use standard clients to connect to the database service to verify whether the cluster can be accessed normally.
Practical Significance:
- Verify that the database service port is reachable and the authentication mechanism is functioning correctly.
- Confirm that the cluster is in a healthy state and capable of accepting connection requests.
- Serve as a foundational verification for other operational and maintenance activities.
Benchmark
Working Principle:
Conduct baseline performance tests on the database cluster using built-in or external testing tools to evaluate metrics such as throughput and response time.
Practical Significance:
- Verify the performance of the database under typical workloads.
- Used for performance comparisons between different versions or configurations.
- Support capacity planning and performance tuning.
Test Result
After the maintenance operations, the database status is normal and the data is complete, thus the test is passed.
ApeCloud Mysql ( Topology = apecloud-mysql ; Replicas = 3 )
| Engine |
Feature |
Operation |
State |
Description |
| ApeCloud Mysql ( Topology = apecloud-mysql ; Replicas = 3 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology apecloud-mysql with the specified component definition apecloud-mysql-1.0.1 and component version apecloud-mysql and service version 8.0.30 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster Monitor enable |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component mysql |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component mysql |
| HorizontalScaling In |
- |
Not implemented or unsupported |
| HorizontalScaling Out |
- |
Not implemented or unsupported |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
PASSED |
SwitchOver the cluster specify component mysql |
| Backup Restore |
Backup |
PASSED |
The cluster Schedule xtrabackup Backup |
| Backup |
PASSED |
The cluster xtrabackup Backup |
| Backup |
PASSED |
The cluster volume-snapshot Backup |
| Restore |
PASSED |
The cluster Schedule xtrabackup Restore |
| Restore |
PASSED |
The cluster xtrabackup Restore |
| Restore |
PASSED |
The cluster volume-snapshot Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the Schedule xtrabackup restore cluster |
| Delete Restore Cluster |
PASSED |
Delete the xtrabackup restore cluster |
| Delete Restore Cluster |
PASSED |
Delete the volume-snapshot restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
PASSED |
Reconfiguring the cluster specify component mysql set log_error_verbosity=3 |
| Reconfiguring |
PASSED |
Reconfiguring the cluster specify component mysql set max_connections=1000,general_log=OFF |
| Reconfiguring |
PASSED |
Reconfiguring the cluster specify component mysql set max_connections=2000,general_log=ON,innodb_sort_buffer_size=2097152 |
| Accessibility |
Expose |
PASSED |
Expose Enable the internet service with mysql component |
| Expose |
PASSED |
Expose Disable the internet service with mysql component |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
PASSED |
Bench the cluster service with mysql component |
| Bench |
PASSED |
Bench the cluster LB service with mysql component |
| Tpch |
- |
Not implemented or unsupported |
Clickhouse ( Topology = cluster ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Clickhouse ( Topology = cluster ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology cluster with the specified component definition clickhouse-1.0.2 and component version clickhouse and service version 22.3.18 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Restart |
PASSED |
Restart the cluster specify component clickhouse |
| Restart |
PASSED |
Restart the cluster specify component ch-keeper |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component clickhouse |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component ch-keeper |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component clickhouse |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component ch-keeper |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component clickhouse |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component clickhouse |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
PASSED |
The cluster full Backup |
| Restore |
PASSED |
The cluster full Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the full restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Connect |
PASSED |
Connect to the cluster |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Clickhouse 22.8.21 ( Topology = cluster ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Clickhouse 22.8.21 ( Topology = cluster ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology cluster with the specified component definition clickhouse-1.0.2 and component version clickhouse and service version 22.8.21 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster specify component ch-keeper |
| Restart |
PASSED |
Restart the cluster |
| Restart |
PASSED |
Restart the cluster specify component clickhouse |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component ch-keeper |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component clickhouse |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component clickhouse |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component ch-keeper |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component clickhouse |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component clickhouse |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
PASSED |
The cluster full Backup |
| Restore |
PASSED |
The cluster full Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the full restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Connect |
PASSED |
Connect to the cluster |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Clickhouse 24.8.3 ( Topology = cluster ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Clickhouse 24.8.3 ( Topology = cluster ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology cluster with the specified component definition clickhouse-1.0.2 and component version clickhouse and service version 24.8.3 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster specify component ch-keeper |
| Restart |
PASSED |
Restart the cluster specify component clickhouse |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component clickhouse |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component ch-keeper |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component ch-keeper |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component clickhouse |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component clickhouse |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component clickhouse |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
PASSED |
The cluster full Backup |
| Restore |
PASSED |
The cluster full Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the full restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Connect |
PASSED |
Connect to the cluster |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Clickhouse 25.9.7 ( Topology = cluster ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Clickhouse 25.9.7 ( Topology = cluster ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology cluster with the specified component definition clickhouse-1.0.2 and component version clickhouse and service version 25.9.7 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster specify component ch-keeper |
| Restart |
PASSED |
Restart the cluster |
| Restart |
PASSED |
Restart the cluster specify component clickhouse |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component clickhouse |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component ch-keeper |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component clickhouse |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component ch-keeper |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component clickhouse |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component clickhouse |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
PASSED |
The cluster full Backup |
| Restore |
PASSED |
The cluster full Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the full restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Connect |
PASSED |
Connect to the cluster |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Damengdb ( Topology = realtime-replication ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Damengdb ( Topology = realtime-replication ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology realtime-replication with the specified component definition dmdb-repl-8.1.3-1.0.3 and component version damengdb and service version 8.1.3-26-20240821 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Restart |
PASSED |
Restart the cluster specify component dmmonitor |
| Restart |
PASSED |
Restart the cluster specify component dmdb |
| Update |
PASSED |
Update the cluster Monitor enable |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component dmdb |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component dmmonitor |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component dmdb |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component dmdb |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component dmdb |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
PASSED |
SwitchOver the cluster specify component dmmonitor |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
PASSED |
Reconfiguring the cluster specify component dmdb set BUFFER=900 |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Doris ( Topology = aggregated ; Replicas = 3 )
| Engine |
Feature |
Operation |
State |
Description |
| Doris ( Topology = aggregated ; Replicas = 3 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology aggregated with the specified component definition doris-be-1.0.2 and component version doris-be and service version 2.1.6 |
| Start |
- |
Not implemented or unsupported |
| Stop |
- |
Not implemented or unsupported |
| Restart |
PASSED |
Restart the cluster specify component fe |
| Restart |
PASSED |
Restart the cluster specify component be |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component fe |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component be |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component fe and volume log,metadata |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component be and volume data,log |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component be |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component fe |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component be |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component fe |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
PASSED |
The cluster full Backup |
| Restore |
PASSED |
The cluster full Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the full restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
ElasticSearch ( Topology = multi-node ; Replicas = 3 )
| Engine |
Feature |
Operation |
State |
Description |
| ElasticSearch ( Topology = multi-node ; Replicas = 3 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology multi-node with the specified component definition elasticsearch-8-1.0.2 and component version elasticsearch and service version 8.1.3 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Restart |
PASSED |
Restart the cluster specify component kibana |
| Restart |
PASSED |
Restart the cluster specify component data |
| Restart |
PASSED |
Restart the cluster specify component master |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component data |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component master |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component kibana |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component master |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component data |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component master |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component data |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component master |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component data |
| HscaleOfflineInstances |
PASSED |
Hscale the cluster instances offline specify component master |
| HscaleOnlineInstances |
PASSED |
Hscale the cluster instances online specify component master |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
PASSED |
The cluster full-backup Backup |
| Restore |
PASSED |
The cluster full-backup Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the full-backup restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
ElasticSearch 6.8.23 ( Topology = multi-node ; Replicas = 3 )
| Engine |
Feature |
Operation |
State |
Description |
| ElasticSearch 6.8.23 ( Topology = multi-node ; Replicas = 3 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology multi-node with the specified component definition elasticsearch-6-1.0.2 and component version elasticsearch and service version 6.8.23 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster specify component data |
| Restart |
PASSED |
Restart the cluster specify component kibana |
| Restart |
PASSED |
Restart the cluster specify component master |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component kibana |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component data |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component master |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component master |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component data |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component data |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component master |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component data |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component master |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
ElasticSearch 7.10.2 ( Topology = multi-node ; Replicas = 3 )
| Engine |
Feature |
Operation |
State |
Description |
| ElasticSearch 7.10.2 ( Topology = multi-node ; Replicas = 3 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology multi-node with the specified component definition elasticsearch-7-1.0.2 and component version elasticsearch and service version 7.10.2 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster specify component master |
| Restart |
PASSED |
Restart the cluster specify component data |
| Restart |
PASSED |
Restart the cluster |
| Restart |
PASSED |
Restart the cluster specify component kibana |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component data |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component master |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component kibana |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component data |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component master |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component master |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component data |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component master |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component data |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
ElasticSearch 8.15.5 ( Topology = multi-node ; Replicas = 3 )
| Engine |
Feature |
Operation |
State |
Description |
| ElasticSearch 8.15.5 ( Topology = multi-node ; Replicas = 3 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology multi-node with the specified component definition elasticsearch-8-1.0.2 and component version elasticsearch and service version 8.15.5 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Restart |
PASSED |
Restart the cluster specify component data |
| Restart |
PASSED |
Restart the cluster specify component master |
| Restart |
PASSED |
Restart the cluster specify component kibana |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component master |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component kibana |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component data |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component master |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component data |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component master |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component data |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component master |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component data |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
PASSED |
The cluster full-backup Backup |
| Restore |
PASSED |
The cluster full-backup Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the full-backup restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Etcd ( Topology = cluster ; Replicas = 3 )
| Engine |
Feature |
Operation |
State |
Description |
| Etcd ( Topology = cluster ; Replicas = 3 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology cluster with the specified component definition etcd-3-1.0.2 and component version etcd and service version 3.5.6 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component etcd |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component etcd |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component etcd |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component etcd |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
PASSED |
SwitchOver the cluster specify component etcd |
| Backup Restore |
Backup |
PASSED |
The cluster datafile Backup |
| Restore |
PASSED |
The cluster datafile Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the datafile restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Etcd 3.5.15 ( Topology = cluster ; Replicas = 3 )
| Engine |
Feature |
Operation |
State |
Description |
| Etcd 3.5.15 ( Topology = cluster ; Replicas = 3 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology cluster with the specified component definition etcd-3-1.0.2 and component version etcd and service version 3.5.15 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component etcd |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component etcd |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component etcd |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component etcd |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
PASSED |
SwitchOver the cluster specify component etcd |
| Backup Restore |
Backup |
PASSED |
The cluster datafile Backup |
| Restore |
PASSED |
The cluster datafile Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the datafile restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Etcd 3.6.1 ( Topology = cluster ; Replicas = 3 )
| Engine |
Feature |
Operation |
State |
Description |
| Etcd 3.6.1 ( Topology = cluster ; Replicas = 3 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology cluster with the specified component definition etcd-3-1.0.2 and component version etcd and service version 3.6.1 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component etcd |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component etcd |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component etcd |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component etcd |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
PASSED |
SwitchOver the cluster specify component etcd |
| Backup Restore |
Backup |
PASSED |
The cluster datafile Backup |
| Restore |
PASSED |
The cluster datafile Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the datafile restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
GaussDB ( Topology = replication ; Replicas = 3 )
| Engine |
Feature |
Operation |
State |
Description |
| GaussDB ( Topology = replication ; Replicas = 3 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology replication with the specified component definition gaussdb-repl-1.0.1 and component version gaussdb and service version 2.23.1 |
| Start |
- |
Not implemented or unsupported |
| Stop |
- |
Not implemented or unsupported |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster Monitor enable |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component gaussdb |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component gaussdb |
| HorizontalScaling In |
- |
Not implemented or unsupported |
| HorizontalScaling Out |
- |
Not implemented or unsupported |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
PASSED |
SwitchOver the cluster specify component gaussdb |
| Backup Restore |
Backup |
PASSED |
The cluster gaussdb-roach Backup |
| Restore |
PASSED |
The cluster gaussdb-roach Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the gaussdb-roach restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
PASSED |
Reconfiguring the cluster specify component gaussdb set alarm_report_interval=20 |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Greatdb ( Topology = cluster ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Greatdb ( Topology = cluster ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology cluster with the specified component definition greatdb-8.0-1.0.0 and component version greatdb and service version 1.0.0 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster Monitor enable |
| Update |
PASSED |
Update the cluster Logs enable |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component greatdb |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component greatdb |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component greatdb |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component greatdb |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
PASSED |
Rebuild the cluster instance specify component greatdb |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
PASSED |
SwitchOver the cluster specify component greatdb |
| Backup Restore |
Backup |
PASSED |
The cluster xtrabackup Backup |
| Backup |
PASSED |
The cluster volume-snapshot Backup |
| Restore |
PASSED |
The cluster xtrabackup Restore |
| Restore |
PASSED |
The cluster volume-snapshot Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the xtrabackup restore cluster |
| Delete Restore Cluster |
PASSED |
Delete the volume-snapshot restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
PASSED |
Reconfiguring the cluster specify component greatdb set binlog_expire_logs_seconds=691200 |
| Accessibility |
Expose |
PASSED |
Expose Enable the intranet service with greatdb component |
| Expose |
PASSED |
Expose Disable the intranet service with greatdb component |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
PASSED |
Bench the cluster service with greatdb component |
| Bench |
PASSED |
Bench the cluster LB service with greatdb component |
| Tpch |
- |
Not implemented or unsupported |
Greptimedb ( Topology = default ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Greptimedb ( Topology = default ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology default with the specified component definition greptimedb-datanode-1.0.1 and component version greptimedb and service version 0.3.2 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster specify component meta |
| Restart |
PASSED |
Restart the cluster |
| Restart |
PASSED |
Restart the cluster specify component datanode |
| Restart |
PASSED |
Restart the cluster specify component frontend,etcd |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component frontend,etcd |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component datanode |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component meta |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component etcd |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component datanode and volume datanode |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component frontend |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component datanode |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component frontend |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component datanode |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Hadoop ( Topology = ha-cluster ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Hadoop ( Topology = ha-cluster ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology ha-cluster with the specified component definition hadoop-hdfs-datanode-1.0.2 and component version hadoop and service version 3.3.1 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster specify component namenode,datanode |
| Restart |
PASSED |
Restart the cluster specify component resourcemanager,nodemanager |
| Restart |
SKIPPED |
Restart the cluster specify component zookeeper,journalnod |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
SKIPPED |
VerticalScaling the cluster specify component namenode,datanode,journalnod |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component resourcemanager,nodemanager |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component namenode and volume metadata-dir |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component resourcemanager and volume resourcemanager |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component nodemanager and volume nodemanager |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component journalnode and volume data |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component datanode and volume data |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component nodemanager |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component resourcemanager |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component journalnode |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component namenode |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component nodemanager |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component datanode |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component resourcemanager |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component journalnode |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component namenode |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
PASSED |
The cluster full-journalnode Backup |
| Backup |
PASSED |
The cluster full-namenode Backup |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
- |
Not implemented or unsupported |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Hive 3.1.3 ( Topology = hive-cluster ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Hive 3.1.3 ( Topology = hive-cluster ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology hive-cluster with the specified component definition hive-metastore-1.0.2 and component version hive and service version 3.1.3 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Restart |
PASSED |
Restart the cluster specify component server2 |
| Restart |
PASSED |
Restart the cluster specify component mysql |
| Restart |
PASSED |
Restart the cluster specify component metastore |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component mysql |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component metastore |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component server2 |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component metastore and volume metadata |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component server2 |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component metastore |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component server2 |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component metastore |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
- |
Not implemented or unsupported |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Hive 4.0.1 ( Topology = hive-cluster ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Hive 4.0.1 ( Topology = hive-cluster ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology hive-cluster with the specified component definition hive-metastore-1.0.2 and component version hive and service version 4.0.1 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster specify component mysql |
| Restart |
PASSED |
Restart the cluster specify component metastore |
| Restart |
PASSED |
Restart the cluster specify component server2 |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component mysql |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component server2 |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component metastore |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component metastore and volume metadata |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component server2 |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component metastore |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component server2 |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component metastore |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
- |
Not implemented or unsupported |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Influxdb ( Topology = )
| Engine |
Feature |
Operation |
State |
Description |
| Influxdb ( Topology = ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified component definition influxdb-1.0.2 and component version influxdb and service version 2.7.11 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component influxdb |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component influxdb |
| HorizontalScaling In |
- |
Not implemented or unsupported |
| HorizontalScaling Out |
- |
Not implemented or unsupported |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Kafka ( Topology = combined_monitor ; Replicas = 1 )
| Engine |
Feature |
Operation |
State |
Description |
| Kafka ( Topology = combined_monitor ; Replicas = 1 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology combined_monitor with the specified component definition kafka27-broker-1.0.2 and component version kafka-broker and service version 3.3.2 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster Monitor enable |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component kafka-combine |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component kafka-combine |
| HorizontalScaling In |
- |
Not implemented or unsupported |
| HorizontalScaling Out |
- |
Not implemented or unsupported |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
PASSED |
Rebuild the cluster instance specify component kafka-combine |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
PASSED |
The cluster topics Backup |
| Restore |
PASSED |
The cluster topics Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the topics restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Kafka 3.9.0 ( Topology = combined_monitor ; Replicas = 1 )
| Engine |
Feature |
Operation |
State |
Description |
| Kafka 3.9.0 ( Topology = combined_monitor ; Replicas = 1 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology combined_monitor with the specified component definition kafka27-broker-1.0.2 and component version kafka-broker and service version 3.9.0 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster Monitor enable |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component kafka-combine |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component kafka-combine |
| HorizontalScaling In |
- |
Not implemented or unsupported |
| HorizontalScaling Out |
- |
Not implemented or unsupported |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
PASSED |
Rebuild the cluster instance specify component kafka-combine |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
PASSED |
The cluster topics Backup |
| Restore |
PASSED |
The cluster topics Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the topics restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Kafka Separated ( Topology = separated_monitor ; Replicas = 1 )
| Engine |
Feature |
Operation |
State |
Description |
| Kafka Separated ( Topology = separated_monitor ; Replicas = 1 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology separated_monitor with the specified component definition kafka27-broker-1.0.2 and component version kafka-broker and service version 3.9.0 |
| Start |
- |
Not implemented or unsupported |
| Stop |
- |
Not implemented or unsupported |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster Monitor enable |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component kafka-broker |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component kafka-broker |
| HorizontalScaling In |
- |
Not implemented or unsupported |
| HorizontalScaling Out |
- |
Not implemented or unsupported |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
PASSED |
Rebuild the cluster instance specify component kafka-broker |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the topics restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
- |
Not implemented or unsupported |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Kingbase ( Topology = kingbase-cluster ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Kingbase ( Topology = kingbase-cluster ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology kingbase-cluster with the specified component definition kingbase-v9-1.0.3 and component version kingbase-cluster and service version 8.6.8 |
| Start |
- |
Not implemented or unsupported |
| Stop |
- |
Not implemented or unsupported |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Update |
PASSED |
Update the cluster Monitor enable |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component kingbase |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component kingbase |
| HorizontalScaling In |
- |
Not implemented or unsupported |
| HorizontalScaling Out |
- |
Not implemented or unsupported |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
PASSED |
SwitchOver the cluster specify component kingbase |
| Backup Restore |
Backup |
PASSED |
The cluster full Backup |
| Restore |
PASSED |
The cluster full Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the full restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
PASSED |
Reconfiguring the cluster specify component kingbase set shared_buffers=1GB |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Kingbase 8.6.8 ( Topology = kingbase-cluster ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Kingbase 8.6.8 ( Topology = kingbase-cluster ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology kingbase-cluster with the specified component definition kingbase-v9-1.0.3 and component version kingbase-cluster and service version 8.6.8 |
| Start |
- |
Not implemented or unsupported |
| Stop |
- |
Not implemented or unsupported |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Update |
PASSED |
Update the cluster Monitor enable |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component kingbase |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component kingbase |
| HorizontalScaling In |
- |
Not implemented or unsupported |
| HorizontalScaling Out |
- |
Not implemented or unsupported |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
PASSED |
SwitchOver the cluster specify component kingbase |
| Backup Restore |
Backup |
PASSED |
The cluster full Backup |
| Restore |
PASSED |
The cluster full Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the full restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
PASSED |
Reconfiguring the cluster specify component kingbase set shared_buffers=1GB |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Kingbase 9.3.11 ( Topology = kingbase-cluster ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Kingbase 9.3.11 ( Topology = kingbase-cluster ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology kingbase-cluster with the specified component definition kingbase-v9-1.0.3 and component version kingbase-cluster and service version 9.3.11 |
| Start |
- |
Not implemented or unsupported |
| Stop |
- |
Not implemented or unsupported |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Update |
PASSED |
Update the cluster Monitor enable |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component kingbase |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component kingbase |
| HorizontalScaling In |
- |
Not implemented or unsupported |
| HorizontalScaling Out |
- |
Not implemented or unsupported |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
PASSED |
SwitchOver the cluster specify component kingbase |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
PASSED |
Reconfiguring the cluster specify component kingbase set shared_buffers=1GB |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Loki ( Topology = loki-cluster ; Replicas = 1 )
| Engine |
Feature |
Operation |
State |
Description |
| Loki ( Topology = loki-cluster ; Replicas = 1 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology loki-cluster with the specified component definition loki-write-1.0.2 and component version loki and service version 1.0.0 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster specify component write,read |
| Restart |
PASSED |
Restart the cluster |
| Restart |
PASSED |
Restart the cluster specify component backend |
| Restart |
PASSED |
Restart the cluster specify component gateway |
| Update |
PASSED |
Update the cluster Monitor enable |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component backend |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component write,read,gateway |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component backend |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component write,read,gateway |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component backend |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component write,read,gateway |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component backend |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
- |
Not implemented or unsupported |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Mariadb ( Topology = )
| Engine |
Feature |
Operation |
State |
Description |
| Mariadb ( Topology = ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified component definition mariadb-1.0.1 and component version mariadb and service version 10.6.15 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component mariadb |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component mariadb |
| HorizontalScaling In |
- |
Not implemented or unsupported |
| HorizontalScaling Out |
- |
Not implemented or unsupported |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Milvus ( Topology = cluster ; Replicas = 1 )
| Engine |
Feature |
Operation |
State |
Description |
| Milvus ( Topology = cluster ; Replicas = 1 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology cluster with the specified component definition milvus-standalone-1.0.2-beta.0 and component version milvus and service version 2.5.13 |
| Create |
PASSED |
Create a cluster with the specified topology standalone with the specified component definition milvus-standalone-1.0.2-beta.0 and component version milvus and service version 2.5.13 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster specify component querynode |
| Restart |
PASSED |
Restart the cluster |
| Restart |
PASSED |
Restart the cluster specify component milvus |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component indexnode |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component querynode |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component datanode,mixcoord,proxy |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component milvus |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component etcd |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component minio |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component etcd |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component milvus |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component minio |
| HorizontalScaling In |
- |
Not implemented or unsupported |
| HorizontalScaling Out |
- |
Not implemented or unsupported |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
PASSED |
The cluster full Backup |
| Backup |
PASSED |
The cluster volume-snapshot Backup |
| Restore |
PASSED |
The cluster full Restore |
| Restore |
PASSED |
The cluster volume-snapshot Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the full restore cluster |
| Delete Restore Cluster |
PASSED |
Delete the volume-snapshot restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
- |
Not implemented or unsupported |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Milvus v2.3.2 ( Topology = cluster ; Replicas = 1 )
| Engine |
Feature |
Operation |
State |
Description |
| Milvus v2.3.2 ( Topology = cluster ; Replicas = 1 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology cluster with the specified component definition milvus-standalone-1.0.2-beta.0 and component version milvus and service version v2.3.2 |
| Create |
PASSED |
Create a cluster with the specified topology standalone with the specified component definition milvus-standalone-1.0.2-beta.0 and component version milvus and service version v2.3.2 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Restart |
PASSED |
Restart the cluster specify component querynode |
| Restart |
PASSED |
Restart the cluster specify component milvus |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component datanode,mixcoord,proxy |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component indexnode |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component querynode |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component minio |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component milvus |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component etcd |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component minio |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component milvus |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component etcd |
| HorizontalScaling In |
- |
Not implemented or unsupported |
| HorizontalScaling Out |
- |
Not implemented or unsupported |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
PASSED |
The cluster full Backup |
| Restore |
PASSED |
The cluster full Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the full restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
- |
Not implemented or unsupported |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Milvus 2.5.13 ( Topology = cluster ; Replicas = 1 )
| Engine |
Feature |
Operation |
State |
Description |
| Milvus 2.5.13 ( Topology = cluster ; Replicas = 1 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology cluster with the specified component definition milvus-standalone-1.0.2-beta.0 and component version milvus and service version 2.5.13 |
| Create |
PASSED |
Create a cluster with the specified topology standalone with the specified component definition milvus-standalone-1.0.2-beta.0 and component version milvus and service version 2.5.13 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Restart |
PASSED |
Restart the cluster specify component querynode |
| Restart |
PASSED |
Restart the cluster specify component milvus |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component querynode |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component indexnode |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component datanode,mixcoord,proxy |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component milvus |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component etcd |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component minio |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component milvus |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component minio |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component etcd |
| HorizontalScaling In |
- |
Not implemented or unsupported |
| HorizontalScaling Out |
- |
Not implemented or unsupported |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
PASSED |
The cluster full Backup |
| Restore |
PASSED |
The cluster full Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the full restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
- |
Not implemented or unsupported |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Minio ( Topology = distributed ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Minio ( Topology = distributed ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology distributed with the specified component definition minio-1.0.2 and component version minio and service version 2024.6.29 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
- |
Not implemented or unsupported |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component minio |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component minio |
| HorizontalScaling In |
- |
Not implemented or unsupported |
| HorizontalScaling Out |
- |
Not implemented or unsupported |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
- |
Not implemented or unsupported |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
PASSED |
Bench the cluster service with minio component |
| Tpch |
- |
Not implemented or unsupported |
Minio 2024.6.29 ( Topology = distributed ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Minio 2024.6.29 ( Topology = distributed ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology distributed with the specified component definition minio-1.0.2 and component version minio and service version 2024.6.29 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
- |
Not implemented or unsupported |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component minio |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component minio |
| HorizontalScaling In |
- |
Not implemented or unsupported |
| HorizontalScaling Out |
- |
Not implemented or unsupported |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
- |
Not implemented or unsupported |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
PASSED |
Bench the cluster service with minio component |
| Tpch |
- |
Not implemented or unsupported |
Minio 2025.10.15 ( Topology = distributed ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Minio 2025.10.15 ( Topology = distributed ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology distributed with the specified component definition minio-1.0.2 and component version minio and service version 2025.10.15 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
- |
Not implemented or unsupported |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component minio |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component minio |
| HorizontalScaling In |
- |
Not implemented or unsupported |
| HorizontalScaling Out |
- |
Not implemented or unsupported |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
- |
Not implemented or unsupported |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
PASSED |
Bench the cluster service with minio component |
| Tpch |
- |
Not implemented or unsupported |
Mogdb ( Topology = )
| Engine |
Feature |
Operation |
State |
Description |
| Mogdb ( Topology = ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified component definition mogdb-1.0.1 and component version mogdb and service version 5.0.5 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component mogdb |
| VolumeExpansion |
- |
Not implemented or unsupported |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component mogdb |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component mogdb |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
PASSED |
The cluster volume-snapshot Backup |
| Restore |
PASSED |
The cluster volume-snapshot Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the volume-snapshot restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
PASSED |
Expose Enable the internet service with mogdb component |
| Expose |
PASSED |
Expose Disable the internet service with mogdb component |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Mongodb ( Topology = replicaset ; Replicas = 3 )
| Engine |
Feature |
Operation |
State |
Description |
| Mongodb ( Topology = replicaset ; Replicas = 3 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology replicaset with the specified component definition mongodb-1.0.2 and component version mongodb and service version 4.4.29 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster Monitor enable |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component mongodb |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component mongodb |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component mongodb |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component mongodb |
| HscaleOfflineInstances |
PASSED |
Hscale the cluster instances offline specify component mongodb |
| HscaleOnlineInstances |
PASSED |
Hscale the cluster instances online specify component mongodb |
| RebuildInstance |
PASSED |
Rebuild the cluster instance specify component mongodb |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
PASSED |
SwitchOver the cluster specify component mongodb |
| Backup Restore |
Backup |
PASSED |
The cluster pbm-physical Backup |
| Backup |
PASSED |
The cluster datafile Backup |
| Backup |
PASSED |
The cluster volume-snapshot Backup |
| Backup |
PASSED |
The cluster dump Backup |
| Backup |
PASSED |
The cluster Schedule pbm-physical Backup |
| Restore |
PASSED |
The cluster pbm-physical Restore |
| Restore |
PASSED |
The cluster datafile Restore |
| Restore |
PASSED |
The cluster volume-snapshot Restore |
| Restore |
PASSED |
The cluster dump Restore |
| Restore |
PASSED |
The cluster Schedule pbm-physical Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the pbm-physical restore cluster |
| Delete Restore Cluster |
PASSED |
Delete the datafile restore cluster |
| Delete Restore Cluster |
PASSED |
Delete the volume-snapshot restore cluster |
| Delete Restore Cluster |
PASSED |
Delete the dump restore cluster |
| Delete Restore Cluster |
PASSED |
Delete the Schedule pbm-physical restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Mongodb 4.4.29 ( Topology = replicaset ; Replicas = 3 )
| Engine |
Feature |
Operation |
State |
Description |
| Mongodb 4.4.29 ( Topology = replicaset ; Replicas = 3 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology replicaset with the specified component definition mongodb-1.0.2 and component version mongodb and service version 4.4.29 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster Monitor enable |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component mongodb |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component mongodb |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component mongodb |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component mongodb |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
PASSED |
Rebuild the cluster instance specify component mongodb |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
PASSED |
SwitchOver the cluster specify component mongodb |
| Backup Restore |
Backup |
PASSED |
The cluster pbm-physical Backup |
| Backup |
PASSED |
The cluster dump Backup |
| Backup |
PASSED |
The cluster datafile Backup |
| Restore |
PASSED |
The cluster pbm-physical Restore |
| Restore |
PASSED |
The cluster dump Restore |
| Restore |
PASSED |
The cluster datafile Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the pbm-physical restore cluster |
| Delete Restore Cluster |
PASSED |
Delete the dump restore cluster |
| Delete Restore Cluster |
PASSED |
Delete the datafile restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Mongodb 5.0.29 ( Topology = replicaset ; Replicas = 3 )
| Engine |
Feature |
Operation |
State |
Description |
| Mongodb 5.0.29 ( Topology = replicaset ; Replicas = 3 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology replicaset with the specified component definition mongodb-1.0.2 and component version mongodb and service version 5.0.29 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster Monitor enable |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component mongodb |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component mongodb |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component mongodb |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component mongodb |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
PASSED |
Rebuild the cluster instance specify component mongodb |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
PASSED |
SwitchOver the cluster specify component mongodb |
| Backup Restore |
Backup |
PASSED |
The cluster datafile Backup |
| Backup |
PASSED |
The cluster dump Backup |
| Backup |
PASSED |
The cluster pbm-physical Backup |
| Restore |
PASSED |
The cluster datafile Restore |
| Restore |
PASSED |
The cluster dump Restore |
| Restore |
PASSED |
The cluster pbm-physical Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the datafile restore cluster |
| Delete Restore Cluster |
PASSED |
Delete the dump restore cluster |
| Delete Restore Cluster |
PASSED |
Delete the pbm-physical restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Mongodb 6.0.27 ( Topology = replicaset ; Replicas = 3 )
| Engine |
Feature |
Operation |
State |
Description |
| Mongodb 6.0.27 ( Topology = replicaset ; Replicas = 3 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology replicaset with the specified component definition mongodb-1.0.2 and component version mongodb and service version 6.0.27 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster Monitor enable |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component mongodb |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component mongodb |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component mongodb |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component mongodb |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
PASSED |
Rebuild the cluster instance specify component mongodb |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
PASSED |
SwitchOver the cluster specify component mongodb |
| Backup Restore |
Backup |
PASSED |
The cluster pbm-physical Backup |
| Backup |
PASSED |
The cluster dump Backup |
| Backup |
PASSED |
The cluster datafile Backup |
| Restore |
PASSED |
The cluster pbm-physical Restore |
| Restore |
PASSED |
The cluster dump Restore |
| Restore |
PASSED |
The cluster datafile Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the pbm-physical restore cluster |
| Delete Restore Cluster |
PASSED |
Delete the dump restore cluster |
| Delete Restore Cluster |
PASSED |
Delete the datafile restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Mongodb 7.0.28 ( Topology = replicaset ; Replicas = 3 )
| Engine |
Feature |
Operation |
State |
Description |
| Mongodb 7.0.28 ( Topology = replicaset ; Replicas = 3 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology replicaset with the specified component definition mongodb-1.0.2 and component version mongodb and service version 7.0.28 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster Monitor enable |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component mongodb |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component mongodb |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component mongodb |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component mongodb |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
PASSED |
Rebuild the cluster instance specify component mongodb |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
PASSED |
SwitchOver the cluster specify component mongodb |
| Backup Restore |
Backup |
PASSED |
The cluster pbm-physical Backup |
| Backup |
PASSED |
The cluster datafile Backup |
| Backup |
PASSED |
The cluster dump Backup |
| Restore |
PASSED |
The cluster pbm-physical Restore |
| Restore |
PASSED |
The cluster datafile Restore |
| Restore |
PASSED |
The cluster dump Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the pbm-physical restore cluster |
| Delete Restore Cluster |
PASSED |
Delete the datafile restore cluster |
| Delete Restore Cluster |
PASSED |
Delete the dump restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Mongodb 8.0.17 ( Topology = replicaset ; Replicas = 3 )
| Engine |
Feature |
Operation |
State |
Description |
| Mongodb 8.0.17 ( Topology = replicaset ; Replicas = 3 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology replicaset with the specified component definition mongodb-1.0.2 and component version mongodb and service version 8.0.17 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster Monitor enable |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component mongodb |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component mongodb |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component mongodb |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component mongodb |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
PASSED |
Rebuild the cluster instance specify component mongodb |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
PASSED |
SwitchOver the cluster specify component mongodb |
| Backup Restore |
Backup |
PASSED |
The cluster datafile Backup |
| Backup |
PASSED |
The cluster dump Backup |
| Backup |
PASSED |
The cluster pbm-physical Backup |
| Restore |
PASSED |
The cluster datafile Restore |
| Restore |
PASSED |
The cluster dump Restore |
| Restore |
PASSED |
The cluster pbm-physical Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the datafile restore cluster |
| Delete Restore Cluster |
PASSED |
Delete the dump restore cluster |
| Delete Restore Cluster |
PASSED |
Delete the pbm-physical restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Mongodb Sharding ( Topology = sharding ; Replicas = 3 )
| Engine |
Feature |
Operation |
State |
Description |
| Mongodb Sharding ( Topology = sharding ; Replicas = 3 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology sharding with the specified component definition mongo-shard-1.0.2 and component version mongodb-shard and service version 4.4.29 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster specify component config-server |
| Restart |
PASSED |
Restart the cluster specify component shard-4wg |
| Restart |
PASSED |
Restart the cluster |
| Restart |
PASSED |
Restart the cluster specify component mongos |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component shard-t5x |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component mongos |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component config-server |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component config-server |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component mongos |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component shard-4wg |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component config-server |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component shard-4wg |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component mongos |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component config-server |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
- |
Not implemented or unsupported |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Mongodb Sharding 4.4.29 ( Topology = sharding ; Replicas = 3 )
| Engine |
Feature |
Operation |
State |
Description |
| Mongodb Sharding 4.4.29 ( Topology = sharding ; Replicas = 3 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology sharding with the specified component definition mongo-shard-1.0.2 and component version mongodb-shard and service version 4.4.29 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster specify component config-server |
| Restart |
PASSED |
Restart the cluster specify component mongos |
| Restart |
PASSED |
Restart the cluster specify component shard-fdd |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component shard-fdd |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component mongos |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component config-server |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component config-server |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component config-server |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component mongos |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component shard-fdd |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component config-server |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component mongos |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component shard-fdd |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component shard-xs4 |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
- |
Not implemented or unsupported |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Mongodb Sharding 5.0.29 ( Topology = sharding ; Replicas = 3 )
| Engine |
Feature |
Operation |
State |
Description |
| Mongodb Sharding 5.0.29 ( Topology = sharding ; Replicas = 3 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology sharding with the specified component definition mongo-shard-1.0.2 and component version mongodb-shard and service version 5.0.29 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster specify component mongos |
| Restart |
PASSED |
Restart the cluster specify component shard-mbp |
| Restart |
PASSED |
Restart the cluster |
| Restart |
PASSED |
Restart the cluster specify component config-server |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component shard-mbp |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component mongos |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component config-server |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component config-server |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component shard-mbp |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component config-server |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component mongos |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component shard-mbp |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component config-server |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component shard-8xd |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component mongos |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
- |
Not implemented or unsupported |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Mongodb Sharding 6.0.27 ( Topology = sharding ; Replicas = 3 )
| Engine |
Feature |
Operation |
State |
Description |
| Mongodb Sharding 6.0.27 ( Topology = sharding ; Replicas = 3 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology sharding with the specified component definition mongo-shard-1.0.2 and component version mongodb-shard and service version 6.0.27 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster specify component shard-nl5 |
| Restart |
PASSED |
Restart the cluster |
| Restart |
PASSED |
Restart the cluster specify component mongos |
| Restart |
PASSED |
Restart the cluster specify component config-server |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component shard-nl5 |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component config-server |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component mongos |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component shard-nl5 |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component config-server |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component mongos |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component shard-p7d |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component config-server |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component mongos |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component shard-p7d |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component shard-nl5 |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component config-server |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
- |
Not implemented or unsupported |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Mongodb Sharding 7.0.28 ( Topology = sharding ; Replicas = 3 )
| Engine |
Feature |
Operation |
State |
Description |
| Mongodb Sharding 7.0.28 ( Topology = sharding ; Replicas = 3 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology sharding with the specified component definition mongo-shard-1.0.2 and component version mongodb-shard and service version 7.0.28 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Restart |
PASSED |
Restart the cluster specify component mongos |
| Restart |
PASSED |
Restart the cluster specify component config-server |
| Restart |
PASSED |
Restart the cluster specify component shard-676 |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component config-server |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component shard-676 |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component mongos |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component shard-676 |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component config-server |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component shard-676 |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component config-server |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component mongos |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component shard-676 |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component config-server |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component mongos |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
- |
Not implemented or unsupported |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Mongodb Sharding 8.0.17 ( Topology = sharding ; Replicas = 3 )
| Engine |
Feature |
Operation |
State |
Description |
| Mongodb Sharding 8.0.17 ( Topology = sharding ; Replicas = 3 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology sharding with the specified component definition mongo-shard-1.0.2 and component version mongodb-shard and service version 8.0.17 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster specify component mongos |
| Restart |
PASSED |
Restart the cluster specify component config-server |
| Restart |
PASSED |
Restart the cluster |
| Restart |
PASSED |
Restart the cluster specify component shard-b26 |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component shard-b26 |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component mongos |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component config-server |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component shard-b26 |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component config-server |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component mongos |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component shard-b26 |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component config-server |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component shard-b26 |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component mongos |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component config-server |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
- |
Not implemented or unsupported |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Mssql ( Topology = cluster ; Replicas = 3 )
| Engine |
Feature |
Operation |
State |
Description |
| Mssql ( Topology = cluster ; Replicas = 3 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology cluster with the specified component definition mssql-2022-1.0.2 and component version mssql and service version 2022.14.0 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster Monitor enable |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component mssql |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component mssql |
| HorizontalScaling In |
- |
Not implemented or unsupported |
| HorizontalScaling Out |
- |
Not implemented or unsupported |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
PASSED |
SwitchOver the cluster specify component mssql |
| Backup Restore |
Backup |
PASSED |
The cluster full Backup |
| Restore |
PASSED |
The cluster full Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the full restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Mysql ( Topology = semisync ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Mysql ( Topology = semisync ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology semisync with the specified component definition mysql-8.0-1.0.2 and component version mysql and service version 8.0.33 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster Monitor enable |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component mysql |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component mysql |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component mysql |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component mysql |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
PASSED |
Rebuild the cluster instance specify component mysql |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
PASSED |
SwitchOver the cluster specify component mysql |
| Backup Restore |
Backup |
PASSED |
The cluster Schedule xtrabackup Backup |
| Backup |
PASSED |
The cluster xtrabackup Backup |
| Backup |
PASSED |
The cluster xtrabackup-inc Backup |
| Restore |
PASSED |
The cluster Schedule xtrabackup Restore |
| Restore |
PASSED |
The cluster xtrabackup Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the Schedule xtrabackup restore cluster |
| Delete Restore Cluster |
PASSED |
Delete the xtrabackup restore cluster |
| Restore Increment |
PASSED |
The cluster xtrabackup Restore Increment |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
PASSED |
Reconfiguring the cluster specify component mysql set binlog_expire_logs_seconds=691200 |
| Accessibility |
Expose |
PASSED |
Expose Enable the internet service with mysql component |
| Expose |
PASSED |
Expose Disable the internet service with mysql component |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
PASSED |
Bench the cluster service with mysql component |
| Bench |
PASSED |
Bench the cluster LB service with mysql component |
| Tpch |
- |
Not implemented or unsupported |
Mysql 5.7.44 ( Topology = semisync ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Mysql 5.7.44 ( Topology = semisync ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology semisync with the specified component definition mysql-5.7-1.0.2 and component version mysql and service version 5.7.44 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster Monitor enable |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component mysql |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component mysql |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component mysql |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component mysql |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
PASSED |
Rebuild the cluster instance specify component mysql |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
PASSED |
SwitchOver the cluster specify component mysql |
| Backup Restore |
Backup |
PASSED |
The cluster xtrabackup Backup |
| Backup |
PASSED |
The cluster xtrabackup-inc Backup |
| Restore |
PASSED |
The cluster xtrabackup Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the xtrabackup restore cluster |
| Restore Increment |
PASSED |
The cluster xtrabackup Restore Increment |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
PASSED |
Reconfiguring the cluster specify component mysql set expire_logs_days=8 |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
PASSED |
Bench the cluster service with mysql component |
| Tpch |
- |
Not implemented or unsupported |
Mysql 8.0.44 ( Topology = semisync ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Mysql 8.0.44 ( Topology = semisync ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology semisync with the specified component definition mysql-8.0-1.0.2 and component version mysql and service version 8.0.44 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster Monitor enable |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component mysql |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component mysql |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component mysql |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component mysql |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
PASSED |
Rebuild the cluster instance specify component mysql |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
PASSED |
SwitchOver the cluster specify component mysql |
| Backup Restore |
Backup |
PASSED |
The cluster xtrabackup Backup |
| Backup |
PASSED |
The cluster xtrabackup-inc Backup |
| Restore |
PASSED |
The cluster xtrabackup Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the xtrabackup restore cluster |
| Restore Increment |
PASSED |
The cluster xtrabackup Restore Increment |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
PASSED |
Reconfiguring the cluster specify component mysql set binlog_expire_logs_seconds=691200 |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
PASSED |
Bench the cluster service with mysql component |
| Tpch |
- |
Not implemented or unsupported |
Mysql 8.4.7 ( Topology = semisync ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Mysql 8.4.7 ( Topology = semisync ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology semisync with the specified component definition mysql-8.4-1.0.2 and component version mysql and service version 8.4.7 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster Monitor enable |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component mysql |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component mysql |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component mysql |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component mysql |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
PASSED |
Rebuild the cluster instance specify component mysql |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
PASSED |
SwitchOver the cluster specify component mysql |
| Backup Restore |
Backup |
PASSED |
The cluster xtrabackup Backup |
| Backup |
PASSED |
The cluster xtrabackup-inc Backup |
| Restore |
PASSED |
The cluster xtrabackup Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the xtrabackup restore cluster |
| Restore Increment |
PASSED |
The cluster xtrabackup Restore Increment |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
PASSED |
Reconfiguring the cluster specify component mysql set binlog_expire_logs_seconds=691200 |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
PASSED |
Bench the cluster service with mysql component |
| Tpch |
- |
Not implemented or unsupported |
Mysql Proxysql ( Topology = semisync-proxysql ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Mysql Proxysql ( Topology = semisync-proxysql ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology semisync-proxysql with the specified component definition mysql-8.0-1.0.2 and component version mysql and service version 8.0.33 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster Monitor enable |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component mysql |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component mysql |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component mysql |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component mysql |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
PASSED |
Rebuild the cluster instance specify component mysql |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
PASSED |
SwitchOver the cluster specify component mysql |
| Backup Restore |
Backup |
PASSED |
The cluster xtrabackup Backup |
| Backup |
PASSED |
The cluster Schedule xtrabackup Backup |
| Backup |
PASSED |
The cluster xtrabackup-inc Backup |
| Restore |
PASSED |
The cluster xtrabackup Restore |
| Restore |
PASSED |
The cluster Schedule xtrabackup Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the xtrabackup restore cluster |
| Delete Restore Cluster |
PASSED |
Delete the Schedule xtrabackup restore cluster |
| Restore Increment |
PASSED |
The cluster xtrabackup Restore Increment |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
PASSED |
Reconfiguring the cluster specify component mysql set binlog_expire_logs_seconds=691200 |
| Accessibility |
Expose |
PASSED |
Expose Enable the internet service with mysql component |
| Expose |
PASSED |
Expose Disable the internet service with mysql component |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
PASSED |
Bench the cluster service with mysql component |
| Bench |
PASSED |
Bench the cluster LB service with mysql component |
| Tpch |
- |
Not implemented or unsupported |
Mysql Orchestrator ( Topology = orc ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Mysql Orchestrator ( Topology = orc ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology orc with the specified component definition mysql-8.0-1.0.2 and component version mysql and service version 8.0.33 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster Monitor enable |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component mysql |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component mysql |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component mysql |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component mysql |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
PASSED |
Rebuild the cluster instance specify component mysql |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
PASSED |
SwitchOver the cluster specify component mysql |
| Backup Restore |
Backup |
PASSED |
The cluster Schedule xtrabackup Backup |
| Backup |
PASSED |
The cluster xtrabackup Backup |
| Restore |
PASSED |
The cluster Schedule xtrabackup Restore |
| Restore |
PASSED |
The cluster xtrabackup Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the Schedule xtrabackup restore cluster |
| Delete Restore Cluster |
PASSED |
Delete the xtrabackup restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
PASSED |
Reconfiguring the cluster specify component mysql set binlog_expire_logs_seconds=691200 |
| Accessibility |
Expose |
PASSED |
Expose Enable the intranet service with mysql component |
| Expose |
PASSED |
Expose Disable the intranet service with mysql component |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
PASSED |
Bench the cluster LB service with mysql component |
| Tpch |
- |
Not implemented or unsupported |
Mysql Orchestrator Proxysql ( Topology = orc-proxysql ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Mysql Orchestrator Proxysql ( Topology = orc-proxysql ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology orc-proxysql with the specified component definition mysql-8.0-1.0.2 and component version mysql and service version 8.0.33 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster Monitor enable |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component mysql |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component mysql |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component mysql |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component mysql |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
PASSED |
Rebuild the cluster instance specify component mysql |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
PASSED |
SwitchOver the cluster specify component mysql |
| Backup Restore |
Backup |
PASSED |
The cluster Schedule xtrabackup Backup |
| Backup |
PASSED |
The cluster xtrabackup Backup |
| Restore |
PASSED |
The cluster Schedule xtrabackup Restore |
| Restore |
PASSED |
The cluster xtrabackup Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the Schedule xtrabackup restore cluster |
| Delete Restore Cluster |
PASSED |
Delete the xtrabackup restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
PASSED |
Reconfiguring the cluster specify component mysql set binlog_expire_logs_seconds=691200 |
| Accessibility |
Expose |
PASSED |
Expose Enable the internet service with mysql component |
| Expose |
PASSED |
Expose Disable the internet service with mysql component |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
PASSED |
Bench the cluster LB service with mysql component |
| Tpch |
- |
Not implemented or unsupported |
Nacos ( Topology = cluster ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Nacos ( Topology = cluster ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology cluster with the specified component definition nacos2-1.0.2 and component version nacos and service version 2.4.3 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Restart |
PASSED |
Restart the cluster specify component nacos |
| Restart |
PASSED |
Restart the cluster specify component mysql |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component mysql |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component nacos |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component mysql |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component nacos |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component mysql |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component nacos |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component mysql |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component nacos |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
PASSED |
Rebuild the cluster instance specify component nacos |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
- |
Not implemented or unsupported |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Nacos 2.4.3 ( Topology = cluster ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Nacos 2.4.3 ( Topology = cluster ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology cluster with the specified component definition nacos2-1.0.2 and component version nacos and service version 2.4.3 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster specify component nacos |
| Restart |
PASSED |
Restart the cluster |
| Restart |
PASSED |
Restart the cluster specify component mysql |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component mysql |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component nacos |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component mysql |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component nacos |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component mysql |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component nacos |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component mysql |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component nacos |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
PASSED |
Rebuild the cluster instance specify component nacos |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
- |
Not implemented or unsupported |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Nacos 3.1.1 ( Topology = cluster ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Nacos 3.1.1 ( Topology = cluster ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology cluster with the specified component definition nacos3-1.0.2 and component version nacos and service version 3.1.1 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Restart |
PASSED |
Restart the cluster specify component nacos |
| Restart |
PASSED |
Restart the cluster specify component mysql |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component mysql |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component nacos |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component nacos |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component mysql |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component nacos |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component mysql |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component nacos |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component mysql |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
PASSED |
Rebuild the cluster instance specify component nacos |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
- |
Not implemented or unsupported |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Nebula ( Topology = default ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Nebula ( Topology = default ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology default with the specified component definition nebula-graphd-1.0.1 and component version nebula and service version v3.5.0 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Restart |
PASSED |
Restart the cluster specify component metad |
| Restart |
PASSED |
Restart the cluster specify component storaged |
| Restart |
PASSED |
Restart the cluster specify component graphd |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component metad |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component storaged |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component graphd |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component graphd,metad,storaged and volume logs |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component metad and volume data |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component graphd |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component storaged |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component graphd |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component storaged |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Nebula v3.5.0 ( Topology = default ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Nebula v3.5.0 ( Topology = default ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology default with the specified component definition nebula-graphd-1.0.1 and component version nebula and service version v3.5.0 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster specify component storaged |
| Restart |
PASSED |
Restart the cluster specify component graphd |
| Restart |
PASSED |
Restart the cluster specify component metad |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component storaged |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component graphd |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component metad |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component graphd,metad,storaged and volume logs |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component metad and volume data |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component storaged |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component graphd |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component storaged |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component graphd |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Nebula v3.8.0 ( Topology = default ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Nebula v3.8.0 ( Topology = default ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology default with the specified component definition nebula-graphd-1.0.1 and component version nebula and service version v3.8.0 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Restart |
PASSED |
Restart the cluster specify component storaged |
| Restart |
PASSED |
Restart the cluster specify component graphd |
| Restart |
PASSED |
Restart the cluster specify component metad |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component metad |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component storaged |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component graphd |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component metad and volume data |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component graphd,metad,storaged and volume logs |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component graphd |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component storaged |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component graphd |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component storaged |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
OceanBase CE ( Topology = distribution ; Replicas = 3 )
| Engine |
Feature |
Operation |
State |
Description |
| OceanBase CE ( Topology = distribution ; Replicas = 3 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology distribution with the specified component definition oceanbase-ce-1.0.2 and component version oceanbase-ce and service version 4.3.0 |
| Start |
- |
Not implemented or unsupported |
| Stop |
- |
Not implemented or unsupported |
| Restart |
- |
Not implemented or unsupported |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
- |
Not implemented or unsupported |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component oceanbase and volume data-file |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component oceanbase and volume data-log |
| HorizontalScaling In |
- |
Not implemented or unsupported |
| HorizontalScaling Out |
- |
Not implemented or unsupported |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
PASSED |
Reconfiguring the cluster specify component oceanbase set system_memory=2G |
| Accessibility |
Expose |
PASSED |
Expose Enable the intranet service with oceanbase component |
| Expose |
PASSED |
Expose Disable the intranet service with oceanbase component |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
PASSED |
Bench the cluster service with oceanbase component |
| Bench |
PASSED |
Bench the cluster LB service with oceanbase component |
| Tpch |
- |
Not implemented or unsupported |
OceanBase Ent ( Topology = distribution ; Replicas = 3 )
| Engine |
Feature |
Operation |
State |
Description |
| OceanBase Ent ( Topology = distribution ; Replicas = 3 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology distribution with the specified component definition oceanbase-dist-1.0.2 and component version oceanbase and service version 4.2.1-BP7-Hotfix2 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component oceanbase-dist |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component oceanbase-dist and volume data-file |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component oceanbase-dist and volume data-log |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component oceanbase-dist |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component oceanbase-dist |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
PASSED |
The cluster full Backup |
| Restore |
PASSED |
The cluster full Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the full restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
PASSED |
Reconfiguring the cluster specify component oceanbase-dist set net_thread_count=4 |
| Reconfiguring |
PASSED |
Reconfiguring the cluster specify component oceanbase-dist set schema_history_expire_time=2d |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
PASSED |
Bench the cluster service with oceanbase-dist component |
| Tpch |
- |
Not implemented or unsupported |
OceanBase Ent 4.2.1-BP7-Hotfix2 ( Topology = replication ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| OceanBase Ent 4.2.1-BP7-Hotfix2 ( Topology = replication ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology replication with the specified component definition oceanbase-dist-1.0.2 and component version oceanbase and service version 4.2.1-BP7-Hotfix2 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component oceanbase |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component oceanbase and volume data-log |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component oceanbase and volume data-file |
| HorizontalScaling In |
- |
Not implemented or unsupported |
| HorizontalScaling Out |
- |
Not implemented or unsupported |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
PASSED |
Rebuild the cluster instance specify component oceanbase |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
PASSED |
SwitchOver the cluster specify component oceanbase |
| Backup Restore |
Backup |
PASSED |
The cluster full-for-rebuild Backup |
| Backup |
PASSED |
The cluster full Backup |
| Restore |
PASSED |
The cluster full Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the full restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
PASSED |
Reconfiguring the cluster specify component oceanbase set net_thread_count=4 |
| Reconfiguring |
PASSED |
Reconfiguring the cluster specify component oceanbase set schema_history_expire_time=2d |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
PASSED |
Bench the cluster service with oceanbase component |
| Tpch |
- |
Not implemented or unsupported |
OceanBase Proxy ( Topology = standalone ; Replicas = 1 )
| Engine |
Feature |
Operation |
State |
Description |
| OceanBase Proxy ( Topology = standalone ; Replicas = 1 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology standalone with the specified component definition oceanbase-proxy-1.0.1 and component version oceanbase-proxy and service version 4.2.1 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster specify component obproxy |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component obproxy |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component configserver |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component configserver |
| HorizontalScaling In |
- |
Not implemented or unsupported |
| HorizontalScaling Out |
- |
Not implemented or unsupported |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
- |
Not implemented or unsupported |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
OpenSearch ( Topology = )
| Engine |
Feature |
Operation |
State |
Description |
| OpenSearch ( Topology = ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified component definition opensearch-core and component version opensearch and service version 2.7.0 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component dashboard |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component opensearch |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component opensearch |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component opensearch |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component opensearch |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Oracle ( Topology = replication ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Oracle ( Topology = replication ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology replication with the specified component definition oracle-12c-1.0.0-alpha.0 and component version oracle and service version 12.2.0 |
| Start |
- |
Not implemented or unsupported |
| Stop |
- |
Not implemented or unsupported |
| Restart |
PASSED |
Restart the cluster specify component oracle |
| Restart |
PASSED |
Restart the cluster specify component observer |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component oracle |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component observer |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component oracle |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component observer |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component observer |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
PASSED |
SwitchOver the cluster specify component oracle |
| Backup Restore |
Backup |
PASSED |
The cluster oracle-rman Backup |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the oracle-rman restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
PASSED |
Reconfiguring the cluster specify component oracle set open_cursors=400 |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Orchestrator Cluster ( Topology = raft ; Replicas = 3 )
| Engine |
Feature |
Operation |
State |
Description |
| Orchestrator Cluster ( Topology = raft ; Replicas = 3 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology raft with the specified component definition orchestrator-shared-backend-1.0.2 and component version orchestrator and service version 3.2.6 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster Monitor enable |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component orchestrator |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component orchestrator |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component orchestrator |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component orchestrator |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Orioledb ( Topology = orioledb ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Orioledb ( Topology = orioledb ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology orioledb with the specified component definition orioledb-1.0.1 and component version orioledb and service version 16.4.0 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component orioledb |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component orioledb |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component orioledb |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component orioledb |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
PASSED |
Expose Enable the internet service with orioledb component |
| Expose |
PASSED |
Expose Disable the internet service with orioledb component |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
PASSED |
Bench the cluster service with orioledb component |
| Bench |
PASSED |
Bench the cluster LB service with orioledb component |
| Tpch |
- |
Not implemented or unsupported |
Postgresql 12.22.0 ( Topology = replication ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Postgresql 12.22.0 ( Topology = replication ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology replication with the specified component definition postgresql-12-1.0.2 and component version postgresql and service version 12.22.0 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component postgresql |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component postgresql |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component postgresql |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component postgresql |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
PASSED |
Rebuild the cluster instance specify component postgresql |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
PASSED |
SwitchOver the cluster specify component postgresql |
| Backup Restore |
Backup |
PASSED |
The cluster wal-g Backup |
| Backup |
PASSED |
The cluster pg-basebackup Backup |
| Restore |
PASSED |
The cluster wal-g Restore |
| Restore |
PASSED |
The cluster pg-basebackup Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the wal-g restore cluster |
| Delete Restore Cluster |
PASSED |
Delete the pg-basebackup restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
PASSED |
Reconfiguring the cluster specify component postgresql set max_connections=200 |
| Reconfiguring |
PASSED |
Reconfiguring the cluster specify component postgresql set shared_buffers=512MB |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
PASSED |
Bench the cluster service with postgresql component |
| Tpch |
- |
Not implemented or unsupported |
Postgresql 14.18.0 ( Topology = replication ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Postgresql 14.18.0 ( Topology = replication ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology replication with the specified component definition postgresql-14-1.0.2 and component version postgresql and service version 14.18.0 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component postgresql |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component postgresql |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component postgresql |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component postgresql |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
PASSED |
Rebuild the cluster instance specify component postgresql |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
PASSED |
SwitchOver the cluster specify component postgresql |
| Backup Restore |
Backup |
PASSED |
The cluster wal-g Backup |
| Backup |
PASSED |
The cluster pg-basebackup Backup |
| Restore |
PASSED |
The cluster wal-g Restore |
| Restore |
PASSED |
The cluster pg-basebackup Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the wal-g restore cluster |
| Delete Restore Cluster |
PASSED |
Delete the pg-basebackup restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
PASSED |
Reconfiguring the cluster specify component postgresql set max_connections=200 |
| Reconfiguring |
PASSED |
Reconfiguring the cluster specify component postgresql set shared_buffers=512MB |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
PASSED |
Bench the cluster service with postgresql component |
| Tpch |
- |
Not implemented or unsupported |
Postgresql 15.13.0 ( Topology = replication ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Postgresql 15.13.0 ( Topology = replication ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology replication with the specified component definition postgresql-15-1.0.2 and component version postgresql and service version 15.13.0 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component postgresql |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component postgresql |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component postgresql |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component postgresql |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
PASSED |
Rebuild the cluster instance specify component postgresql |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
PASSED |
SwitchOver the cluster specify component postgresql |
| Backup Restore |
Backup |
PASSED |
The cluster wal-g Backup |
| Backup |
PASSED |
The cluster pg-basebackup Backup |
| Restore |
PASSED |
The cluster wal-g Restore |
| Restore |
PASSED |
The cluster pg-basebackup Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the wal-g restore cluster |
| Delete Restore Cluster |
PASSED |
Delete the pg-basebackup restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
PASSED |
Reconfiguring the cluster specify component postgresql set shared_buffers=512MB |
| Reconfiguring |
PASSED |
Reconfiguring the cluster specify component postgresql set max_connections=200 |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
PASSED |
Bench the cluster service with postgresql component |
| Tpch |
- |
Not implemented or unsupported |
Postgresql 16.9.0 ( Topology = replication ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Postgresql 16.9.0 ( Topology = replication ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology replication with the specified component definition postgresql-16-1.0.2 and component version postgresql and service version 16.9.0 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component postgresql |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component postgresql |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component postgresql |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component postgresql |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
PASSED |
Rebuild the cluster instance specify component postgresql |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
PASSED |
SwitchOver the cluster specify component postgresql |
| Backup Restore |
Backup |
PASSED |
The cluster wal-g Backup |
| Backup |
PASSED |
The cluster pg-basebackup Backup |
| Restore |
PASSED |
The cluster wal-g Restore |
| Restore |
PASSED |
The cluster pg-basebackup Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the wal-g restore cluster |
| Delete Restore Cluster |
PASSED |
Delete the pg-basebackup restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
PASSED |
Reconfiguring the cluster specify component postgresql set shared_buffers=512MB |
| Reconfiguring |
PASSED |
Reconfiguring the cluster specify component postgresql set max_connections=200 |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
PASSED |
Bench the cluster service with postgresql component |
| Tpch |
- |
Not implemented or unsupported |
Postgresql 17.5.0 ( Topology = replication ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Postgresql 17.5.0 ( Topology = replication ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology replication with the specified component definition postgresql-17-1.0.2 and component version postgresql and service version 17.5.0 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component postgresql |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component postgresql |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component postgresql |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component postgresql |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
PASSED |
Rebuild the cluster instance specify component postgresql |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
PASSED |
SwitchOver the cluster specify component postgresql |
| Backup Restore |
Backup |
PASSED |
The cluster wal-g Backup |
| Backup |
PASSED |
The cluster pg-basebackup Backup |
| Restore |
PASSED |
The cluster wal-g Restore |
| Restore |
PASSED |
The cluster pg-basebackup Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the wal-g restore cluster |
| Delete Restore Cluster |
PASSED |
Delete the pg-basebackup restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
PASSED |
Reconfiguring the cluster specify component postgresql set shared_buffers=512MB |
| Reconfiguring |
PASSED |
Reconfiguring the cluster specify component postgresql set max_connections=200 |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
PASSED |
Bench the cluster service with postgresql component |
| Tpch |
- |
Not implemented or unsupported |
Postgresql 18.1.0 ( Topology = replication ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Postgresql 18.1.0 ( Topology = replication ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology replication with the specified component definition postgresql-18-1.0.2 and component version postgresql and service version 18.1.0 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component postgresql |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component postgresql |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component postgresql |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component postgresql |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
PASSED |
Rebuild the cluster instance specify component postgresql |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
PASSED |
SwitchOver the cluster specify component postgresql |
| Backup Restore |
Backup |
PASSED |
The cluster wal-g Backup |
| Backup |
PASSED |
The cluster pg-basebackup Backup |
| Restore |
PASSED |
The cluster wal-g Restore |
| Restore |
PASSED |
The cluster pg-basebackup Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the wal-g restore cluster |
| Delete Restore Cluster |
PASSED |
Delete the pg-basebackup restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
PASSED |
Reconfiguring the cluster specify component postgresql set shared_buffers=512MB |
| Reconfiguring |
PASSED |
Reconfiguring the cluster specify component postgresql set max_connections=200 |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
PASSED |
Bench the cluster service with postgresql component |
| Tpch |
- |
Not implemented or unsupported |
Postgresql Etcd ( Topology = replication ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Postgresql Etcd ( Topology = replication ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology replication with the specified component definition postgresql-16-1.0.2 and component version postgresql and service version 16.4.0 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component postgresql |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component postgresql |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component postgresql |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component postgresql |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
PASSED |
Rebuild the cluster instance specify component postgresql |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
PASSED |
SwitchOver the cluster specify component postgresql |
| Backup Restore |
Backup |
PASSED |
The cluster wal-g Backup |
| Backup |
PASSED |
The cluster pg-basebackup Backup |
| Backup |
PASSED |
The cluster Schedule pg-basebackup Backup |
| Backup |
PASSED |
The cluster volume-snapshot Backup |
| Restore |
PASSED |
The cluster wal-g Restore |
| Restore |
PASSED |
The cluster pg-basebackup Restore |
| Restore |
PASSED |
The cluster Schedule pg-basebackup Restore |
| Restore |
PASSED |
The cluster volume-snapshot Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the wal-g restore cluster |
| Delete Restore Cluster |
PASSED |
Delete the pg-basebackup restore cluster |
| Delete Restore Cluster |
PASSED |
Delete the Schedule pg-basebackup restore cluster |
| Delete Restore Cluster |
PASSED |
Delete the volume-snapshot restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
PASSED |
Reconfiguring the cluster specify component postgresql set shared_buffers=512MB |
| Reconfiguring |
PASSED |
Reconfiguring the cluster specify component postgresql set max_connections=200 |
| Accessibility |
Expose |
PASSED |
Expose Enable the intranet service with postgresql component |
| Expose |
PASSED |
Expose Disable the intranet service with postgresql component |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
PASSED |
Bench the cluster service with postgresql component |
| Bench |
PASSED |
Bench the cluster LB service with postgresql component |
| Tpch |
- |
Not implemented or unsupported |
Qdrant ( Topology = cluster ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Qdrant ( Topology = cluster ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology cluster with the specified component definition qdrant-1.0.2 and component version qdrant and service version 1.5.0 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster Monitor enable |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component qdrant |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component qdrant |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component qdrant |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component qdrant |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
PASSED |
The cluster datafile Backup |
| Backup |
PASSED |
The cluster Schedule datafile Backup |
| Restore |
PASSED |
The cluster datafile Restore |
| Restore |
PASSED |
The cluster Schedule datafile Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the datafile restore cluster |
| Delete Restore Cluster |
PASSED |
Delete the Schedule datafile restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Rabbitmq ( Topology = clustermode ; Replicas = 3 )
| Engine |
Feature |
Operation |
State |
Description |
| Rabbitmq ( Topology = clustermode ; Replicas = 3 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology clustermode with the specified component definition rabbitmq-1.0.2 and component version rabbitmq and service version 4.0.9 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster Monitor enable |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component rabbitmq |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component rabbitmq |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component rabbitmq |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component rabbitmq |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Rabbitmq 3.8.34 ( Topology = clustermode ; Replicas = 3 )
| Engine |
Feature |
Operation |
State |
Description |
| Rabbitmq 3.8.34 ( Topology = clustermode ; Replicas = 3 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology clustermode with the specified component definition rabbitmq-1.0.2 and component version rabbitmq and service version 3.8.34 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster Monitor enable |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component rabbitmq |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component rabbitmq |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component rabbitmq |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component rabbitmq |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Rabbitmq 3.9.29 ( Topology = clustermode ; Replicas = 3 )
| Engine |
Feature |
Operation |
State |
Description |
| Rabbitmq 3.9.29 ( Topology = clustermode ; Replicas = 3 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology clustermode with the specified component definition rabbitmq-1.0.2 and component version rabbitmq and service version 3.9.29 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster Monitor enable |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component rabbitmq |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component rabbitmq |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component rabbitmq |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component rabbitmq |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Rabbitmq 3.10.25 ( Topology = clustermode ; Replicas = 3 )
| Engine |
Feature |
Operation |
State |
Description |
| Rabbitmq 3.10.25 ( Topology = clustermode ; Replicas = 3 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology clustermode with the specified component definition rabbitmq-1.0.2 and component version rabbitmq and service version 3.10.25 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster Monitor enable |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component rabbitmq |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component rabbitmq |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component rabbitmq |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component rabbitmq |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Rabbitmq 3.11.28 ( Topology = clustermode ; Replicas = 3 )
| Engine |
Feature |
Operation |
State |
Description |
| Rabbitmq 3.11.28 ( Topology = clustermode ; Replicas = 3 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology clustermode with the specified component definition rabbitmq-1.0.2 and component version rabbitmq and service version 3.11.28 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster Monitor enable |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component rabbitmq |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component rabbitmq |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component rabbitmq |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component rabbitmq |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Rabbitmq 3.12.14 ( Topology = clustermode ; Replicas = 3 )
| Engine |
Feature |
Operation |
State |
Description |
| Rabbitmq 3.12.14 ( Topology = clustermode ; Replicas = 3 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology clustermode with the specified component definition rabbitmq-1.0.2 and component version rabbitmq and service version 3.12.14 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster Monitor enable |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component rabbitmq |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component rabbitmq |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component rabbitmq |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component rabbitmq |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Rabbitmq 3.13.7 ( Topology = clustermode ; Replicas = 3 )
| Engine |
Feature |
Operation |
State |
Description |
| Rabbitmq 3.13.7 ( Topology = clustermode ; Replicas = 3 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology clustermode with the specified component definition rabbitmq-1.0.2 and component version rabbitmq and service version 3.13.7 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster Monitor enable |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component rabbitmq |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component rabbitmq |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component rabbitmq |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component rabbitmq |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Rabbitmq 4.0.9 ( Topology = clustermode ; Replicas = 3 )
| Engine |
Feature |
Operation |
State |
Description |
| Rabbitmq 4.0.9 ( Topology = clustermode ; Replicas = 3 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology clustermode with the specified component definition rabbitmq-1.0.2 and component version rabbitmq and service version 4.0.9 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster Monitor enable |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component rabbitmq |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component rabbitmq |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component rabbitmq |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component rabbitmq |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Rabbitmq 4.1.6 ( Topology = clustermode ; Replicas = 3 )
| Engine |
Feature |
Operation |
State |
Description |
| Rabbitmq 4.1.6 ( Topology = clustermode ; Replicas = 3 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology clustermode with the specified component definition rabbitmq-1.0.2 and component version rabbitmq and service version 4.1.6 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster Monitor enable |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component rabbitmq |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component rabbitmq |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component rabbitmq |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component rabbitmq |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Rabbitmq 4.2.1 ( Topology = clustermode ; Replicas = 3 )
| Engine |
Feature |
Operation |
State |
Description |
| Rabbitmq 4.2.1 ( Topology = clustermode ; Replicas = 3 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology clustermode with the specified component definition rabbitmq-1.0.2 and component version rabbitmq and service version 4.2.1 |
| Start |
- |
Not implemented or unsupported |
| Stop |
- |
Not implemented or unsupported |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster Monitor enable |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component rabbitmq |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component rabbitmq |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component rabbitmq |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component rabbitmq |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Redis ( Topology = replication ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Redis ( Topology = replication ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology replication with the specified component definition redis-8-1.0.2 and component version redis and service version 8.4.0 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster Monitor enable |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component redis |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component redis |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component redis |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component redis |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
PASSED |
Rebuild the cluster instance specify component redis |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
PASSED |
The cluster Schedule datafile Backup |
| Backup |
PASSED |
The cluster volume-snapshot Backup |
| Backup |
PASSED |
The cluster datafile Backup |
| Restore |
PASSED |
The cluster Schedule datafile Restore |
| Restore |
PASSED |
The cluster volume-snapshot Restore |
| Restore |
PASSED |
The cluster datafile Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the Schedule datafile restore cluster |
| Delete Restore Cluster |
PASSED |
Delete the aof restore cluster |
| Delete Restore Cluster |
PASSED |
Delete the volume-snapshot restore cluster |
| Delete Restore Cluster |
PASSED |
Delete the datafile restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
PASSED |
Reconfiguring the cluster specify component redis set maxclients=10001 |
| Reconfiguring |
PASSED |
Reconfiguring the cluster specify component redis set aof-timestamp-enabled=yes |
| Accessibility |
Expose |
PASSED |
Expose Enable the internet service with redis component |
| Expose |
PASSED |
Expose Disable the internet service with redis component |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
PASSED |
Bench the cluster service with redis component |
| Bench |
PASSED |
Bench the cluster LB service with redis component |
| Tpch |
- |
Not implemented or unsupported |
Redis 6.2.18 ( Topology = replication ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Redis 6.2.18 ( Topology = replication ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology replication with the specified component definition redis-6-1.0.2 and component version redis and service version 6.2.18 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster Monitor enable |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component redis |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component redis |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component redis |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component redis |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
PASSED |
Rebuild the cluster instance specify component redis |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
PASSED |
The cluster datafile Backup |
| Restore |
PASSED |
The cluster datafile Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the datafile restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
PASSED |
Reconfiguring the cluster specify component redis set maxclients=10001 |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
PASSED |
Bench the cluster service with redis component |
| Tpch |
- |
Not implemented or unsupported |
Redis 7.0.6 ( Topology = replication ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Redis 7.0.6 ( Topology = replication ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology replication with the specified component definition redis-7-1.0.2 and component version redis and service version 7.0.6 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster Monitor enable |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component redis |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component redis |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component redis |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component redis |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
PASSED |
Rebuild the cluster instance specify component redis |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
PASSED |
The cluster datafile Backup |
| Restore |
PASSED |
The cluster datafile Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the datafile restore cluster |
| Delete Restore Cluster |
PASSED |
Delete the aof restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
PASSED |
Reconfiguring the cluster specify component redis set maxclients=10001 |
| Reconfiguring |
PASSED |
Reconfiguring the cluster specify component redis set aof-timestamp-enabled=yes |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
PASSED |
Bench the cluster service with redis component |
| Tpch |
- |
Not implemented or unsupported |
Redis 7.2.12 ( Topology = replication ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Redis 7.2.12 ( Topology = replication ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology replication with the specified component definition redis-7-1.0.2 and component version redis and service version 7.2.12 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster Monitor enable |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component redis |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component redis |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component redis |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component redis |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
PASSED |
Rebuild the cluster instance specify component redis |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
PASSED |
The cluster datafile Backup |
| Restore |
PASSED |
The cluster datafile Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the aof restore cluster |
| Delete Restore Cluster |
PASSED |
Delete the datafile restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
PASSED |
Reconfiguring the cluster specify component redis set maxclients=10001 |
| Reconfiguring |
PASSED |
Reconfiguring the cluster specify component redis set aof-timestamp-enabled=yes |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
PASSED |
Bench the cluster service with redis component |
| Tpch |
- |
Not implemented or unsupported |
Redis 7.4.7 ( Topology = replication ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Redis 7.4.7 ( Topology = replication ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology replication with the specified component definition redis-7-1.0.2 and component version redis and service version 7.4.7 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster Monitor enable |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component redis |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component redis |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component redis |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component redis |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
PASSED |
Rebuild the cluster instance specify component redis |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
PASSED |
The cluster datafile Backup |
| Restore |
PASSED |
The cluster datafile Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the datafile restore cluster |
| Delete Restore Cluster |
PASSED |
Delete the aof restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
PASSED |
Reconfiguring the cluster specify component redis set maxclients=10001 |
| Reconfiguring |
PASSED |
Reconfiguring the cluster specify component redis set aof-timestamp-enabled=yes |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
PASSED |
Bench the cluster service with redis component |
| Tpch |
- |
Not implemented or unsupported |
Redis 8.0.5 ( Topology = replication ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Redis 8.0.5 ( Topology = replication ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology replication with the specified component definition redis-8-1.0.2 and component version redis and service version 8.0.5 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster Monitor enable |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component redis |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component redis |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component redis |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component redis |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
PASSED |
Rebuild the cluster instance specify component redis |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
PASSED |
The cluster datafile Backup |
| Restore |
PASSED |
The cluster datafile Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the aof restore cluster |
| Delete Restore Cluster |
PASSED |
Delete the datafile restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
PASSED |
Reconfiguring the cluster specify component redis set maxclients=10001 |
| Reconfiguring |
PASSED |
Reconfiguring the cluster specify component redis set aof-timestamp-enabled=yes |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
PASSED |
Bench the cluster service with redis component |
| Tpch |
- |
Not implemented or unsupported |
Redis 8.2.3 ( Topology = replication ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Redis 8.2.3 ( Topology = replication ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology replication with the specified component definition redis-8-1.0.2 and component version redis and service version 8.2.3 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster Monitor enable |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component redis |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component redis |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component redis |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component redis |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
PASSED |
Rebuild the cluster instance specify component redis |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
PASSED |
The cluster datafile Backup |
| Restore |
PASSED |
The cluster datafile Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the aof restore cluster |
| Delete Restore Cluster |
PASSED |
Delete the datafile restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
PASSED |
Reconfiguring the cluster specify component redis set maxclients=10001 |
| Reconfiguring |
PASSED |
Reconfiguring the cluster specify component redis set aof-timestamp-enabled=yes |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
PASSED |
Bench the cluster service with redis component |
| Tpch |
- |
Not implemented or unsupported |
Redis 8.4.0 ( Topology = replication ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Redis 8.4.0 ( Topology = replication ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology replication with the specified component definition redis-8-1.0.2 and component version redis and service version 8.4.0 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster Monitor enable |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component redis |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component redis |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component redis |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component redis |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
PASSED |
Rebuild the cluster instance specify component redis |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
PASSED |
The cluster datafile Backup |
| Restore |
PASSED |
The cluster datafile Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the datafile restore cluster |
| Delete Restore Cluster |
PASSED |
Delete the aof restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
PASSED |
Reconfiguring the cluster specify component redis set maxclients=10001 |
| Reconfiguring |
PASSED |
Reconfiguring the cluster specify component redis set aof-timestamp-enabled=yes |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
PASSED |
Bench the cluster service with redis component |
| Tpch |
- |
Not implemented or unsupported |
Redis Cluster 7.0.6 ( Topology = cluster ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Redis Cluster 7.0.6 ( Topology = cluster ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology cluster with the specified component definition redis-cluster-7-1.0.2 and component version redis-cluster and service version 7.0.6 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component shard-c4r |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component shard-bg7 |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component shard-bg7 |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component shard-bg7 |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
PASSED |
The cluster datafile Backup |
| Restore |
PASSED |
The cluster datafile Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the datafile restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
- |
Not implemented or unsupported |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
PASSED |
Bench the cluster service with shard-bg7 component |
| Tpch |
- |
Not implemented or unsupported |
Redis Cluster 7.2.4 ( Topology = cluster ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Redis Cluster 7.2.4 ( Topology = cluster ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology cluster with the specified component definition redis-cluster-7-1.0.2 and component version redis-cluster and service version 7.2.4 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component shard-2vj |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component shard-2vj |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component shard-2vj |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component shard-2vj |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
PASSED |
The cluster datafile Backup |
| Backup |
PASSED |
The cluster Schedule datafile Backup |
| Restore |
PASSED |
The cluster datafile Restore |
| Restore |
PASSED |
The cluster Schedule datafile Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the datafile restore cluster |
| Delete Restore Cluster |
PASSED |
Delete the Schedule datafile restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
- |
Not implemented or unsupported |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
PASSED |
Bench the cluster service with shard-2vj component |
| Tpch |
- |
Not implemented or unsupported |
Redis Cluster 7.2.12 ( Topology = cluster ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Redis Cluster 7.2.12 ( Topology = cluster ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology cluster with the specified component definition redis-cluster-7-1.0.2 and component version redis-cluster and service version 7.2.12 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component shard-lrg |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component shard-lrg |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component shard-d6d |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component shard-d6d |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
PASSED |
The cluster datafile Backup |
| Restore |
PASSED |
The cluster datafile Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the datafile restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
- |
Not implemented or unsupported |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
PASSED |
Bench the cluster service with shard-lrg component |
| Tpch |
- |
Not implemented or unsupported |
Redis Cluster 7.4.5 ( Topology = cluster ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Redis Cluster 7.4.5 ( Topology = cluster ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology cluster with the specified component definition redis-cluster-7-1.0.2 and component version redis-cluster and service version 7.4.2 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component shard-lx4 |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component shard-lx4 |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component shard-lx4 |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component shard-lx4 |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
PASSED |
The cluster datafile Backup |
| Backup |
PASSED |
The cluster Schedule datafile Backup |
| Restore |
PASSED |
The cluster datafile Restore |
| Restore |
PASSED |
The cluster Schedule datafile Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the datafile restore cluster |
| Delete Restore Cluster |
PASSED |
Delete the Schedule datafile restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
- |
Not implemented or unsupported |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
PASSED |
Bench the cluster service with shard-lx4 component |
| Tpch |
- |
Not implemented or unsupported |
Redis Cluster 7.4.7 ( Topology = cluster ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Redis Cluster 7.4.7 ( Topology = cluster ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology cluster with the specified component definition redis-cluster-7-1.0.2 and component version redis-cluster and service version 7.4.7 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component shard-fqm |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component shard-fqm |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component shard-hnp |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component shard-hnp |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
PASSED |
The cluster datafile Backup |
| Restore |
PASSED |
The cluster datafile Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the datafile restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
- |
Not implemented or unsupported |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
PASSED |
Bench the cluster service with shard-fqm component |
| Tpch |
- |
Not implemented or unsupported |
Redis Cluster 8.0.5 ( Topology = cluster ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Redis Cluster 8.0.5 ( Topology = cluster ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology cluster with the specified component definition redis-cluster-8-1.0.2 and component version redis-cluster and service version 8.0.5 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component shard-67f |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component shard-79z |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component shard-67f |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component shard-67f |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
PASSED |
The cluster datafile Backup |
| Restore |
PASSED |
The cluster datafile Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the datafile restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
- |
Not implemented or unsupported |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
PASSED |
Bench the cluster service with shard-79z component |
| Tpch |
- |
Not implemented or unsupported |
Redis Cluster 8.2.3 ( Topology = cluster ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Redis Cluster 8.2.3 ( Topology = cluster ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology cluster with the specified component definition redis-cluster-8-1.0.2 and component version redis-cluster and service version 8.2.3 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component shard-jtz |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component shard-jtz |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component shard-jtz |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component shard-jtz |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
PASSED |
The cluster datafile Backup |
| Restore |
PASSED |
The cluster datafile Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the datafile restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
- |
Not implemented or unsupported |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
PASSED |
Bench the cluster service with shard-jtz component |
| Tpch |
- |
Not implemented or unsupported |
Redis Cluster 8.4.0 ( Topology = cluster ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Redis Cluster 8.4.0 ( Topology = cluster ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology cluster with the specified component definition redis-cluster-8-1.0.2 and component version redis-cluster and service version 8.4.0 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component shard-8wn |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component shard-w55 |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component shard-8wn |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component shard-8wn |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
PASSED |
The cluster datafile Backup |
| Restore |
PASSED |
The cluster datafile Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the datafile restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
- |
Not implemented or unsupported |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
PASSED |
Bench the cluster service with shard-8wn component |
| Tpch |
- |
Not implemented or unsupported |
Risingwave ( Topology = )
| Engine |
Feature |
Operation |
State |
Description |
| Risingwave ( Topology = ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified component definition risingwave-compactor-1.0.1 and component version risingwave-compactor and service version v1.0.0 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster specify component frontend,compute |
| Restart |
PASSED |
Restart the cluster specify component compactor,connector |
| Restart |
PASSED |
Restart the cluster specify component meta |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component frontend |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component meta |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component compactor,connector |
| VolumeExpansion |
- |
Not implemented or unsupported |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component compute |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component frontend |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component compute |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component frontend |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
RocketMQ ( Topology = dledger ; Replicas = 3 )
| Engine |
Feature |
Operation |
State |
Description |
| RocketMQ ( Topology = dledger ; Replicas = 3 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology dledger with the specified component definition rocketmq-broker-4-1.0.2 and component version rocketmq-broker and service version 4.9.6 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster specify component namesrv |
| Restart |
PASSED |
Restart the cluster |
| Restart |
PASSED |
Restart the cluster specify component exporter,dashboard |
| Restart |
PASSED |
Restart the cluster specify component broker-qhb |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component dashboard |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component namesrv |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component broker-qhb |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component broker-qhb |
| HorizontalScaling In |
- |
Not implemented or unsupported |
| HorizontalScaling Out |
- |
Not implemented or unsupported |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
RocketMQ ( Topology = master-slave ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| RocketMQ ( Topology = master-slave ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology master-slave with the specified component definition rocketmq-broker-4-1.0.2 and component version rocketmq-broker and service version 4.9.6 |
| Create |
PASSED |
Create a cluster with the specified topology shared-nothing with the specified component definition starrocks-ce-be-1.0.1 and component version starrocks-ce-be and service version 3.2.2 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster specify component namesrv |
| Restart |
PASSED |
Restart the cluster specify component exporter,dashboard |
| Restart |
PASSED |
Restart the cluster specify component broker-4t2 |
| Restart |
PASSED |
Restart the cluster |
| Restart |
PASSED |
Restart the cluster specify component be |
| Restart |
PASSED |
Restart the cluster specify component fe |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component broker-4t2 |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component dashboard |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component namesrv |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component be |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component fe |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component broker-4t2 |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component be |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component be |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component be |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
PASSED |
Rebuild the cluster instance specify component fe |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Starrocks Ent ( Topology = shared-data ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Starrocks Ent ( Topology = shared-data ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology shared-data with the specified component definition starrocks-be-1.0.2 and component version starrocks-be and service version 3.3.0 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster specify component cn |
| Restart |
PASSED |
Restart the cluster specify component fe |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component fe |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component cn |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component fe |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component cn |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component cn |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
PASSED |
Rebuild the cluster instance specify component cn |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
PASSED |
Expose Enable the internet service with fe component |
| Expose |
PASSED |
Expose Disable the internet service with fe component |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Starrocks Ent 3.2.2 ( Topology = shared-data ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Starrocks Ent 3.2.2 ( Topology = shared-data ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology shared-data with the specified component definition starrocks-be-1.0.2 and component version starrocks-be and service version 3.2.2 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Restart |
PASSED |
Restart the cluster specify component cn |
| Restart |
PASSED |
Restart the cluster specify component fe |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component cn |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component fe |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component fe |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component cn |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component cn |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
PASSED |
Rebuild the cluster instance specify component cn |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Starrocks Ent 3.3.3 ( Topology = shared-data ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Starrocks Ent 3.3.3 ( Topology = shared-data ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology shared-data with the specified component definition starrocks-be-1.0.2 and component version starrocks-be and service version 3.3.3 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster specify component cn |
| Restart |
PASSED |
Restart the cluster specify component fe |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component cn |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component fe |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component fe |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component cn |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component cn |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
PASSED |
Rebuild the cluster instance specify component cn |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Starrocks Ent 3.4.2 ( Topology = shared-data ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Starrocks Ent 3.4.2 ( Topology = shared-data ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology shared-data with the specified component definition starrocks-be-1.0.2 and component version starrocks-be and service version 3.4.2 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster specify component fe |
| Restart |
PASSED |
Restart the cluster |
| Restart |
PASSED |
Restart the cluster specify component cn |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component fe |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component cn |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component fe |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component cn |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component cn |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
PASSED |
Rebuild the cluster instance specify component cn |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
TdSql ( Topology = replication ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| TdSql ( Topology = replication ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology replication with the specified component definition tdsql-db-1.0.1 and component version tdsql-db and service version 8.0.33 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster specify component scheduler,zookeeper |
| Restart |
PASSED |
Restart the cluster |
| Restart |
PASSED |
Restart the cluster specify component proxy |
| Restart |
PASSED |
Restart the cluster specify component db |
| Update |
PASSED |
Update the cluster Monitor enable |
| Update |
PASSED |
Update the cluster Logs enable |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component scheduler,zookeeper |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component proxy |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component db |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component zookeeper |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component db |
| HorizontalScaling In |
- |
Not implemented or unsupported |
| HorizontalScaling Out |
- |
Not implemented or unsupported |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
PASSED |
Expose Enable the internet service with db component |
| Expose |
PASSED |
Expose Disable the internet service with db component |
| Connect |
- |
Not implemented or unsupported |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Tdengine ( Topology = )
| Engine |
Feature |
Operation |
State |
Description |
| Tdengine ( Topology = ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified component definition tdengine-1.0.2 and component version tdengine and service version 3.3.6-13 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component tdengine |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component tdengine |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component tdengine |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component tdengine |
| HscaleOfflineInstances |
PASSED |
Hscale the cluster instances offline specify component tdengine |
| HscaleOnlineInstances |
PASSED |
Hscale the cluster instances online specify component tdengine |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
PASSED |
The cluster dump Backup |
| Restore |
PASSED |
The cluster dump Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the dump restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
PASSED |
Reconfiguring the cluster specify component tdengine set numOfRpcSessions=40000 |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Tdengine 3.3.6-9 ( Topology = )
| Engine |
Feature |
Operation |
State |
Description |
| Tdengine 3.3.6-9 ( Topology = ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified component definition tdengine-1.0.2 and component version tdengine and service version 3.3.6-9 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component tdengine |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component tdengine |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component tdengine |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component tdengine |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
PASSED |
The cluster dump Backup |
| Restore |
PASSED |
The cluster dump Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the dump restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
PASSED |
Reconfiguring the cluster specify component tdengine set numOfRpcSessions=40000 |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Tdengine 3.3.7-5 ( Topology = )
| Engine |
Feature |
Operation |
State |
Description |
| Tdengine 3.3.7-5 ( Topology = ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified component definition tdengine-1.0.2 and component version tdengine and service version 3.3.7-5 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component tdengine |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component tdengine |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component tdengine |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component tdengine |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
PASSED |
The cluster dump Backup |
| Restore |
PASSED |
The cluster dump Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the dump restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
PASSED |
Reconfiguring the cluster specify component tdengine set numOfRpcSessions=40000 |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Tdengine 3.3.8-8 ( Topology = )
| Engine |
Feature |
Operation |
State |
Description |
| Tdengine 3.3.8-8 ( Topology = ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified component definition tdengine-1.0.2 and component version tdengine and service version 3.3.8-8 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component tdengine |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component tdengine |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component tdengine |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component tdengine |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
PASSED |
The cluster dump Backup |
| Restore |
PASSED |
The cluster dump Restore |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
PASSED |
Delete the dump restore cluster |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
PASSED |
Reconfiguring the cluster specify component tdengine set numOfRpcSessions=40000 |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Tidb ( Topology = cluster ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Tidb ( Topology = cluster ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology cluster with the specified component definition tidb-7-1.0.2 and component version tidb and service version 8.4.0 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster specify component tidb,tikv |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component tidb |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component tidb-pd,tikv |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component tidb-pd,tikv |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component tidb |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component tidb |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component tikv |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Tidb 6.5.12 ( Topology = cluster ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Tidb 6.5.12 ( Topology = cluster ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology cluster with the specified component definition tidb-7-1.0.2 and component version tidb and service version 6.5.12 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster specify component tidb,tikv |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component tidb-pd,tikv |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component tidb |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component tidb-pd,tikv |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component tidb |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component tikv |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component tidb |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Tidb 7.5.2 ( Topology = cluster ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Tidb 7.5.2 ( Topology = cluster ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology cluster with the specified component definition tidb-7-1.0.2 and component version tidb and service version 7.5.2 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Restart |
PASSED |
Restart the cluster specify component tidb,tikv |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component tidb |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component tidb-pd,tikv |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component tidb-pd,tikv |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component tidb |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component tikv |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component tidb |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Tidb 8.4.0 ( Topology = cluster ; Replicas = 2 )
| Engine |
Feature |
Operation |
State |
Description |
| Tidb 8.4.0 ( Topology = cluster ; Replicas = 2 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology cluster with the specified component definition tidb-7-1.0.2 and component version tidb and service version 8.4.0 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster specify component tidb,tikv |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component tidb-pd,tikv |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component tidb |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component tidb-pd,tikv |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component tidb |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component tikv |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component tidb |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Vanilla Postgresql ( Topology = )
| Engine |
Feature |
Operation |
State |
Description |
| Vanilla Postgresql ( Topology = ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified component definition vanilla-postgresql-15-1.0.1 and component version vanilla-postgresql and service version 15.7.0 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component postgresql |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component postgresql |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component postgresql |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component postgresql |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
PASSED |
Expose Enable the intranet service with postgresql component |
| Expose |
PASSED |
Expose Disable the intranet service with postgresql component |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
PASSED |
Bench the cluster service with postgresql component |
| Bench |
PASSED |
Bench the cluster LB service with postgresql component |
| Tpch |
- |
Not implemented or unsupported |
Vastbase ( Topology = )
| Engine |
Feature |
Operation |
State |
Description |
| Vastbase ( Topology = ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified component definition vastbase-2.2-1.0.1 and component version vastbase and service version 2.2.15 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster Monitor enable |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component vastbase |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component vastbase |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component vastbase |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component vastbase |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
PASSED |
SwitchOver the cluster specify component vastbase |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
PASSED |
Reconfiguring the cluster specify component vastbase set audit_buffer_fflush_interval=150 |
| Accessibility |
Expose |
PASSED |
Expose Enable the internet service with vastbase component |
| Expose |
PASSED |
Expose Disable the internet service with vastbase component |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
PASSED |
Bench the cluster service with vastbase component |
| Bench |
PASSED |
Bench the cluster LB service with vastbase component |
| Tpch |
- |
Not implemented or unsupported |
Victoria Metrics ( Topology = vm-cluster ; Replicas = 1 )
| Engine |
Feature |
Operation |
State |
Description |
| Victoria Metrics ( Topology = vm-cluster ; Replicas = 1 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology vm-cluster with the specified component definition vmstorage-1.0.1 and component version victoria-metrics and service version 1.0.0 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Restart |
PASSED |
Restart the cluster specify component vmstorage |
| Restart |
PASSED |
Restart the cluster specify component vmselect,vminsert |
| Update |
PASSED |
Update the cluster Monitor enable |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component vmstorage |
| VerticalScaling |
PASSED |
VerticalScaling the cluster specify component vmselect,vminsert |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component vmstorage |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component vmstorage |
| HorizontalScaling In |
PASSED |
HorizontalScaling In the cluster specify component vmselect,vminsert |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component vmstorage |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component vmselect,vminsert |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
- |
Not implemented or unsupported |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Weaviate ( Topology = )
| Engine |
Feature |
Operation |
State |
Description |
| Weaviate ( Topology = ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified component definition weaviate-1.0.1 and component version weaviate and service version 1.19.6 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster Monitor enable |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
- |
Not implemented or unsupported |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component weaviate |
| HorizontalScaling In |
- |
Not implemented or unsupported |
| HorizontalScaling Out |
PASSED |
HorizontalScaling Out the cluster specify component weaviate |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Yashandb ( Topology = )
| Engine |
Feature |
Operation |
State |
Description |
| Yashandb ( Topology = ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified component definition yashandb-1.0.1 and component version yashandb and service version 23.1.1-100 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component yashandb |
| VolumeExpansion |
- |
Not implemented or unsupported |
| HorizontalScaling In |
- |
Not implemented or unsupported |
| HorizontalScaling Out |
- |
Not implemented or unsupported |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Zookeeper ( Topology = clustermode ; Replicas = 3 )
| Engine |
Feature |
Operation |
State |
Description |
| Zookeeper ( Topology = clustermode ; Replicas = 3 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology clustermode with the specified component definition zookeeper-1.0.2 and component version zookeeper and service version 3.8.4 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component zookeeper |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component zookeeper and volume data |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component zookeeper and volume snapshot-log |
| HorizontalScaling In |
- |
Not implemented or unsupported |
| HorizontalScaling Out |
- |
Not implemented or unsupported |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Zookeeper 3.4.14 ( Topology = clustermode ; Replicas = 3 )
| Engine |
Feature |
Operation |
State |
Description |
| Zookeeper 3.4.14 ( Topology = clustermode ; Replicas = 3 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology clustermode with the specified component definition zookeeper-1.0.2 and component version zookeeper and service version 3.4.14 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component zookeeper |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component zookeeper and volume snapshot-log |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component zookeeper and volume data |
| HorizontalScaling In |
- |
Not implemented or unsupported |
| HorizontalScaling Out |
- |
Not implemented or unsupported |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Zookeeper 3.6.4 ( Topology = clustermode ; Replicas = 3 )
| Engine |
Feature |
Operation |
State |
Description |
| Zookeeper 3.6.4 ( Topology = clustermode ; Replicas = 3 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology clustermode with the specified component definition zookeeper-1.0.2 and component version zookeeper and service version 3.6.4 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component zookeeper |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component zookeeper and volume data |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component zookeeper and volume snapshot-log |
| HorizontalScaling In |
- |
Not implemented or unsupported |
| HorizontalScaling Out |
- |
Not implemented or unsupported |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Zookeeper 3.7.2 ( Topology = clustermode ; Replicas = 3 )
| Engine |
Feature |
Operation |
State |
Description |
| Zookeeper 3.7.2 ( Topology = clustermode ; Replicas = 3 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology clustermode with the specified component definition zookeeper-1.0.2 and component version zookeeper and service version 3.7.2 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component zookeeper |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component zookeeper and volume snapshot-log |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component zookeeper and volume data |
| HorizontalScaling In |
- |
Not implemented or unsupported |
| HorizontalScaling Out |
- |
Not implemented or unsupported |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Zookeeper 3.8.4 ( Topology = clustermode ; Replicas = 3 )
| Engine |
Feature |
Operation |
State |
Description |
| Zookeeper 3.8.4 ( Topology = clustermode ; Replicas = 3 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology clustermode with the specified component definition zookeeper-1.0.2 and component version zookeeper and service version 3.8.4 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component zookeeper |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component zookeeper and volume data |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component zookeeper and volume snapshot-log |
| HorizontalScaling In |
- |
Not implemented or unsupported |
| HorizontalScaling Out |
- |
Not implemented or unsupported |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |
Zookeeper 3.9.4 ( Topology = clustermode ; Replicas = 3 )
| Engine |
Feature |
Operation |
State |
Description |
| Zookeeper 3.9.4 ( Topology = clustermode ; Replicas = 3 ) |
Lifecycle |
Create |
PASSED |
Create a cluster with the specified topology clustermode with the specified component definition zookeeper-1.0.2 and component version zookeeper and service version 3.9.4 |
| Start |
PASSED |
Start the cluster |
| Stop |
PASSED |
Stop the cluster |
| Restart |
PASSED |
Restart the cluster |
| Update |
PASSED |
Update the cluster TerminationPolicy WipeOut |
| Scale |
VerticalScaling |
PASSED |
VerticalScaling the cluster specify component zookeeper |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component zookeeper and volume data |
| VolumeExpansion |
PASSED |
VolumeExpansion the cluster specify component zookeeper and volume snapshot-log |
| HorizontalScaling In |
- |
Not implemented or unsupported |
| HorizontalScaling Out |
- |
Not implemented or unsupported |
| HscaleOfflineInstances |
- |
Not implemented or unsupported |
| HscaleOnlineInstances |
- |
Not implemented or unsupported |
| RebuildInstance |
- |
Not implemented or unsupported |
| SwitchOver |
Promote |
- |
Not implemented or unsupported |
| SwitchOver |
- |
Not implemented or unsupported |
| Backup Restore |
Backup |
- |
Not implemented or unsupported |
| Restore |
- |
Not implemented or unsupported |
| Create Backuprepo |
- |
Not implemented or unsupported |
| Delete Restore Cluster |
- |
Not implemented or unsupported |
| Restore Increment |
- |
Not implemented or unsupported |
| Monitor |
Check Monitor |
- |
Not implemented or unsupported |
| Logs |
- |
Not implemented or unsupported |
| Parameter |
Reconfiguring |
- |
Not implemented or unsupported |
| Accessibility |
Expose |
- |
Not implemented or unsupported |
| Connect |
PASSED |
Connect to the cluster |
| Connect |
PASSED |
Connect to the cluster |
| Check Consistent |
- |
Not implemented or unsupported |
| Stress |
Bench |
- |
Not implemented or unsupported |
| Tpch |
- |
Not implemented or unsupported |