forked from vantage-sh/ec2instances.info
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rds.py
239 lines (199 loc) · 10.5 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
#!/usr/bin/env python
import requests
import json
from json import encoder
import sys
import six
import ec2
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 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']
try:
region = regions[location]
except KeyError as e:
if location == 'Any':
region = 'us-east-1'
else:
print(f"ERROR: No region data for location={location}. Ignoring instance with sku={sku}, type={instance_type}")
continue
# set the attributes in line with the ec2 index
attributes['region'] = region
attributes['memory'] = attributes['memory'].split(' ')[0]
attributes['network_performance'] = attributes['networkPerformance']
attributes['family'] = attributes['instanceFamily']
attributes['instance_type'] = instance_type
attributes['database_engine'] = attributes['databaseEngine']
attributes['arch'] = attributes['processorArchitecture']
attributes['pricing'] = {}
attributes['pricing'][region] = {}
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']
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"ERROR: 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']] = {}
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'])
}
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"ERROR: 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 instance['pricing'][region][instance['database_engine']]:
instance['pricing'][region][instance['database_engine']]['reserved'] = {}
if 'reserved' not in instance['pricing'][region][instance['engineCode']]:
instance['pricing'][region][instance['engineCode']]['reserved'] = {}
# store the pricing in placeholder field
reserved_type = "%s %s" % (offer['termAttributes']['LeaseContractLength'], offer['termAttributes']['PurchaseOption'])
instance['pricing'][region][instance['database_engine']]['reserved']['%s-%s' % (reserved_mapping[reserved_type], dimension['unit'].lower())] = float(dimension['pricePerUnit']['USD'])
instance['pricing'][region][instance['engineCode']]['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 = {
'yrTerm3.partialUpfront': (prices['reserved']['yrTerm3.partialUpfront-quantity'] / (365 * 3) / 24) + prices['reserved']['yrTerm3.partialUpfront-hrs'],
'yrTerm1.partialUpfront': (prices['reserved']['yrTerm1.partialUpfront-quantity'] / 365 / 24) + prices['reserved']['yrTerm1.partialUpfront-hrs'],
'yrTerm3.allUpfront': (prices['reserved']['yrTerm3.allUpfront-quantity'] / (365 * 3) / 24) + prices['reserved']['yrTerm3.allUpfront-hrs'],
'yrTerm1.allUpfront': (prices['reserved']['yrTerm1.allUpfront-quantity'] / 365 / 24) + prices['reserved']['yrTerm1.allUpfront-hrs'],
'yrTerm1.noUpfront': prices['reserved']['yrTerm1.noUpfront-hrs'],
}
if 'yrTerm3.noUpfront-hrs' in prices['reserved']:
reserved_prices['yrTerm3.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))
# print json.dumps(instances['db.m3.medium']['pricing']['eu-west-1']['MySQL'], indent=4)
add_pretty_names(instances)
# write output to file
encoder.FLOAT_REPR = lambda o: format(o, '.5f')
with open(output_file, 'w') as outfile:
json.dump(list(instances.values()), outfile, indent=4)
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)