Skip to content

Commit 017ca21

Browse files
Cleanups
1 parent 4fc29a6 commit 017ca21

File tree

68 files changed

+104
-109
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+104
-109
lines changed

aurora-mysql/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Find the writer instance endpoint.
2020
Example: database-1.cluster-cnkeohbxcwr1.eu-central-1.rds.amazonaws.com
2121

2222
```
23-
sudo apt-get update
23+
sudo apt-get update -y
2424
sudo apt-get install -y mysql-client
2525
```
2626

aurora-postgresql/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Find the writer instance endpoint.
2020
Example: database-1.cluster-cnkeohbxcwr1.eu-central-1.rds.amazonaws.com
2121

2222
```
23-
sudo apt-get update
23+
sudo apt-get update -y
2424
sudo apt-get install -y postgresql-client
2525
```
2626

byconity/benchmark.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash -ex
22

3-
sudo apt-get update
4-
sudo apt-get install ca-certificates curl gnupg -y
3+
sudo apt-get update -y
4+
sudo apt-get install -y ca-certificates curl gnupg
55
sudo install -m 0755 -d /etc/apt/keyrings
66
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --yes --dearmor -o /etc/apt/keyrings/docker.gpg
77
sudo chmod a+r /etc/apt/keyrings/docker.gpg
@@ -10,8 +10,8 @@ echo \
1010
"$(. /etc/os-release && echo "$VERSION_CODENAME")" stable" | \
1111
sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
1212

13-
sudo apt-get update
14-
sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin -y
13+
sudo apt-get update -y
14+
sudo apt-get install -y docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
1515

1616
# Make sure docker is running
1717
sudo systemctl start docker

cedardb/benchmark.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash -e
22

33
# docker
4-
sudo apt-get update
4+
sudo apt-get update -y
55
sudo apt-get install -y docker.io postgresql-client gzip
66

77
# download dataset

chdb-dataframe/benchmark.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Install
44

5-
sudo apt-get update
5+
sudo apt-get update -y
66
sudo apt-get install -y python3-pip
77
pip install pandas
88
pip install chdb

chdb-parquet/benchmark.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Install
44

5-
sudo apt-get update
5+
sudo apt-get update -y
66
sudo apt-get install -y python3-pip
77
pip install psutil
88
pip install chdb

chdb/benchmark.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
# Install
4-
sudo apt-get update
4+
sudo apt-get update -y
55
sudo apt-get install -y python3-pip
66
pip install psutil
77
pip install chdb

citus/benchmark.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
sudo apt-get update
3+
sudo apt-get update -y
44
sudo apt-get install -y docker.io
55
sudo apt-get install -y postgresql-client
66

cloud-init.sh.in

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ aws ec2 run-instances --count 1 --image-id ami-0d1ddd83282187d18 --instance-type
1010
--user-data file://cloud-init.sh
1111
///
1212

13-
apt-get update
13+
export DEBIAN_FRONTEND=noninteractive
14+
apt-get update -y
1415
apt-get install -y wget curl git
1516

1617
git clone --depth 1 https://github.com/ClickHouse/ClickBench.git

cockroachdb/benchmark.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,9 @@
33
CRDBVERSION=25.1.6
44
CRDBDATADIR=/var/lib/cockroach-data
55

6-
sudo apt-get update
7-
sudo apt-get upgrade -y
6+
sudo apt-get update -y
87
# Includes unbuffer utility program
9-
sudo apt-get install expect-dev -y
8+
sudo apt-get install -y expect-dev
109

1110
wget --continue --progress=dot:giga https://binaries.cockroachdb.com/cockroach-v$CRDBVERSION.linux-amd64.tgz
1211
tar -xvzf cockroach-v$CRDBVERSION.linux-amd64.tgz

0 commit comments

Comments
 (0)