tarantool / tracing

OpenTracing API for Tarantool
9 stars 3 forks source link

fix version of images in docker-compose #14

Closed olegrok closed 3 years ago

olegrok commented 3 years ago

New major version of Zipkin were released [1]. But our version of tracing module was tested only with v1. Also seems some docker containers were changed as well. MySQL containser seems to support only v1 [2]. Seems eventually we should replace it with Cassandra that supports v2 [3] (maybe). But this patch just downgrade zipkin version in docker-compose.zipkin.yml file because anyway even we could run zipkin v2 + cassandra storage we can't give any guarantee that it will work until [4].

[1] https://github.com/openzipkin/zipkin/releases/tag/2.0.0 [2] https://github.com/openzipkin/zipkin/tree/master/zipkin-storage/mysql-v1 [3] https://github.com/openzipkin/zipkin-dependencies#cassandra [4] https://github.com/tarantool/tracing/issues/13

Closes #10