File tree 7 files changed +405
-0
lines changed
7 files changed +405
-0
lines changed Original file line number Diff line number Diff line change
1
+ config /*
Original file line number Diff line number Diff line change
1
+ # benchbase load test
2
+
3
+ This is a load test harness for Materialize on benchbase.
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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& ApplicationName=tpcc& 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 >
Original file line number Diff line number Diff line change
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 " $@ "
You can’t perform that action at this time.
0 commit comments