Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What happens when the beta period for Cloud Firestore ends

I want to save some data in Cloud Firestore and use it as REST API but in the document it says:

All REST API endpoints exist under the base URL https://firestore.googleapis.com/v1beta1/

When Firestore ends the beta version, will it change the base URL to, for example, https://firestore.googleapis.com/stable/.

What happens with my data in the beta version? Can I move all to use only stable version?

like image 667
phamxuanlu Avatar asked Mar 16 '18 04:03

phamxuanlu


1 Answers

Update 01/31/19

Cloud Firestore is no longer in Beta and has graduated to GA: https://cloud.google.com/blog/products/databases/announcing-cloud-firestore-general-availability-and-updates


At the end of the beta period we will release the v1 GA endpoint at https://firestore.googleapis.com/v1/.

Note: Nothing changes in your database, just the endpoint our client libraries use to talk to it. Simply upgrading to the newest client library should be sufficient, or changing the endpoint URL if you use the API directly.

The existing https://firestore.googleapis.com/v1beta1/ endpoint will continue to operate at this time, but will be announced as deprecated with a >= 6 month grace period before it is discontinued.

like image 116
Dan McGrath Avatar answered Oct 13 '22 20:10

Dan McGrath