You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/en/cloud/manage/jan2025_faq/plan_migrations.md
+11-3Lines changed: 11 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -71,20 +71,28 @@ Migrations of Development and Production services to the new pricing tiers may t
71
71
72
72
API access patterns will be different.
73
73
74
-
Users that use our OpenAPI to create new services will be required to remove the `tier` field and specify the `numReplicas` one in the service creation POST request.
74
+
Users that use our OpenAPI to create new services will be required to remove the `tier` field in the service creation `POST` request.
75
75
76
76
The `tier` field has been removed from the service object as there is no more distinction between Development and Production services.
77
77
This will affect the objects returned by the `POST`, `GET`, and `PATCH` service requests. Therefore, any code that consumes these APIs may need to be adjusted to handle these changes.
78
78
79
+
The number of replicas each service will be created with defaults to 3 for the Scale and Enterprise tiers, while it defaults to 1 for the Basic tier.
80
+
For the Scale and the Enterprise tiers it is possible to adjust it by passing a `numReplicas` field in the service creation request.
81
+
The value of the `numReplicas` field must be between 2 and 20 for the first service in a warehouse. Services that are created in an existing warehouse can have a number of replicas as low as 1.
82
+
79
83
### What changes should the users make if using the existing Terraform provider for automation?
80
84
81
85
Once an organization has been migrated to one of the new plans, users will be required to use our Terraform provider version 2.0.0 or above.
82
86
83
-
The new Terraform provider is required to handle changes in the `tie` attribute of the service.
87
+
The new Terraform provider is required to handle changes in the `tier` attribute of the service.
84
88
85
89
After the migration, the `tier` field is no longer accepted, and references to it should be removed.
86
90
87
-
Users will also be asked to specify the `num_replicas` field as a property of the service resource.
91
+
Users will also be able to specify the `num_replicas` field as a property of the service resource.
92
+
93
+
The number of replicas each service will be created with defaults to 3 for the Scale and Enterprise tiers, while it defaults to 1 for the Basic tier.
94
+
For the Scale and the Enterprise tiers, it is possible to adjust it by passing a `numReplicas` field in the service creation request.
95
+
The value of the `num_replicas` filed must be between 2 and 20 for the first service in a warehouse. Services that are created in an existing warehouse can have a number of replicas as low as 1.
88
96
89
97
### Will users have to make any changes to the database access?
0 commit comments