Re: Flink mini IDEA runtime

2018-07-22 Thread Pavel Ciorba
com/ > ZuInnoTe/hadoopcryptoledger/blob/master/examples/scala- > flink-ethereumblock/src/it/scala/org/zuinnote/flink/ethereum/example/ > FlinkEthereumBlockCounterFlinkMasterIntegrationSpec.scala > > On 22. Jul 2018, at 12:42, Pavel Ciorba wrote: > > Hi all! > > From what I

Flink mini IDEA runtime

2018-07-22 Thread Pavel Ciorba
Hi all! >From what I know, Flink jobs can be run straight from the IDE because IDEA will create a mini Flink runtime. What is the underlying CLI command that Jetbarins IDEA issues to run a Flink job in a mini-runtime? My use case is that I want to see if the job written using the SQL API is

Flink Uploaded JAR Filename

2018-04-09 Thread Pavel Ciorba
Hi everyone I make 2 cURL POST requests to upload and run a Flink job. The issue is that I do it manually: First I do the upload, then using the returned name of the jar, I make a follow up run request. $ curl -X POST upload jar ... {status:success, filename: 12jhgjasd123asd12-ACTUALNAME.jar} $

Re: Flink override config params (Docker)

2018-04-09 Thread Pavel Ciorba
Miki, So something like following will do the trick? *volumes:- /host/path/to/custom-flink-conf.yaml:/opt/flink/conf/flink-conf.yaml* 2018-04-09 14:11 GMT+03:00 miki haiat <miko5...@gmail.com>: > You can mount the conf folder and ovride the conf file. > > On Mon, 9 Apr 20

Flink override config params (Docker)

2018-04-09 Thread Pavel Ciorba
Hi everyone Is there a way to override the *conf/flink-conf.yaml* of the Flink Docker container? I need to specify some params such as: state.backend state.backend.fs.checkpointdir state.checkpoints.dir etc. Thanks

Re: Flink 1.4 SQL API Streaming TableException

2018-03-09 Thread Pavel Ciorba
urceSinks.html#configuring-a-processing-time-attribute > > On Sat, Mar 10, 2018 at 4:49 AM Pavel Ciorba <pavli...@gmail.com> wrote: > >> Hi everyone! >> >> I decided to try the Time-windowed join functionality of Flink 1.4+. >> >> My SQL query is an exac

Flink 1.4 SQL API Streaming TableException

2018-03-09 Thread Pavel Ciorba
Hi everyone! I decided to try the Time-windowed join functionality of Flink 1.4+. My SQL query is an exact copy of the example in the documentation, and the program reads and writes from Kafka. I used the example from here: