Skip to content

Commit

Permalink
Merge pull request #14790 from andrewhsu/v23.2.x-confluent-kafka-v2.2.0
Browse files Browse the repository at this point in the history
[v23.2.x] ducktape: Update librdkafka and confluent-kafka to v2.2.0
  • Loading branch information
twmb authored Nov 7, 2023
2 parents 76a7486 + e66e0f1 commit be8e215
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions tests/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,8 @@ COPY --chown=0:0 --chmod=0755 tests/setup.py /root/tests/
RUN python3 -m pip install --upgrade --force pip && \
python3 -m pip install --force --no-cache-dir -e /root/tests/

RUN python3 -m pip install --force-reinstall --no-cache-dir --no-binary :all: confluent-kafka==2.2.0

# seastar addrress to line utility depends on 'file' pkg
RUN apt update && \
apt install -y file && \
Expand Down
2 changes: 1 addition & 1 deletion tests/docker/ducktape-deps/librdkafka
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
set -e
mkdir /opt/librdkafka
curl -SL "https://github.com/confluentinc/librdkafka/archive/refs/tags/v2.0.2.tar.gz" | tar -xz --strip-components=1 -C /opt/librdkafka
curl -SL "https://github.com/confluentinc/librdkafka/archive/refs/tags/v2.2.0.tar.gz" | tar -xz --strip-components=1 -C /opt/librdkafka
cd /opt/librdkafka
./configure
make -j$(nproc)
Expand Down
6 changes: 3 additions & 3 deletions tests/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
install_requires=[
'ducktape@git+https://github.com/redpanda-data/ducktape.git@fd01d72b8c82ae852986bb288c69818c7ffb4de8',
'prometheus-client==0.9.0', 'pyyaml==6.0', 'kafka-python==2.0.2',
'crc32c==2.2', 'confluent-kafka==2.0.2', 'zstandard==0.15.2',
'xxhash==2.0.2', 'protobuf==4.21.8', 'fastavro==1.4.9',
'psutil==5.9.0', 'numpy==1.22.3', 'pygal==3.0', 'pytest==7.1.2',
'crc32c==2.2', 'zstandard==0.15.2', 'xxhash==2.0.2',
'protobuf==4.21.8', 'fastavro==1.4.9', 'psutil==5.9.0',
'numpy==1.22.3', 'pygal==3.0', 'pytest==7.1.2',
'jump-consistent-hash==3.2.0', 'azure-storage-blob==12.14.1',
'kafkatest@git+https://github.com/apache/kafka.git@058589b03db686803b33052d574ce887fb5cfbd1#egg=kafkatest&subdirectory=tests',
'grpcio==1.57.0', 'grpcio-tools==1.57', 'grpcio-status==1.57.0',
Expand Down

0 comments on commit be8e215

Please sign in to comment.