Re: Flink table modules

2020-04-26 Thread Flavio Pompermaier
Thank you all for the clarification and pointers! Il Dom 26 Apr 2020, 10:52 Danny Chan ha scritto: > > Are they basically a way to group together a set of UDF functions > > You are right, each module would have a set of functions which behaves > like a Flink builtin function, the functions don’t

Re: Flink table modules

2020-04-26 Thread Danny Chan
> Are they basically a way to group together a set of UDF functions You are right, each module would have a set of functions which behaves like a Flink builtin function, the functions don’t have any namespaces. When there are two objects of the same name residing in two modules, Flink always res

Re: Flink table modules

2020-04-25 Thread Jark Wu
Hi Flavio, Here is the documentation about "Module": https://ci.apache.org/projects/flink/flink-docs-master/dev/table/modules.html It is a plugin mechanism for users to register a set of UDF functions, e.g. ML function, Geo functions. Best, Jark On Thu, 23 Apr 2020 at 23:12, Flavio Pompermaier

Flink table modules

2020-04-23 Thread Flavio Pompermaier
Hi to all, I've seen that table API provides modules. What are they exactly? Are they basically a way to group together a set of UDF functions? Or they can add other stuff to the table API? Best, Flavi