Skip to content

Commit 7e8ecba

Browse files
committed
Benchbase WIP
Signed-off-by: Moritz Hoffmann <[email protected]>
1 parent 8375f41 commit 7e8ecba

File tree

7 files changed

+405
-0
lines changed

7 files changed

+405
-0
lines changed

test/benchbase/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
config/*

test/benchbase/README.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# benchbase load test
2+
3+
This is a load test harness for Materialize on benchbase.

test/benchbase/benchbase/Dockerfile

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Copyright Materialize, Inc. and contributors. All rights reserved.
2+
#
3+
# Use of this software is governed by the Business Source License
4+
# included in the LICENSE file at the root of this repository.
5+
#
6+
# As of the Change Date specified in that file, in accordance with
7+
# the Business Source License, use of this software will be governed
8+
# by the Apache License, Version 2.0.
9+
10+
FROM benchbase.azurecr.io/benchbase-postgres

test/benchbase/benchbase/mzbuild.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Copyright Materialize, Inc. and contributors. All rights reserved.
2+
#
3+
# Use of this software is governed by the Business Source License
4+
# included in the LICENSE file at the root of this repository.
5+
#
6+
# As of the Change Date specified in that file, in accordance with
7+
# the Business Source License, use of this software will be governed
8+
# by the Apache License, Version 2.0.
9+
10+
name: benchbase

test/benchbase/benchbase/tpcc.xml

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
<?xml version="1.0"?>
2+
<parameters>
3+
4+
<!-- Connection details -->
5+
<type>POSTGRES</type>
6+
<driver>org.postgresql.Driver</driver>
7+
<url>jdbc:postgresql://postgres:5432/postgres?sslmode=disable&amp;ApplicationName=tpcc&amp;reWriteBatchedInserts=true</url>
8+
<username>postgres</username>
9+
<password>postgres</password>
10+
<reconnectOnConnectionFailure>true</reconnectOnConnectionFailure>
11+
<isolation>TRANSACTION_SERIALIZABLE</isolation>
12+
<batchsize>128</batchsize>
13+
14+
<!-- Scale factor is the number of warehouses in TPCC -->
15+
<scalefactor>10</scalefactor>
16+
17+
<!-- The workload -->
18+
<terminals>10</terminals>
19+
<works>
20+
<work>
21+
<time>6</time>
22+
<rate>10000</rate>
23+
<weights>45,43,4</weights>
24+
</work>
25+
</works>
26+
27+
<!-- TPCC specific -->
28+
<transactiontypes>
29+
<transactiontype>
30+
<name>NewOrder</name>
31+
<!--<preExecutionWait>18000</preExecutionWait>-->
32+
<!--<postExecutionWait>12000</postExecutionWait>-->
33+
</transactiontype>
34+
<transactiontype>
35+
<name>Payment</name>
36+
<!--<preExecutionWait>3000</preExecutionWait>-->
37+
<!--<postExecutionWait>12000</postExecutionWait>-->
38+
</transactiontype>
39+
<!--
40+
<transactiontype>
41+
<name>OrderStatus</name>
42+
</transactiontype>
43+
-->
44+
<transactiontype>
45+
<name>Delivery</name>
46+
<!--<preExecutionWait>2000</preExecutionWait>-->
47+
<!--<postExecutionWait>5000</postExecutionWait>-->
48+
</transactiontype>
49+
<!--
50+
<transactiontype>
51+
<name>StockLevel</name>
52+
</transactiontype>
53+
-->
54+
</transactiontypes>
55+
</parameters>

test/benchbase/mzcompose

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#!/usr/bin/env bash
2+
3+
# Copyright Materialize, Inc. and contributors. All rights reserved.
4+
#
5+
# Use of this software is governed by the Business Source License
6+
# included in the LICENSE file at the root of this repository.
7+
#
8+
# As of the Change Date specified in that file, in accordance with
9+
# the Business Source License, use of this software will be governed
10+
# by the Apache License, Version 2.0.
11+
#
12+
# mzcompose — runs Docker Compose with Materialize customizations.
13+
14+
exec "$(dirname "$0")"/../../bin/pyactivate -m materialize.cli.mzcompose "$@"

0 commit comments

Comments
 (0)