Re: Flink with Docker: docker-compose and FLINK_JOB_ARGUMENT exception

2018-12-07 Thread Spico Florin
Hello! I have used with success Flink with Docker, the approach presented in this article: http://diegoreico.com/environments/runningflinkgclusterwithzeppelin/ It it using a older version of Flink (1.4.2) in order to be compatible with Zeppelin client, but you can check if it works with new vers

Re: Flink with Docker: docker-compose and FLINK_JOB_ARGUMENT exception

2018-12-07 Thread Jeff Zhang
I didn't use the built-in docker of flink, but the following flink docker works for me pretty well. https://github.com/big-data-europe/docker-flink Piotr Nowojski 于2018年12月7日周五 下午6:20写道: > Hi, > > I have never used flink and docker together, so I’m not sure if I will be > able to help, howeve

Re: Flink with Docker: docker-compose and FLINK_JOB_ARGUMENT exception

2018-12-07 Thread Piotr Nowojski
Hi, I have never used flink and docker together, so I’m not sure if I will be able to help, however have you seen this README: https://github.com/apache/flink/tree/master/flink-container/docker ? Shouldn’t you be passing your arguments via `FLINK_JOB_ARGUMENTS` environment variable? Piotrek >

Flink with Docker: docker-compose and FLINK_JOB_ARGUMENT exception

2018-12-07 Thread Marke Builder
Hi, I'm trying to run flink with docker (docker-compose) and job arguments "config-dev.properties". But it seams that the job arguments are not available: docker-compose.yml version: '2' services: job-cluster: image: ${FLINK_DOCKER_IMAGE_NAME:-timeseries-v1} ports: - '8081:8081'