forked from JonathanBell09/carbonless-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
carbonless.js
221 lines (200 loc) · 7.87 KB
/
carbonless.js
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
'use strict';
const fs = require('fs');
const path = require('path');
class Carbonless {
constructor(serverless, options, { log }) {
this.serverless = serverless;
this.log = log;
this.provider = this.serverless.getProvider('aws');
this.hooks = {
'after:package:initialize': () => this.afterInitialize(),
'deploy:deploy': () => this.deploy(),
};
}
afterInitialize(){
this.addCarbonRouterRole();
this.addCarbonRouterForEachLambda();
}
deploy(){
this.copyLambdasToOtherRegions();
}
addCarbonRouterRole(){
if (typeof this.serverless.service.resources !== 'object') {
this.serverless.service.resources = {};
}
if (typeof this.serverless.service.resources.Resources !== 'object') {
this.serverless.service.resources.Resources = {};
}
this.serverless.service.resources.Resources['CarbonRouterRole'] = {
Type: 'AWS::IAM::Role',
Properties: {
Path: '/',
RoleName: 'CarbonRouterRole',
AssumeRolePolicyDocument: {
Version: '2012-10-17',
Statement: [
{
Effect: 'Allow',
Principal: {
Service: [
'lambda.amazonaws.com',
],
},
Action: 'sts:AssumeRole',
},
],
},
Policies: [
{
PolicyName: 'CarbonRouterPolicy',
PolicyDocument: {
Version: '2012-10-17',
Statement: [
{
Effect: 'Allow',
Action: [
'lambda:GetFunction',
'lambda:InvokeFunction',
],
Resource: '*',
},
],
},
},
],
},
};
}
addCarbonRouterForEachLambda(){
this.serverless.service.getAllFunctions().forEach((functionName) => {
const functionObj = this.serverless.service.getFunction(functionName);
const handlerFolder = path.join(this.serverless.serviceDir, '.carbonless');
this.createCarbonlessRouterFunctionArtifact(functionName, functionObj, handlerFolder);
this.addCarbonlessRouterFunctionToService(functionName, functionObj);
});
}
createCarbonlessRouterFunctionArtifact(functionName, functionObj, handlerFolder) {
const carbonlessRouterFunction = `'use strict';
/** Generated by Serverless Plugin Carbonless **/
module.exports.carbonlessRouter = async (event) => {
const aws = require('aws-sdk');
// Check where function is deployed
const regions = ['us-east-1', 'eu-west-1'];
const awsToAzureRegionsMap = {'us-east-1':'eastus', 'eu-west-1':'westeurope'}
const regionsWithFunction = [];
for (let i=0; i < regions.length; i++){
const lambda = new aws.Lambda({region: regions[i]});
try{
const result = await lambda.getFunction({FunctionName: 'example-serverless-dev-hello'}).promise();
// If doesn't throw error then function is in this region
regionsWithFunction.push(regions[i]);
} catch (err){
// function not in this region
}
}
console.log(\`Regions with function example-serverless-dev-hello are \${regionsWithFunction}\`)
// Check where carbon intensity is lowest
let bestRegion;
let minCarbonIntensity;
for (let i=0; i < regionsWithFunction.length; i++){
try {
const result = await getRegionCarbonIntensity(awsToAzureRegionsMap[regionsWithFunction[i]]);
const carbonIntensity = result[0]['forecastData'][0]['value'];
console.log(\`carbonIntensity in \${regionsWithFunction[i]} is \${carbonIntensity}\`);
if (minCarbonIntensity){
if (carbonIntensity < minCarbonIntensity){
bestRegion = regionsWithFunction[i];
}
} else {
bestRegion = regionsWithFunction[i];
minCarbonIntensity = carbonIntensity;
}
} catch (error){
console.log(error);
}
}
console.log(\`bestRegion is \${bestRegion}\`);
// Invoke function in best region
const lambda = new aws.Lambda({region: bestRegion});
const res = await lambda.invoke({FunctionName: 'example-serverless-dev-hello', Payload: JSON.stringify(event, null, 2)}).promise();
console.log(\`Invoked function example-serverless-dev-hello in region \${bestRegion}\`)
return res;
};
function getRegionCarbonIntensity(region) {
const https = require('https');
const forecastAPI = 'https://carbon-aware-api.azurewebsites.net/emissions/forecasts/current';
const minutes = 10;
const dataEndAt = new Date(Date.now() + minutes*60000).toISOString();
return new Promise((resolve, reject) => {
const req = https.get(forecastAPI + \`?location=\${region}&dataEndAt=\${dataEndAt}\`, (res) => {
let data = '';
res.on('data', chunk => {
data += chunk;
});
res.on('end', () => {
try {
resolve(JSON.parse(data));
} catch (err) {
reject(new Error(err));
}
});
});
req.on('error', err => {
reject(new Error(err));
});
});
}`;
/** Write carbonless router file */
fs.mkdirSync(handlerFolder, { recursive: true });
fs.writeFileSync(path.join(handlerFolder, `${functionName}.js`), carbonlessRouterFunction);
}
addCarbonlessRouterFunctionToService(functionName, functionObj){
const service = this.serverless.service;
service.functions[`${functionName}CarbonlessRouter`] = {
handler: `.carbonless/${functionName}.carbonlessRouter`,
events: functionObj.events,
name: `${functionObj.name}-carbonless-router`,
package: {},
memory: 1024,
timeout: 6,
runtime: 'nodejs14.x',
roleName: 'CarbonRouterRole',
role: 'CarbonRouterRole'
};
service.functions[functionName].events = [];
}
copyLambdasToOtherRegions(){
let functions = this.serverless.service.functions;
Object.values(functions).forEach((functionObj) => {
if(!functionObj.name.includes('-carbonless-router'))
this.copyLambdaToOtherRegions(functionObj);
})
}
copyLambdaToOtherRegions(functionObj){
// Todo get regions dynamically
const regions = ['eu-west-1'];
regions.forEach(async (region) => {
// Todo check if function exists in region
const account = await this.provider.getAccountInfo();
const lambdaExecutionARN = `arn:${account.partition}:iam::${account.accountId}:role/${this.provider.serverless.service.service}-${this.provider.getStage()}-${this.provider.getRegion()}-lambdaRole`;
const data = fs.readFileSync(this.serverless.service.package.artifact);
const params = {
FunctionName: functionObj.name,
Handler: functionObj.handler,
Role: lambdaExecutionARN,
Runtime: functionObj.runtime,
Code: {
ZipFile: data
}
};
this.provider.request(
'Lambda',
'createFunction',
params,
{ region: region }
);
this.log.notice(`Copied Lambda to ${region}`)
});
}
}
module.exports = Carbonless;