-
Notifications
You must be signed in to change notification settings - Fork 3
/
MongoDB_ShardedClusterConfigUbuntu.template
330 lines (282 loc) · 12.9 KB
/
MongoDB_ShardedClusterConfigUbuntu.template
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
{
"AWSTemplateFormatVersion" : "2010-09-09",
"Description" : "MongoDB Config",
"Parameters" : {
"KeyName" : {
"Description" : "Name of an existing EC2 KeyPair to enable SSH access",
"Type" : "String"
},
"InstanceType" : {
"Type" : "String",
"Default" : "t1.micro",
"AllowedValues" : [ "t1.micro", "m1.small", "m1.medium", "m1.large", "m1.xlarge", "m2.xlarge", "m2.2xlarge", "m2.4xlarge", "c1.xlarge", "cc1.4xlarge" ],
"Description" : "EC2 instance type (e.g. m1.large, m1.xlarge, m2.xlarge)"
},
"VolumeSize" : {
"Description" : "Volume size for each EBS volume",
"Type" : "Number",
"Default" : "10"
},
"SecurityGroupName" : {
"Description" : "MongoDB replica set security group name",
"Type" : "String"
},
"InstanceZone" : {
"Description" : "AvailabilityZone for this instance",
"Type" : "String"
},
"AccessKeyId" : {
"Description" : "Access Key ID",
"Type" : "String"
},
"SecretAccessKey" : {
"Description" : "Secret Access Key for the specified Access Key ID",
"Type" : "String"
},
"ReplicaSetName" : {
"Description" : "Name for the MongoDB replica set",
"Type" : "String"
}
},
"Mappings" : {
"InstanceTypeArch" : {
"t1.micro" : { "Arch" : "64" },
"m1.small" : { "Arch" : "64" },
"m1.medium" : { "Arch" : "64" },
"m1.large" : { "Arch" : "64" },
"m1.xlarge" : { "Arch" : "64" },
"m2.xlarge" : { "Arch" : "64" },
"m2.2xlarge" : { "Arch" : "64" },
"m2.4xlarge" : { "Arch" : "64" },
"c1.medium" : { "Arch" : "64" },
"c1.xlarge" : { "Arch" : "64" },
"cc1.4xlarge" : { "Arch" : "64HVM" }
},
"RegionImageZone" : {
"us-east-1" : { "64" : "ami-9c78c0f5", "64HVM" : "ami-9078c0f9" },
"us-west-2" : { "64" : "ami-7eab224e", "64HVM" : "ami-60ab2250" },
"us-west-1" : { "64" : "ami-bb4f69fe", "64HVM" : "NOT_YET_SUPPORTED" },
"eu-west-1" : { "64" : "ami-3b65664f", "64HVM" : "ami-25656651" },
"ap-southeast-1" : { "64" : "ami-fefcbcac", "64HVM" : "NOT_YET_SUPPORTED" },
"ap-northeast-1" : { "64" : "ami-eca719ed", "64HVM" : "NOT_YET_SUPPORTED" },
"sa-east-1" : { "64" : "ami-b45b82a9", "64HVM" : "NOT_YET_SUPPORTED" }
}
},
"Resources" : {
"CfnUser" : {
"Type" : "AWS::IAM::User",
"Properties" : {
"Path": "/",
"Policies": [ {
"PolicyName": "root",
"PolicyDocument": { "Statement": [ {
"Effect":"Allow",
"Action":"cloudformation:DescribeStackResource",
"Resource":"*"
} ] }
} ]
}
},
"HostKeys" : {
"Type" : "AWS::IAM::AccessKey",
"Properties" : {
"UserName" : { "Ref" : "CfnUser" }
}
},
"MongoConfigInstance" : {
"Type" : "AWS::EC2::Instance",
"Metadata" : {
"AWS::CloudFormation::Init" : {
"config" : {
"packages" : {
},
"files" : {
}
}
}
},
"Properties" : {
"InstanceType" : { "Ref" : "InstanceType" },
"ImageId" : { "Fn::FindInMap" : [ "RegionImageZone", { "Ref" : "AWS::Region" },
{ "Fn::FindInMap" : [ "InstanceTypeArch", { "Ref" : "InstanceType" }, "Arch" ] } ] },
"SecurityGroups" : [ { "Ref" : "SecurityGroupName" } ],
"KeyName" : { "Ref" : "KeyName" },
"Tags" : [
{"Key" : "Name", "Value" : "MongoDBConfig" },
{"Key" : "Owner", "Value" : "inetgiant" }
],
"UserData" : { "Fn::Base64" : { "Fn::Join" : ["", [
"#!/bin/bash\n",
"## Error reporting helper function\n",
"function error_exit\n",
"{\n",
" cfn-signal -e 1 -r \"$1\" '", { "Ref" : "WaitHandleMongoConfig" }, "'\n",
" exit 1\n",
"}\n",
"## add mongo gpg key\n",
"apt-key adv --keyserver keyserver.ubuntu.com --recv 7F0CEB10 >> /tmp/cfn-init.log 2>&1\n",
"echo 'deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen' >> /etc/apt/sources.list\n",
"apt-get -y update >> /tmp/cfn-init.log 2>&1\n",
"DEBIAN_FRONTEND=noninteractive apt-get -y install mdadm sysstat lvm2 mongodb-10gen >> /tmp/apt.log 2>&1\n",
"service mongodb stop\n",
"apt-get -y install python-setuptools\n",
"easy_install https://s3.amazonaws.com/cloudformation-examples/aws-cfn-bootstrap-latest.tar.gz\n",
"## Initialize CloudFormation bits\n",
"cfn-init -v -s ", { "Ref" : "AWS::StackName" }, " -r MongoConfigInstance",
" --access-key ", { "Ref" : "AccessKeyId" },
" --secret-key ", {"Ref": "SecretAccessKey" },
" --region ", { "Ref" : "AWS::Region" }, " >> /tmp/cfn-init.log 2>&1 || error_exit $(</tmp/cfn-init.log)\n",
"## Waiting for EBS mounts to become available\n",
"while [ ! -e /dev/xvdh1 ]; do echo waiting for /dev/xvdh1 to attach; sleep 10; done\n",
"while [ ! -e /dev/xvdh2 ]; do echo waiting for /dev/xvdh2 to attach; sleep 10; done\n",
"while [ ! -e /dev/xvdh3 ]; do echo waiting for /dev/xvdh3 to attach; sleep 10; done\n",
"while [ ! -e /dev/xvdh4 ]; do echo waiting for /dev/xvdh4 to attach; sleep 10; done\n",
"## Create RAID10 and persist configuration\n",
"mdadm --verbose --create /dev/md0 --level=10 --chunk=256 --raid-devices=4 /dev/xvdh1 /dev/xvdh2 /dev/xvdh3 /dev/xvdh4 > /tmp/mdadm.log 2>&1\n",
"echo '`mdadm --detail --scan`' | tee -a /etc/mdadm.conf\n",
"## Set read-ahead on each device\n",
"blockdev --setra 128 /dev/md0\n",
"blockdev --setra 128 /dev/xvdh1\n",
"blockdev --setra 128 /dev/xvdh2\n",
"blockdev --setra 128 /dev/xvdh3\n",
"blockdev --setra 128 /dev/xvdh4\n",
"## Create physical and logical volumes\n",
"dd if=/dev/zero of=/dev/md0 bs=512 count=1\n",
"pvcreate /dev/md0\n",
"vgcreate vg0 /dev/md0\n",
"lvcreate -l 85%vg -n data vg0\n",
"lvcreate -l 5%vg -n log vg0\n",
"lvcreate -l 10%vg -n journal vg0\n",
"## Create filesystems and mount point info\n",
"mke2fs -t ext4 -F /dev/vg0/data > /tmp/mke2fs1.log 2>&1\n",
"mke2fs -t ext4 -F /dev/vg0/log > /tmp/mke2fs2.log 2>&1\n",
"mke2fs -t ext4 -F /dev/vg0/journal > /tmp/mke2fs3.log 2>&1\n",
"mkdir /data\n",
"mkdir /log\n",
"mkdir /journal\n",
"echo '/dev/vg0/data /data ext4 defaults,auto,noatime,noexec 0 0' | tee -a /etc/fstab\n",
"echo '/dev/vg0/log /log ext4 defaults,auto,noatime,noexec 0 0' | tee -a /etc/fstab\n",
"echo '/dev/vg0/journal /journal ext4 defaults,auto,noatime,noexec 0 0' | tee -a /etc/fstab\n",
"mount /data > /tmp/mount1.log 2>&1\n",
"mount /log > /tmp/mount2.log 2>&1\n",
"mount /journal > /tmp/mount3.log 2>&1\n",
"ln -s /journal /data/journal\n",
"chown -R mongodb:mongodb /data > /tmp/chown1.log 2>&1\n",
"chown -R mongodb:mongodb /log > /tmp/chown2.log 2>&1\n",
"chown -R mongodb:mongodb /journal > /tmp/chown3.log 2>&1\n",
"## Update mongod configuration\n",
"mv /etc/init/mongodb.conf /etc/init/mongodb.conf.BAK\n",
"cat <<EOF > /etc/init/mongodb.conf\n",
"# Ubuntu upstart file at /etc/init/mongodb.conf\n",
"\n",
"limit nofile 20000 20000\n",
"\n",
"kill timeout 300 # wait 300s between SIGTERM and SIGKILL.\n",
"\n",
"auth=true\n",
"\n",
"pre-start script\n",
" mkdir -p /var/lib/mongodb/\n",
" mkdir -p /var/log/mongodb/\n",
"end script\n",
"\n",
"start on runlevel [2345]\n",
"stop on runlevel [06]\n",
"\n",
"script\n",
" ENABLE_MONGODB=\"yes\"\n",
" if [ -f /etc/default/mongodb ]; then . /etc/default/mongodb; fi\n",
" if [ \"x$ENABLE_MONGODB\" = \"xyes\" ]; then exec start-stop-daemon --start --quiet --chuid mongodb --exec /usr/bin/mongod -- --configsvr; fi\n",
"end script\n",
"EOF\n",
"## Raise file descriptor limits\n",
"echo '* hard nofile 100000' | tee -a /etc/security/limits.conf\n",
"echo '* soft nofile 100000' | tee -a /etc/security/limits.conf\n",
"ulimit -n 100000\n",
"## Start mongod\n",
"service mongodb start > /tmp/mongod-start.log 2>&1\n",
"## CloudFormation signal that setup is complete\n",
"cfn-signal -e 0 -r \"MongoConfigInstance setup complete\" '", { "Ref" : "WaitHandleMongoConfig" }, "'\n"
] ] } }
}
},
"MongoVolume1" : {
"Type" : "AWS::EC2::Volume",
"Properties" : {
"Size" : { "Ref" : "VolumeSize" },
"AvailabilityZone" : { "Fn::GetAtt" : [ "MongoConfigInstance", "AvailabilityZone" ]}
}
},
"MongoVolume2" : {
"Type" : "AWS::EC2::Volume",
"Properties" : {
"Size" : { "Ref" : "VolumeSize" },
"AvailabilityZone" : { "Fn::GetAtt" : [ "MongoConfigInstance", "AvailabilityZone" ]}
}
},
"MongoVolume3" : {
"Type" : "AWS::EC2::Volume",
"Properties" : {
"Size" : { "Ref" : "VolumeSize" },
"AvailabilityZone" : { "Fn::GetAtt" : [ "MongoConfigInstance", "AvailabilityZone" ]}
}
},
"MongoVolume4" : {
"Type" : "AWS::EC2::Volume",
"Properties" : {
"Size" : { "Ref" : "VolumeSize" },
"AvailabilityZone" : { "Fn::GetAtt" : [ "MongoConfigInstance", "AvailabilityZone" ]}
}
},
"MongoVolumeMount1" : {
"Type" : "AWS::EC2::VolumeAttachment",
"Properties" : {
"InstanceId" : { "Ref" : "MongoConfigInstance" },
"VolumeId" : { "Ref" : "MongoVolume1" },
"Device" : "/dev/sdh1"
}
},
"MongoVolumeMount2" : {
"Type" : "AWS::EC2::VolumeAttachment",
"Properties" : {
"InstanceId" : { "Ref" : "MongoConfigInstance" },
"VolumeId" : { "Ref" : "MongoVolume2" },
"Device" : "/dev/sdh2"
}
},
"MongoVolumeMount3" : {
"Type" : "AWS::EC2::VolumeAttachment",
"Properties" : {
"InstanceId" : { "Ref" : "MongoConfigInstance" },
"VolumeId" : { "Ref" : "MongoVolume3" },
"Device" : "/dev/sdh3"
}
},
"MongoVolumeMount4" : {
"Type" : "AWS::EC2::VolumeAttachment",
"Properties" : {
"InstanceId" : { "Ref" : "MongoConfigInstance" },
"VolumeId" : { "Ref" : "MongoVolume4" },
"Device" : "/dev/sdh4"
}
},
"WaitHandleMongoConfig" : {
"Type" : "AWS::CloudFormation::WaitConditionHandle",
"Properties" : {}
},
"WaitConditionMongoConfig" : {
"Type" : "AWS::CloudFormation::WaitCondition",
"DependsOn" : "MongoConfigInstance",
"Properties" : {
"Handle" : { "Ref" : "WaitHandleMongoConfig" },
"Timeout" : "10000"
}
}
},
"Outputs" : {
"MongoConfigName" : {
"Value" : { "Fn::GetAtt" : [ "MongoConfigInstance", "PublicDnsName" ] },
"Description" : "public DNS name of the MongoDB Config Instance"
}
}
}