Re: Running two versions of Flink with testcontainers

2021-07-13 Thread Austin Cawley-Edwards
Great, glad it worked out for you! On Tue, Jul 13, 2021 at 10:32 AM Farouk wrote: > Thanks > > Finally I tried by running docker commands (thanks for the documentation) > and it works fine. > > Thanks > Farouk > > Le mar. 13 juil. 2021 à 15:48, Austin Cawley-Edwards < > austin.caw...@gmail.com>

Re: Running two versions of Flink with testcontainers

2021-07-13 Thread Austin Cawley-Edwards
You might also be able to put them in separate networks[1] to get around changing all the ports and still ensuring that they don't see eachother. [1]: https://www.testcontainers.org/features/networking#advanced-networking On Tue, Jul 13, 2021 at 9:07 AM Chesnay Schepler wrote: > It is possible

Re: Running two versions of Flink with testcontainers

2021-07-13 Thread Chesnay Schepler
It is possible but you need to make sure that all ports a configured such that the 2 clusters don't see each other. On 13/07/2021 13:21, Farouk wrote: Hi For e2e testing, we run tests with testcontainers. We have several jobs and we want to upgrade them one by one Do you know if it is possi

Running two versions of Flink with testcontainers

2021-07-13 Thread Farouk
Hi For e2e testing, we run tests with testcontainers. We have several jobs and we want to upgrade them one by one Do you know if it is possible in Docker to run one JM + one TM for version 1 and version 2 at the same time? It looks like either the taskmanager registration is failing for the seco