Skip to content

Commit

Permalink
ci(cql-stress): use newest cql-stress benchmarking tool
Browse files Browse the repository at this point in the history
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)
  • Loading branch information
vponomaryov authored and fruch committed Jan 28, 2025
1 parent e05b343 commit c0ac532
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
cql-stress-cassandra-stress:
image: docker.io/scylladb/hydra-loaders:cql-stress-cassandra-stress-20240718
image: docker.io/scylladb/hydra-loaders:cql-stress-cassandra-stress-20250127
8 changes: 5 additions & 3 deletions docker/cql-stress-cassandra-stress/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.78 AS builder
FROM rust:1.84-bookworm AS builder

ARG BRANCH
ARG REPO
Expand All @@ -10,7 +10,9 @@ RUN git clone ${REPO} -b ${BRANCH}

RUN cd cql-stress && cargo build --release --bin cql-stress-cassandra-stress


FROM rust:1.73-slim AS app
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/
2 changes: 1 addition & 1 deletion docker/cql-stress-cassandra-stress/image
Original file line number Diff line number Diff line change
@@ -1 +1 @@
scylladb/hydra-loaders:cql-stress-cassandra-stress-20240718
scylladb/hydra-loaders:cql-stress-cassandra-stress-20250127

0 comments on commit c0ac532

Please sign in to comment.