jolly-hydrogen-68912
11/03/2023, 10:59 AMdocker-compose pull
and updated the db to make sure I have the latest). Am I doing something wrong?
ββ PROVISIONED 730 hours $0.00
ββ Put request unit Monthly cost depends on usage: $0.00 per units
ββ Extended retention (24H to 7D) Monthly cost depends on usage: $0.00 per GB
ββ Long term retention (7D+) Monthly cost depends on usage: $0.00 per GB
ββ Extended retention retrieval (7D+) Monthly cost depends on usage: $0.00 per GB
ββ Enhanced Fan Out (EFO) Data retrieval Monthly cost depends on usage: $0.00 per GB
ββ Enhanced Fan Out (EFO) Monthly cost depends on usage: $0.00 per consumer-shard hour
Storage-ShardHour
(as an example for 1 attribute). I am checking the pricing data in Postgres, and itβs only called that in us-east-1
. In other regions, there is a prefix, e.g. EUC1-Storage-ShardHour
. I wonder if the filter is doing a full match or a partial match...UPDATE products
SET attributes = JSONB_SET(attributes, '{usagetype}', '"Storage-ShardHour"', false)
WHERE attributes->>'usagetype' = 'EUC1-Storage-ShardHour';
I can confirm that after this change, the shard-hour cost changed from $0 to the correct value. Will submit an issue on GitHub.crooked-daybreak-55253
11/07/2023, 12:05 PM