Re: Classloading in worker thread context

2021-11-23 Thread Oliver Moser
Hi John I had a similar situation with Azure Application Insights. Had it as a maven dependency built into the uber JAR, but ran into NoClassDef found. I ended up packaging it to a custom Docker image, and that works as expected. Oliver > > Am 23.11.2021 um 20:18 schrieb John Karp : > >

Re: Table to DataStream conversion and field ordering

2021-11-23 Thread Oliver Moser
> > On Thu, Nov 18, 2021 at 1:37 PM Oliver Moser <mailto:olz...@gmail.com>> wrote: > Hi! > > I'm running into a problem when converting back and forth from a streaming > table to a data stream. Given the following > table DDL: > >create table masterdat

Re: Table to DataStream conversion and field ordering

2021-11-23 Thread Oliver Moser
> worth supporting. > > Mind opening an issue with a reproducer? > > > On Thu, Nov 18, 2021 at 1:37 PM Oliver Moser <mailto:olz...@gmail.com>> wrote: > Hi! > > I'm running into a problem when converting back and forth from a streaming > table t

Table to DataStream conversion and field ordering

2021-11-18 Thread Oliver Moser
Hi! I'm running into a problem when converting back and forth from a streaming table to a data stream. Given the following table DDL: create table masterdata ( facility text, manufacturer text, serial integer, latitude double precision, longitude double

Re: Question on BoundedOutOfOrderness

2021-11-05 Thread Oliver Moser
/src/main/java/com/ververica/flinktraining/examples/table_java/stream/Sort.java > > <https://github.com/ververica/flink-training-exercises/blob/master/src/main/java/com/ververica/flinktraining/examples/table_java/stream/Sort.java> > > Alexey > From: Oliver Moser mailto:ol

Question on BoundedOutOfOrderness

2021-11-02 Thread Oliver Moser
Hi! I am investigating the use of Flink for a new project and started some simple demos. Currently I am stuck at the point where I need to deal with events arriving out of order based on their event time. I’ve spent quite some time researching on SO, the docs, the Ververica training