Closed. This question is not about programming or software development. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 4 days ago.
Improve this question
If I were to activate Pub/Sub as a trigger once a day everyday using Cloud Scheduler, is it safe to assume that the cost for this is zero (no charges)?
To elaborate on the bigger picture, I am trying to use Pub/Sub as the trigger to get Cloud Functions to issue a query to BigQuery to send daily notifications to Slack.
Wanted to get an idea of how much this entire process would cost, and the costs of Cloud Functions and BigQuery were pretty straightforward, but I am having trouble understanding the pricing plan of Pub/Sub.
Related
Closed. This question is not about programming or software development. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 4 months ago.
Improve this question
We have an integration setup to send airflow metrics to Datadog. I want to supress those metrics at the destination (Datadog) end inorder to save money. The metrics that I want to filters all have a common word "datagen".
Please suggest how can I achieve this goal.
I cannot limit at the source end as it is managed by another deptt.
The app that sends the logs is residing in kubernetes cluster.
I'm unclear whether you are trying to limit the number of metrics or the number of logs. They are very different things in Datadog.
If you are using the Datadog Agent built in Airflow integration, the metrics collected should be included.
https://docs.datadoghq.com/integrations/airflow/
If the metrics you are collecting are above and beyond those included with the integration, Metrics without limits allows you to control which custom metrics are indexed (charged).
https://docs.datadoghq.com/metrics/metrics-without-limits/
If you are trying to limit logs retained, you would use an exclusion filter in the Indexing section of Logs>Configuration.
https://docs.datadoghq.com/logs/log_configuration/indexes#exclusion-filters
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 1 year ago.
Improve this question
Currently cloud firestore spark or free plan provides 20k writes/day, 50k reads/day, 20k deletes/day.
What will happen if my spark plan of cloud firestore exceeds it's limit and I don't upgrade my plan?
Will my apps start using firestore offline database or will my account/project get disabled?
Any read/write/delete operation will return a 'resource-exhausted' error if you have utilized your free quota for the day. You'll have to wait until it resets.
Quotas are applied daily and reset around midnight Pacific time.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 4 years ago.
Improve this question
I`m considering FCM to push message and have a fairly large user base, 1-2 million users using in a week. I have the following queries on the free FCM usage
The number of calls to firebase per day/week/month, is it unlimited in the free FCM usage?
Is there a limit on the concurrent calls I can make to my FCM server account?
Can the data payload exceed 4kb?
Is there a limit on the device groups that can be created?
Firebase Cloud Messaging is indeed free and unlimited. There is no documented limit on the number of calls you can make, although there are measures to protect against abuse.
Not that I know of.
Nope, the maximum message size is 4k.
There is no limit on the number of device groups that can be created (at least as far as I know).
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 6 years ago.
Improve this question
Suppose my Skype integration wants to filter notifications for a user to messages that contain the string "server down". Is this possible?
Per default Skype for Business (=SfB) can only block URL or attachments as written here. Maybe there exist an 3rd party application which can do that, but I do not think so. Reason: The problem here is that SfB can perform peer2peer connections (see more here). That means if you and your workmade are in the same network and no firewall restricts you both and you both perform a chat together, the chat is done between both of you (without a real server connection; for more infos see the official documentation inside the 2nd link). So a 3rd party software (which might sitting on the server) will not capture that kind of information. So what you might need is a client software on every PC. But what about the mobile clients then? So I do not think that such a software exists or would be possible to build.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
I have been asked if "I am" encrypting my data at rest. I was just curious if Parse does so when storing their information on Amazon's AWS servers. I checked out the Privacy section at Parse.com and didn't get an answer. I also tried searching for "data at rest", both here and at the google group, with no success. Thanks in advance!
No. It is encrypted whenever it travels over the wire (HTTPS), but not at rest.
You can encrypt the data and store it as you wish, but Parse does not automatically encrypt data for storage.