2024-05-03 15:12:15 +00:00
|
|
|
---
|
|
|
|
apiVersion: batch/v1
|
|
|
|
kind: Job
|
|
|
|
metadata:
|
|
|
|
name: memtier-benchmark
|
|
|
|
spec:
|
|
|
|
backoffLimit: 0
|
|
|
|
template:
|
|
|
|
spec:
|
|
|
|
containers:
|
|
|
|
- name: memtier
|
|
|
|
image: redislabs/memtier_benchmark:latest
|
|
|
|
args:
|
2024-07-17 11:34:48 +00:00
|
|
|
- memtier_benchmark --pipeline=30 --key-maximum=100000 -c 10 -t 2 --test-time=600 --reconnect-interval=10000 --distinct-client-seed --hide-histogram -s dragonfly-sample
|
2024-05-03 15:12:15 +00:00
|
|
|
command:
|
|
|
|
- sh # This is important! without it memtier cannot DIG the dragonfly SVC domain
|
|
|
|
- -c
|
|
|
|
resources:
|
|
|
|
requests:
|
|
|
|
cpu: "2"
|
|
|
|
memory: "500Mi"
|
|
|
|
limits:
|
|
|
|
cpu: "2"
|
|
|
|
memory: "500Mi"
|
|
|
|
restartPolicy: Never
|