Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ non critical errors as strings which allows you to decide how to handle it.
* Tarantool development headers
* librdkafka >= 0.11.5
* librdkafka development headers
* openssl-libs
* openssl development headers
* make
* cmake
* gcc
Expand Down Expand Up @@ -320,6 +322,12 @@ because `rd_kafka_destroy` sometimes hangs forever.

# Benchmarks

Before any commands init and updated git submodule
```bash
git submodule init
git submodule update
```

## Producer

### Async
Expand Down
4 changes: 3 additions & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,18 @@ RUN yum install -y cmake \
gcc-c++ \
cyrus-sasl-lib \
openssl-libs \
openssl-devel \
tarantool-devel

ADD . /opt/tarantool

WORKDIR /opt/tarantool

ENV STATIC_BUILD ON
ENV WITH_OPENSSL_1_1 OFF

RUN cmake .

RUN make

ENTRYPOINT tarantool /opt/tarantool/tests/app.lua
ENTRYPOINT tarantool /opt/tarantool/tests/app.lua