I'd like to request additional quota for use with the Google Cloud DLP API. What is the best way to request a quota increase?
Instructions for requesting quota are now at https://cloud.google.com/dlp/limits#quota_increases
Related
What will happen in google analytic SDK if firebase platform is not reachable or giving error responses.
You can test it on an emulator by rerouting the requests to the firebase endpoint to localhost. Or just disabling the internet.
The default behavior is to cache sent events to then send them when the server is available. Here's a good answer, going more in-depth: Does Firebase Analytics Work Offline?
I know about the Auth API quotas from Firebase Docs.
And I want to know what happens when these quotas are exceeded?
Do I get charged more money?
Or does the Auth functionality stop until the limit is over?
In Firebase, if you use the "Free" or "Spark" plan, if you exceed any quota (Not only Auth), the functionality will not work until the limit is over. But if you use the "Pay As You Go" plan, you will get charged more money.
I've a Firebase Function making a request to a Google API https://maps.googleapis.com/maps/api/directions/json which should be allowed on the Spark plan because it's a Google API.
But in the logs it says this:
Billing account not configured. External network is not accessible and
quotas are severely limited. Configure billing account to remove these
restrictions
I found this weird because the Spark plan has this note for Cloud function:
The Spark plan allows outbound network requests only to Google-owned
services. Inbound invocation requests are allowed within the quota.
The question here is: "is this a common issue or am I missing something here?"
Our client is hitting their API call quotas for Analytics and trying to troubleshoot with their Dev team.
How can we help the client access their daily usage number to understand how much they are exceeding their quota?
The Google API console, which apparently has been renamed to "Google Cloud Platform", displays usage information in the API&Services-Section of your project.
Does the AngularFire service use REST under the hood?
If so is there no limits in the hacker plan, because the Firebase page on pricing says:
REST API requests don't count towards your connection limits
?
The AngularFire library uses Firebase's regular JavaScript/Web SDK under the hood. Each client keeps a connection open to Firebase servers, so will count towards the connection limits.
You can easily verify this yourself by creating a minimal AngularFire client and opening it in a few different browsers. After 15-20 minutes you can see the connections showing up in the Analytics tab of your Firebase dashboard.