Questions tagged [cost-optimization]

7 questions
1
vote
1 answer

Looking for supplier price optimization algorithm

I'm looking for an algorithm for the following problem: I have a set of x distinct components and a set of y supplier for those components. I know the price p(x,y) for each component from each supplier. I also know the shipping cost s(y) for each…
Andibioticum
  • 305
  • 2
  • 10
0
votes
1 answer

Bigquery how do I extract JSON into different columns only when the row is updated on Bigquery

I have a table with a column which stores data in JSON format. How do I extract JSON values into columns only when there's a new entry or an existing row is updated instead of extracting all the rows everytime. Trying to reduce the cost of bigquery…
0
votes
1 answer

How to tag thousands of existing AWS resources?

I am trying to tag 1000+ aws resources in various regions. For new resources to be created, I have implemented Tagging Policy(SCP's). But for existing resources, what approach shall I follow? I have come up with following approach: Use AWS Resource…
0
votes
0 answers

Cost Optimization Problem for ingredients in Python using pulp

Cost Optimization for feed management. importing pulp modeller functionality Simplified Cost Model Python Formulation for the PuLP Modeller from pulp import * import re import numpy as np def get_total_cost(name1, dm, cp, tdn, dm_req, cp_req,…
0
votes
1 answer

How to cost minimize among markets

Hello there and thanks in advance. I have the current problem. I have a dataset that looks like this data <- data.frame (id = 1:3, A = 1:3, B = 1:3) Where: id are products A and B represent the price of every id product on markets A and B,…
fenrir9
  • 38
  • 5
0
votes
1 answer

Use Azure Monitor Metrics to get the average daily compute minutes

in my Azure architecture I would like to scale down a couple of web app services. I would like to use the D1 tear, which has a limited consumption time of 240 min/daily (as you can see in the picture below). My question is: how can I use the Azure…
0
votes
1 answer

How to add a custom node label to task node in EMR

I want to run my spark executors on task nodes only in my AWS EMR cluster and yarn labels are one of the ways to achieve this. I can specify labels during spark-submit. I want to achieve the following Add a custom label during the cluster…