Last active
October 23, 2024 18:24
-
-
Save JessicaGreben/b251a6420ebfbd42f09cffd95bcc5c96 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: tinkerbench | |
namespace: aerospike-graph | |
labels: | |
app: tinkerbench | |
spec: | |
replicas: 1 | |
selector: | |
matchLabels: | |
app: tinkerbench | |
template: | |
metadata: | |
labels: | |
app: tinkerbench | |
spec: | |
containers: | |
- image: 271036156099.dkr.ecr.us-east-1.amazonaws.com/tinkerbench:latest | |
command: ["tail", "-f", "/dev/null"] | |
name: tinkerbench | |
imagePullPolicy: Always | |
env: | |
- name: graph.server.host | |
value: <replace with db hostname> | |
- name: graph.server.port | |
value: "8182" | |
- name: graph.client.ssl | |
value: "true" | |
- name: graph.client.user | |
value: <replace with credential ID> | |
- name: graph.client.password | |
value: <replace with credential password> | |
- name: benchmark.measurementForks | |
value: "1" | |
- name: benchmark.measurementTimeout | |
value: "15" | |
- name: benchmark.measurementThreads | |
value: "24" | |
- name: benchmark.seedSize | |
value: "320" | |
- name: benchmark.mode | |
# Options: all, throughput, average, sample. | |
# Ref: https://javadoc.io/doc/org.openjdk.jmh/jmh-core/latest/org/openjdk/jmh/annotations/Mode.html | |
value: all |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment