I am working on an app where there is 1M hits every day.I want to use google drive as database .Can google drive bare this much traffic??
How many hits can google drive bare if i use it as cloud database?
67 Views Asked by Rafay rao At
1
There are 1 best solutions below
Related Questions in DATABASE
- How to add the dynamic new rows from my registration form in my database?
- How to store a date/time in sqlite (or something similar to a date)
- Problem with add new attribute in table with BOTO3 on python
- When an E-R attribute should be perceived as a relationship attribute or as an entity set attribute?
- SQLAlchemy: efficient relationship loading in 3-way many-to-many relationship
- Cannot connect to Postgres Database when running Quarkus Tests with Gitlab ci
- Local or remote database with react-native?
- I want to edit a specific row in database
- How to enter data in mongodb array at specific position such that if there is only 2 data in array and I want to insert at 5, then rest data is null
- Open Web Library
- database login.py and register.py error showing 404 file not found and doesn't work
- SQL71561: SqlComputedColumn: When column selected
- Liquibase as SaaS To Configure Multiple Database as Dynamic
- Updated max input vars but table still shows error
- Spring does not map set of roles
Related Questions in GOOGLE-DRIVE-API
- Can you use the Drive API to share a file in Google Drive to an oath2 subject rather than email address?
- Write R pin to Google Drive without authentication
- Google Drive Service Account gets googleapiclient.errors.HttpError: 401 "Request is missing required authentication credential" when authenticating
- How to set expiry dates for Google Drive
- Trying to fetch images from a Google Drive folder
- How to programmatically zip/download google drive folder?
- google drive file missing
- Trigger Warning: Mysterious Memory Spike on Google Drive Upload using Google Cloud Run
- can replace file in google drive by c#?
- Images stored on google drive are not loading on a website hosted on heroku
- FileNotFoundError while trying to load dataset from drive
- Search in GDrive only the first 5 topics
- Issue with Google Drive API Integration: Unexpected HTML Response from Backend in Production Environment
- Can Google Drive act as a DB for Mobile App?
- java.lang.NoSuchMethodError: 'boolean com.google.api.client.http.HttpTransport.isMtls()'
Related Questions in GOOGLE-DRIVE-ANDROID-API
- Download file using Google drive api v3 in java
- How do I upload image file to google drive from android
- Can I use Google drive as database for my Android app
- How to upload database to google gmail
- How do I set up a Google Drive backup?
- I am trying to add files to google drive using kotlin in cororutines but getting error that main thread will be blocked even if i am using coroutine
- How to hardcode a Google Account in Android?
- Android open browser instead of drive app
- GAS - upload file to drive with version
- Using Google Drive API with One-Tap Sign-In on Android
- Google One Tap sign-in to control Drive
- How to modify a file on the google drive from multiple android devices?
- Folder moving events in google drive
- How to upload and download files from Google Drive (using Rest Api v3)
- Unable to get GoogleSignInAccount class methods and attributes correctly
Related Questions in GOOGLE-DRIVE-REALTIME-API
- Where do I find the file uploaded to Google drive?
- how to prevent users from moving the shapes on google sheet or change the assigned macro for the
- Get notification when new file is added to google drive folder along with file details like location/file url
- Failed to get the driveId in the callback of the google picker in shared drive
- Google Drive Audio Repo URL for JS
- I am not able to give permission to created folder in google drive using google drive APIs
- incremental pull from google drive using python
- PDF Realtime down load and conversion
- Update polyline route with user's live location flutter
- How many hits can google drive bare if i use it as cloud database?
- Refused to Connect Error while inserting Google Drive Link in HTML Services of Google API Script
- Can we retrieve data back from Google Drive API in Android?
- Google Drive Api - Error after copying multiple files .NET - Cancel connection by remote host
- Google Drive Api (.Net) return error after multiple folder creation
- Privacy in Google Cloud Platform vs Cloudkit
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I strongly discourage using Drive as a database. Since that behaviour isn't its aim, it may create a noticeable bottleneck in your project. I recommend using Cloud SQL as an alternative. Nevertheless, these are the Drive API quota limits extracted from
Google Cloud Platform ⮞ Navigation menu ⮞ IAM & Admin ⮞ Quotas:If you really want to use Drive as a database, you must keep in mind those usage limits. I'll take for granted that you need to read a different row from the database per each hit, so no cache is involved here. In that scenario, assuming ideal user distribution, the project would cap at 8,640,000 daily hits (expecting ten different concurrent accounts to interact with the database in order to provide the data).