Questions tagged [cost-management]

Use this tag for questions related to budgeting, cost analysis, cost management or cost calculation in any of various programming-related contexts, especially resource management and on-demand cloud computing.

Overview

  • Use this tag for questions related to budgeting, cost analysis, cost management or cost calculation in any of various programming-related contexts, especially resource management and on-demand cloud computing.

See also

211 questions
2
votes
1 answer

cost to update dictionary in dynamodb?

I am wondering if I have a field in my DynamoDB that has a dictionary of size 1KB, and I update one of the key-value pairs in my dictionary by iterating a number forward by '1', will amazon charge me for the 8 bytes it takes to write an integer, or…
user1709076
  • 2,538
  • 9
  • 38
  • 59
2
votes
1 answer

s3cmd ls and sync command cost

When i use command to see a folder's contents s3cmd ls s3://mybucket/my_big_folder/ Assume my folder contains 10000 files. How many LIST ops it will be? Only one or 10000 ops? And the second question: how many ops will produce the "sync" command…
Riki_tiki_tavi
  • 827
  • 8
  • 15
1
vote
2 answers

Does having athena query result have an impact to performance of services that uses it?

I know that athena store every query results in the bucket and query data will just accumulate over time. I want to know whether retaining previous query results in S3 would make an impact to performance of my queries. For background, I have AWS…
1
vote
2 answers

How can I keep track of the expenses of each program separately when calling the same OpenAI GPT model deployed in an Azure instance?

I have an OpenAI GPT model deployed in an instance belonging to a resource in my Azure subscription. I have two programs that use this OpenAI GPT model. How can I keep track of the expenses of each program separately? Example: I deployed the OpenAI…
1
vote
0 answers

Uploaded to GCS through FirebaseSDK, but not reflected as a Class A operation

I uploaded an object to GCS through FirebaseSDK, but when I look at the rates on the GCP side, it is not reflected as the number of Class A operations. The bucket information is set as default bucket if us multi-region, standard class, Firebase…
1
vote
1 answer

To find underutilized instances list based on CPU and network utilization

I would like to get all the AWS EC2 instances list which are idle and underutilized. I need to filter them based on CPU utilization used less than 2% and network I/O less than 5Mb for last 30 days. Can you please provide me with the commands or any…
1
vote
1 answer

Cost management question Azure Disk storage cost

I am new to Azure Disk storage management Is Azure Disk the same as the Azure Blob has the cold, hot option? Also because I have so many virtual machines, every virtual machine has attached a disk like Ultra disk Premium SSD v2 Premium SSD…
1
vote
1 answer

Azure Management group does not have any valid subscriptions

In an attempt to view the cost analysis at the Management group level, I am receiving the following error message: Management group LandingZone does not have any valid subscriptions. (Request ID: 3867f325-14c1-4181-bc25-0299516c0b25) It has the…
One Developer
  • 99
  • 5
  • 43
  • 103
1
vote
1 answer

Azure Resource Graph Explorer :: query Cost Management API

I have a Kusto query that can help me list a few resources: ResourceContainers | where type=='microsoft.resources/subscriptions/resourcegroups' | project name, type | limit 5 | union (Resources | project name, type | limit 5) I would like to add…
1
vote
1 answer

How to effectively monitor HPA stats for Kubernetes PODs

Currently we have a set of microservice hosted on kubernetes cluster. We are setting hpa values based on rough estimates. I am planning to monitor horizontal pod autoscaling behavior using grafana to ensure we are not over/under allocating the…
1
vote
2 answers

Power BI :: How to join 2 tables with 1 column to multiple columns

GOAL: I want to forecast if Azure Reserved Instances are the right choice for us. HOW TO DO IT: I have downloaded the whole Azure Price REST API through this Python script. I have imported that CSV in an Azure SQL Database I want to compare each…
Francesco Mantovani
  • 10,216
  • 13
  • 73
  • 113
1
vote
1 answer

Costs Databricks Delta Live Tables

Will a Databricks Delta Live Table generate costs regardless of finding data to load? And would a solution in that case be to set the job to disabled if you know new data is not filling the source for a while?
1
vote
1 answer

how to set budget for each model training session and then to pause the model training if the budget is crossed?

is it possible to control the budget for each training session in azure ML. Lets say I am training a model and before starting the run, I want to set a budget of X dollars. and if it crosses, then my model training should pause unless I increase the…
1
vote
1 answer

Diagnosing Root Cause of Increasing AWS Cloudwatch Costs

Over the past few months our Cloudwatch costs have steadily risen. This seems to be caused by metric updates. RUM was enabled for a short time but has been disabled for about 2 months now. This is not a high traffic account only currently being used…
1
vote
1 answer

How to calculate costs in Multi-Tenant architecture?

I'm sure I'm not the first hitting this problem but I haven't found any useful question/answer on StackOverflow. I've started working in a company that proposes a SaaS solution which uses App Service and Azure SQL Database. The architecture…