-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci(cql-stress): use newest cql-stress benchmarking tool
This new version contains following changes compared to the previous one: - "c-s: Implement insert operation for user profiles" (PR#93) - "cargo: bump rust-driver version to 0.14" (PR#102) (cherry picked from commit c0ac532)
- Loading branch information
1 parent
9d10f8e
commit bc10d71
Showing
3 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
6 changes: 6 additions & 0 deletions
6
defaults/docker_images/cql-stress-cassandra-stress/values_cql-stress-cassandra-stress.yaml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,8 @@ | ||
cql-stress-cassandra-stress: | ||
<<<<<<< HEAD | ||
image: 'docker.io/scylladb/hydra-loaders:cql-stress-cassandra-stress-20240718' | ||
||||||| parent of c0ac5329f (ci(cql-stress): use newest cql-stress benchmarking tool) | ||
image: docker.io/scylladb/hydra-loaders:cql-stress-cassandra-stress-20240718 | ||
======= | ||
image: docker.io/scylladb/hydra-loaders:cql-stress-cassandra-stress-20250127 | ||
>>>>>>> c0ac5329f (ci(cql-stress): use newest cql-stress benchmarking tool) |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
FROM rust:1.84-bookworm AS builder | ||
|
||
ARG BRANCH | ||
ARG REPO | ||
|
||
ENV BRANCH=${BRANCH:-master} | ||
ENV REPO=${REPO:-https://github.com/scylladb/cql-stress.git} | ||
|
||
RUN git clone ${REPO} -b ${BRANCH} | ||
|
||
RUN cd cql-stress && cargo build --release --bin cql-stress-cassandra-stress | ||
|
||
FROM debian:bookworm-slim | ||
RUN apt update && apt -y install \ | ||
openssl \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
COPY --from=builder /cql-stress/target/release/cql-stress-cassandra-stress /usr/local/bin/ |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
scylladb/hydra-loaders:cql-stress-cassandra-stress-20250127 |