graphql-engine/server/bench-wrk/wrk-websocket-server/Dockerfile
nizar-m f8a7312a30
Regression benchmarks setup (#3310)
* Benchmark GraphQL queries using wrk

* fix console assets dir

* Store wrk parameters as well

* Add details about storing results in Readme

* Remove files in bench-wrk while computing server shasum

* Instead of just getting maximum throughput per query per version,
create plots using wrk2 for a given set of requests per second.
The maximum throughput is used to see what values of requests per second are feasible.

* Add id for version dropdown

* Allow specifiying env and args for GraphQL Engine

1) Arguments defined after -- will be applied as arguments to Hasura GraphQL Engine
2) Script will also pass the environmental variables to Hasura GraphQL Engine instances

Hasura GraphQL engine can be run with the given environmental variables and arguments as follows

$ export HASURA_GRAPHQL_...=....
$ python3 hge_wrk_bench.py -- --hge_arg1 val1 --hge_arg2 val2 ...

* Use matplotlib instead of plotly for figures

* Show throughput graph also.

It maybe useful in checking performance regression across versions

* Support storing results in s3

Use --upload-root-uri 's3://bucket/path' to upload results inside the
given path.When specified, the results will be uploaded to the bucket,
including latencies, latency histogram, and the test setup info.
The s3 credentials should be provided as given in AWS boto3 documentation.

* Allow specifying a name for the test scenario

* Fix open latency uri bug

* Update wrk docker image

* Keep ylim a little higher than maximum so that the throughput plot is clearly visible

* Show throughput plots for multiple queries at the same time

* 1) Adjust size of dropdowns
2) Make label for requests/sec invisible when plot type is throughput

* 1) Adding boto3 to requirements.txt
2) Removing CPU Key print line
3) Adding info about the tests that will be run with wrk2

* Docker builder fo wrk-websocket-server

* Make it optional to setup remote graphql-engine

* Listen on all interfaces and enable ping thread

* Add bench_scripts to wrk-websocket-server docker

* Use 127.0.0.1 instead of 'localhost' to address local hge

For some reason it seems wrk was hanging trying to resolve 'localhost'.
ping was able to fine from the same container, so I'm not sure what the
deal was. Probably some local misconfiguration on my machine, but maybe
this change will also help others.

* Store latency samples in subdirectory, server_shasum just once at start, additional docs

* Add a note on running the benchmarks in the simplest way

* Add a new section on how to run benchmarks on a new linux hosted instance

Co-authored-by: Nizar Malangadan <nizar-m@users.noreply.github.com>
Co-authored-by: Brandon Simmons <brandon.m.simmons@gmail.com>
Co-authored-by: Karthikeyan Chinnakonda <karthikeyan@hasura.io>
Co-authored-by: Brandon Simmons <brandon@hasura.io>
Co-authored-by: Vamshi Surabhi <0x777@users.noreply.github.com>
2020-06-19 22:40:17 +05:30

39 lines
1.3 KiB
Docker

# Building wrk-websocket-server
FROM alpine:3.11.3 as server-builder
RUN apk add cabal ghc
RUN apk add ca-certificates
RUN apk add wget
RUN apk add musl-dev
RUN apk add zlib zlib-dev
RUN apk add git
RUN apk add postgresql postgresql-dev
RUN apk add binutils-gold
COPY wrk-websocket-server.cabal cabal.project.local cabal.project cabal.project.freeze /root/wrk-websocket-dir/
WORKDIR /root/wrk-websocket-dir
RUN cabal new-update
RUN cabal new-build --only-dependencies
COPY src/ src/
COPY app/ app/
RUN cabal new-build
RUN cp $(cabal new-exec which wrk-websocket-server) /tmp
# Building wrk2
FROM alpine:3.11.3 as wrk2-builder
ARG tag=print-latencies
RUN apk add alpine-sdk openssl-dev luajit-dev
RUN apk add zlib zlib-dev
RUN wget -O /tmp/wrk2.zip https://github.com/hasura/wrk2/archive/$tag.zip
RUN unzip /tmp/wrk2.zip -d /tmp/
RUN make -C /tmp/wrk2-${tag}
# Install wrk as an alpine package
FROM alpine:3.11.3
ARG tag=print-latencies
ENV HASURA_BENCH_WRK_LUA_SCRIPT=/root/bench_scripts/bench-wrk.lua
ENV HASURA_BENCH_WRK2_LUA_SCRIPT=/root/bench_scripts/bench-wrk2.lua
MAINTAINER nizar@hasura.io
RUN apk add wrk lua5.1-cjson gmp libffi-dev
COPY --from=server-builder /tmp/wrk-websocket-server /usr/bin/wrk-websocket-server
COPY --from=wrk2-builder /tmp/wrk2-$tag/wrk /usr/bin/wrk2
COPY bench_scripts /root/bench_scripts