Export firebase real-time database collection to Bigquery - firebase

is any way to Export firebase real-time database collection to bigquery?
firestore-bigquery-export#0.1.13 extension option is available for the firestore database.

There is no built-in or pre-built extension that I know of to provide a similar export to BigQuery from the Firebase Realtime Database. It sounds like a reasonable feature request though, so I recommend filing it here.
In the meantime, keep in mind that all Firebase Extensions are open-source, so you can take the code for the firestore-bigquery-export extension and use that to either create your own extension for RTDB, or otherwise set up an export.

Related

How do we sync firebase users into Big Query?

We have been using the firebase extension to stream (and import) our firestore collection data in BigQuery. That works great.
I was looking for a way to do the same for the users in Firebase Authentication. Any way we can do that?
Thank you
There is no Firebase Extension to export users to BigQuery.
But there is an API in the Admin SDKs that allows you to read all users, so if you combine that with the APIs to write data to BigQuery you can build the functionality yourself.

Is it possible to upload data to Cloud Firestore via Powershell with user Authentication?

I can't see much online as to whether it's possible to upload data to Cloud Firestore via Windows Powershell, I know you are able to upload data to the Realtime Database fairly easily, but is this possible for Cloud Firestore?
I need to be able to authenticate a user for upload to follow the database rules and upload rather than using the service account key?
Thanks for any answers or advice you may be able to provide me with.
If you are asking if there is a similar mechanism as the Firebase CLI for reading and writing data to Firestore as there is with Realtime Database, the answer is no, there is no provided tool for that. It currently only provides a mechanism to delete data.
You are certainly free to write your own program using the JavaScript client libraries, which have limited support for Firebase Auth and Firestore on nodejs. You can then invoke your program on the command line. You could also use the REST APIs for both products to write something in any language you want.

data persistence with firebase storage like firestore

Does firebase storage have a built-in capability to automatically persist data offline like firestore, I can't find such feature in documentation.
It does not. You would have to implement that yourself, or find a some sort of library that does what you want.

Firebase for half and SQL for another half

I have built an app using firestore as we are interested in the realtime updates portion of things. However,we are not building a website that has CRM component where a lot of reports will be generated. The contents of that CRM are all new. There is only one report that would need firebase data as well as the new data (you can say 1 report out of 20).
I was thinking of building the CRM backend off mysql DB? Do you recommend to go with this approach or shall I do the CRM in the same firebase/firestore db?
Thanks
If you are looking for a real-time backend database for your CRM, then the Firebase RTDB / Cloud Firestore would be ideal for this. I'm not sure why you'd want to add a mySQL component, unless you are going to create some reports that require complex joins. However, if your data is modelled correctly, this also shouldn't be an issue.
Take a look at this video to get a better understanding: What is a NoSQL Database? How is Cloud Firestore structured? - Get to Know Cloud Firestore Ep.1

How to use Cloud Firestore and Realtime Database in same project

Firebase's documentation has the following paragraph:
Using Cloud Firestore and Realtime Database: You can use both databases within the same Firebase app or project. Both NoSQL databases can store the same types of data and the client libraries work in a similar manner. Keep in mind the differences outlined above if you decide to use both databases in your app.
I can't find any documentation on how to add a Cloud Firestore to an existing project with a Realtime Database, though. I will ultimately upgrade to Cloud Firestore, but would like some time to experiment and learn before I convert the production database.
Does anybody know how to use both databases in the same Firebase project?
When you go to your project in the console and choose the Database product, you should see something like this the first time:
This is a selector that lets you choose to see either Realtime Database or Firestore in your project. You can switch between the two with this selector.
The first time you select Cloud Firestore, it will ask you to configure things. Start in "test mode" to set things up for full read and write without authentication to get started quickly, but of course your should always have rules set up in production.
After you set up Firestore, you should be able to use both client SDKs to access both databases independently.

Resources