-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpg_ssd.sh
48 lines (31 loc) · 786 Bytes
/
pg_ssd.sh
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
sudo su
# PLEASE DO 2prep_indexes
# copy and load module4 dump
cd /vagrant/data
scp module4.sql ubuntu@ec2:/vagrant/data/module4.sql
psql module4 < module4.sql
psql
REINDEX DATABASE
# verify we can access the ssds:
lspci
lsmod | grep nvme
cat /lib/modules/$(uname -r)/modules.builtin | grep nvme
# move existing db aside if necessary
sudo service postgresql stop
mv /var/lib/postgresql /var/lib/postgresql.ebsbackup
# mount the ssds
mkfs -t ext4 /dev/nvme1n1
mkdir /var/lib/postgresql
mount /dev/nvme1n1 /var/lib/postgresql
rsync -av /var/lib/postgresql.ebsbackup/ /var/lib/postgresql
service postgresql start
service postgresql status
# test things working
psql
SHOW data_directory;
\l
\d
# run the benchmarker
cd /vagrant
python3 -m p2d2 micro
python3 -m p2d2 kaggle