This question already has an answer here:
Revert from Google Cloud Firestore to Datastore
(1 answer)
Closed 4 years ago.
I have used Firestore before, but since there is a "Beta limits" right now, I want to use Datastore instead of Firestore.
And here is the problem... When I open Datastore in the Google Cloud console, I see this message. Even when I tried to disable Firestore API, it still shows up. Is there any way to use Datastore after creating a Firebase project?
It seems revert from Google Firestore to Datastore is not possible without deleting project or creating a new one.
See this answer by Product Manager at Google.
Related
This question already has answers here:
Firebase BigQuery export - Historical data
(1 answer)
How to get an export of firebase analytics full historic data?
(1 answer)
Closed 2 years ago.
I recently upgraded from sandbox mode to the billing account to keep the data set without expiry.
As some data which linked with Firebase has been already expired, I would like to re-import all the data in Firebase Analytics.
Could anybody provide the guidance to get all the data linked with Firebase ?
I've already unlink the connection between Firebase and Bigquery and re-linked it again. But, it seems not to be working.
This question already has answers here:
Is it safe to expose Firebase apiKey to the public?
(10 answers)
Should I hide firebase api keys into backend? Not due to data security but project cloning issue
(2 answers)
Closed 2 years ago.
I have been messing around with Firebase in a web app and realized there's something I don't understand.
In order for the JS code to send data to the Firebase servers, your apiKey has to be in the JS. But then that means your API key is public, and anyone using your website can inspect the code and just send arbitrary commands to Firebase on your behalf from the dev tools, or from any other site now that they have the API key.
I know I must be missing something, since this would make Firebase not useful. What is it I'm missing? What prevents users from sending arbitrary commands to Firebase with your ApiKey?
is it possible to connect to my MySql Db (Google Cloud SQL) with a Firebase function (Not google cloud function)? I found an old question about that, from a couple of years ago, and at that point it was not possible.. Does anyone know if it is possible now?
This question already has answers here:
With firestore, is it possible to configure offline persistence to set 'off' in a specific document?
(2 answers)
Closed 3 years ago.
I am unable to find details of how Firebase Firestore chooses what to cache locally. The documentation is vague about this. It says that Firestore caches data that the app is actively using.
My requirement is that I need to explicitly set specific collections to be cached locally on the device. Is it possible to do it with Firestore?
My requirement is that I need to explicitly set specific collections to be cached locally on the device.
There is no way you can specify which collection may exist in cache and which not. By default, Firestore caches all data that your application reads. It's all or nothing.
Is it possible to do it with Firestore?
No, it's not.
This question already has answers here:
Delete firebase data older than 2 hours
(5 answers)
Closed 2 years ago.
I want to clear data from Firebase database every 24 hours, but I do not want to do this from code in my project, but from the Firebase.
Do firebase have such functions?
Yes it does. Please use the functions from Cloud Functions for Firebase.
Cloud Functions for Firebase lets you automatically run backend code in response to events triggered by Firebase features and HTTPS requests. Your code is stored in Google's cloud and runs in a managed environment. There's no need to manage and scale your own servers.
Hope it helps.