-
Notifications
You must be signed in to change notification settings - Fork 585
/
rds.py
397 lines (341 loc) · 16 KB
/
rds.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
#!/usr/bin/env python
import requests
import json
from json import encoder
import sys
import six
import os
import ec2
import locale
import re
from lxml import etree
from six.moves.urllib import request as urllib2
locale.setlocale(locale.LC_ALL, "en_US.UTF-8")
def add_pretty_names(instances):
family_names = {
"t2": "T2 General Purpose",
"r3": "R3 Memory Optimized",
"r4": "R4 Memory Optimized",
"c3": "C3 High-CPU",
"c4": "C4 High-CPU",
"m3": "M3 General Purpose",
"i3": "I3 High I/O",
"cg1": "Cluster GPU",
"cc2": "Cluster Compute",
"cr1": "High Memory Cluster",
"hs1": "High Storage",
"c1": "C1 High-CPU",
"hi1": "HI1. High I/O",
"m2": "M2 High Memory",
"m1": "M1 General Purpose",
"m4": "M4 General Purpose",
}
for k in instances:
i = instances[k]
# instance type format looks like "db.r4.large"; dropping the "db" prefix
pieces = i["instance_type"].split(".")
family = pieces[1]
short = pieces[2]
prefix = family_names.get(family, family.upper())
extra = None
if short.startswith("8x"):
extra = "Eight"
elif short.startswith("4x"):
extra = "Quadruple"
elif short.startswith("2x"):
extra = "Double"
elif short.startswith("10x"):
extra = "Deca"
elif short.startswith("x"):
extra = ""
bits = [prefix]
if extra is not None:
bits.extend([extra, "Extra"])
short = "Large"
bits.append(short.capitalize())
i["pretty_name"] = " ".join([b for b in bits if b])
def sanitize_instance_type(instance_type):
"""Typos and other bad data are common in the instance type colums for some reason"""
# Remove random whitespace
instance_type = re.sub(r"\s+", "", instance_type, flags=re.UNICODE)
# Correct typos
typo_corrections = {
"x1.16large": "x1.16xlarge", # https://github.com/powdahound/ec2instances.info/issues/199
"i3.4xlxarge": "i3.4xlarge", # https://github.com/powdahound/ec2instances.info/issues/227
"i3.16large": "i3.16xlarge", # https://github.com/powdahound/ec2instances.info/issues/227
"p4d.2xlarge": "p4d.24xlarge", # as of 2020-11-15
}
return typo_corrections.get(instance_type, instance_type)
def totext(elt):
s = etree.tostring(elt, method="text", encoding="unicode").strip()
return re.sub(r"\*\d$", "", s)
def add_ebs_info(instances):
by_type = {k: v for k, v in instances.items()}
ec2_instances = ec2.get_instances()
for i in ec2_instances:
instance_type = "db." + i.instance_type
if instance_type in by_type:
by_type[instance_type]["ebs_optimized"] = i.ebs_optimized
by_type[instance_type]["ebs_baseline_throughput"] = i.ebs_baseline_throughput
by_type[instance_type]["ebs_baseline_iops"] = i.ebs_baseline_iops
by_type[instance_type]["ebs_baseline_bandwidth"] = i.ebs_baseline_bandwidth
by_type[instance_type]["ebs_throughput"] = i.ebs_throughput
by_type[instance_type]["ebs_iops"] = i.ebs_iops
by_type[instance_type]["ebs_max_bandwidth"] = i.ebs_max_bandwidth
def scrape(output_file, input_file=None):
# if an argument is given, use that as the path for the json file
if input_file:
with open(input_file) as json_data:
data = json.load(json_data)
else:
price_index = "https://pricing.us-east-1.amazonaws.com/offers/v1.0/aws/AmazonRDS/current/index.json"
index = requests.get(price_index)
data = index.json()
rds_instances = {}
instances = {}
# region mapping, someone thought it was handy not to include the region id's :(
regions = ec2.get_region_descriptions()
# loop through products, and only fetch available instances for now
for sku, product in six.iteritems(data["products"]):
if product.get("productFamily", None) == "Database Instance":
attributes = product["attributes"]
# skip multi-az
if attributes["deploymentOption"] != "Single-AZ":
continue
# map the region
location = ec2.canonicalize_location(attributes["location"])
instance_type = attributes["instanceType"]
if location == "Any":
region = "us-east-1"
elif location == "Asia Pacific (Osaka-Local)":
# at one point this region was local but was upgraded to a standard region
# however some SKUs still reference the old region
region = "ap-northeast-3"
regions[location] = region
elif location not in regions.values():
region = attributes["regionCode"]
regions[location] = region
else:
region = regions[location]
# set the attributes in line with the ec2 index
attributes["region"] = region
attributes["memory"] = attributes["memory"].split(" ")[0]
attributes["network_performance"] = attributes.get(
"networkPerformance", None
)
attributes["family"] = attributes["instanceFamily"]
attributes["instance_type"] = instance_type
attributes["database_engine"] = attributes["databaseEngine"]
attributes["arch"] = attributes.get("processorArchitecture", None)
attributes["pricing"] = {}
attributes["pricing"][region] = {}
if attributes.get("engineCode", None) == None:
print(
f"WARNING: No Engine Code found. Ignoring instance with sku={sku}, instance={instance_type}"
)
continue
if attributes["engineCode"] not in ["210", "220"]:
rds_instances[sku] = attributes
if instance_type not in instances.keys():
# delete some attributes that are inconsistent among skus
new_attributes = (
attributes.copy()
) # make copy so we can keep these attributes with the sku
new_attributes.pop("databaseEdition", None)
new_attributes.pop("databaseEngine", None)
new_attributes.pop("database_engine", None)
new_attributes.pop("deploymentOption", None)
new_attributes.pop("engineCode", None)
new_attributes.pop("licenseModel", None)
new_attributes.pop("location", None)
new_attributes.pop("locationType", None)
new_attributes.pop("operation", None)
new_attributes.pop("region", None)
new_attributes.pop("usagetype", None)
new_attributes["pricing"] = attributes["pricing"]
new_attributes["regions"] = {}
instances[instance_type] = new_attributes
# Parse ondemand pricing
for sku, offers in six.iteritems(data["terms"]["OnDemand"]):
for code, offer in six.iteritems(offers):
for key, dimension in six.iteritems(offer["priceDimensions"]):
# skip these for now
if any(
descr in dimension["description"].lower()
for descr in [
"transfer",
"global",
"storage",
"iops",
"requests",
"multi-az",
]
):
continue
instance = rds_instances.get(sku)
if not instance:
# print(f"WARNING: Received on demand pricing info for unknown sku={sku}")
continue
if (
instance["region"]
not in instances[instance["instance_type"]]["pricing"]
):
instances[instance["instance_type"]]["pricing"][
instance["region"]
] = {}
if instance["storage"] == "Aurora IO Optimization Mode":
instances[instance["instance_type"]]["pricing"][instance["region"]][
"211"
] = {"ondemand": float(dimension["pricePerUnit"]["USD"])}
else:
instances[instance["instance_type"]]["pricing"][instance["region"]][
instance["engineCode"]
] = {"ondemand": float(dimension["pricePerUnit"]["USD"])}
# keep this for backwards compatibility, even though it's wrong
# (database_engine is not unique, so multiple offerings overlap)
instances[instance["instance_type"]]["pricing"][instance["region"]][
instance["database_engine"]
] = {"ondemand": float(dimension["pricePerUnit"]["USD"])}
# build the list of regions where each instance is available
# we have to do a reverse lookup from the regions list
l = ""
for l, r in regions.items():
if instance["region"] == r:
location = l
break
instances[instance["instance_type"]]["regions"][instance["region"]] = l
reserved_mapping = {
"3yr Partial Upfront": "yrTerm3.partialUpfront",
"1yr Partial Upfront": "yrTerm1.partialUpfront",
"3yr All Upfront": "yrTerm3.allUpfront",
"1yr All Upfront": "yrTerm1.allUpfront",
"1yr No Upfront": "yrTerm1.noUpfront",
"3yr No Upfront": "yrTerm3.noUpfront",
}
# Parse reserved pricing
for sku, offers in six.iteritems(data["terms"]["Reserved"]):
for code, offer in six.iteritems(offers):
for key, dimension in six.iteritems(offer["priceDimensions"]):
instance = rds_instances.get(sku)
if not instance:
# print(f"WARNING: Received reserved pricing info for unknown sku={sku}")
continue
# skip multi-az
if instance["deploymentOption"] != "Single-AZ":
continue
region = instance["region"]
# create a regional hash
if region not in instance["pricing"]:
instance["pricing"][region] = {}
# create a database_engine hash
if instance["database_engine"] not in instance["pricing"][region]:
instance["pricing"][region][instance["database_engine"]] = {}
if instance["engineCode"] not in instance["pricing"][region]:
instance["pricing"][region][instance["engineCode"]] = {}
# create a reserved hash
if (
"reserved"
not in instances[instance["instance_type"]]["pricing"][
instance["region"]
][instance["database_engine"]]
):
instances[instance["instance_type"]]["pricing"][instance["region"]][
instance["database_engine"]
]["reserved"] = {}
if (
"reserved"
not in instances[instance["instance_type"]]["pricing"][
instance["region"]
][instance["engineCode"]]
):
instances[instance["instance_type"]]["pricing"][instance["region"]][
instance["engineCode"]
]["reserved"] = {}
reserved_type = "%s %s" % (
offer["termAttributes"]["LeaseContractLength"],
offer["termAttributes"]["PurchaseOption"],
)
instances[instance["instance_type"]]["pricing"][instance["region"]][
instance["engineCode"]
]["reserved"][
"%s-%s"
% (reserved_mapping[reserved_type], dimension["unit"].lower())
] = float(
dimension["pricePerUnit"]["USD"]
)
instances[instance["instance_type"]]["pricing"][instance["region"]][
instance["database_engine"]
]["reserved"][
"%s-%s"
% (reserved_mapping[reserved_type], dimension["unit"].lower())
] = float(
dimension["pricePerUnit"]["USD"]
)
# Calculate all reserved effective pricings (upfront hourly + hourly price)
for instance_type, instance in six.iteritems(instances):
for region, pricing in six.iteritems(instance["pricing"]):
for engine, prices in six.iteritems(pricing):
if "reserved" not in prices:
continue
try:
# no multi-az here
reserved_prices = {}
if "yrTerm3.partialUpfront-quantity" in prices["reserved"]:
reserved_prices["yrTerm3Standard.partialUpfront"] = (
prices["reserved"]["yrTerm3.partialUpfront-quantity"]
/ (365 * 3)
/ 24
) + prices["reserved"]["yrTerm3.partialUpfront-hrs"]
if "yrTerm1.partialUpfront-quantity" in prices["reserved"]:
reserved_prices["yrTerm1Standard.partialUpfront"] = (
prices["reserved"]["yrTerm1.partialUpfront-quantity"]
/ 365
/ 24
) + prices["reserved"]["yrTerm1.partialUpfront-hrs"]
if "yrTerm3.allUpfront-quantity" in prices["reserved"]:
reserved_prices["yrTerm3Standard.allUpfront"] = (
prices["reserved"]["yrTerm3.allUpfront-quantity"]
/ (365 * 3)
/ 24
) + prices["reserved"]["yrTerm3.allUpfront-hrs"]
if "yrTerm1.allUpfront-quantity" in prices["reserved"]:
reserved_prices["yrTerm1Standard.allUpfront"] = (
prices["reserved"]["yrTerm1.allUpfront-quantity"] / 365 / 24
) + prices["reserved"]["yrTerm1.allUpfront-hrs"]
if "yrTerm1.noUpfront-hrs" in prices["reserved"]:
reserved_prices["yrTerm1Standard.noUpfront"] = prices[
"reserved"
]["yrTerm1.noUpfront-hrs"]
if "yrTerm3.noUpfront-hrs" in prices["reserved"]:
reserved_prices["yrTerm3Standard.noUpfront"] = prices[
"reserved"
]["yrTerm3.noUpfront-hrs"]
instances[instance_type]["pricing"][region][engine][
"reserved"
] = reserved_prices
except Exception as e:
print(
"ERROR: Trouble generating RDS reserved price for {}: {!r}".format(
instance_type, e
)
)
add_pretty_names(instances)
for i, v in instances.items():
v["ebs_baseline_bandwidth"] = 0
v["ebs_baseline_throughput"] = 0
v["ebs_baseline_iops"] = 0
v["ebs_max_bandwidth"] = 0
v["ebs_throughput"] = 0
v["ebs_iops"] = 0
add_ebs_info(instances)
# write output to file
encoder.FLOAT_REPR = lambda o: format(o, ".5f")
os.makedirs(os.path.dirname(output_file), exist_ok=True)
with open(output_file, "w+") as outfile:
json.dump(list(instances.values()), outfile, indent=1)
if __name__ == "__main__":
input_file = None
if len(sys.argv) > 1:
input_file = sys.argv[1]
output_file = "./www/rds/instances.json"
scrape(output_file, input_file)