Flink Table 1.5-SNAPSHOT

classic Classic list List threaded Threaded
5 messages Options
Reply | Threaded
Open this post in threaded view
|

Flink Table 1.5-SNAPSHOT

Pavel Ciorba
Hi everyone!

I want to test the nonWindowInnerJoin API.

Could anyone share the flink-table 1.5-SNAPSHOT jar ? (dropbox link etc.)

I've tried to build the flink-table myself using *mvn clean install *but
when I import it in a Gradle project it is unresolved for some reason.

I'd be glad if someone just simply share a working jar.

Thanks!
Reply | Threaded
Open this post in threaded view
|

Re: Flink Table 1.5-SNAPSHOT

Shuyi Chen
Maybe you can explain a bit more on what you need. But here is the link to
the jar for your convenience,
https://drive.google.com/file/d/0BwG71AtfYG0aZk04MHNSMDZiZTlkbUh0dXktMXphZ1c3YTdR/view?usp=sharing.
Just rename it and remove the .tmp suffix.

On Sat, Feb 24, 2018 at 9:40 AM, Pavel Ciorba <[hidden email]> wrote:

> Hi everyone!
>
> I want to test the nonWindowInnerJoin API.
>
> Could anyone share the flink-table 1.5-SNAPSHOT jar ? (dropbox link etc.)
>
> I've tried to build the flink-table myself using *mvn clean install *but
> when I import it in a Gradle project it is unresolved for some reason.
>
> I'd be glad if someone just simply share a working jar.
>
> Thanks!
>



--
"So you have to trust that the dots will somehow connect in your future."
Reply | Threaded
Open this post in threaded view
|

Re: Flink Table 1.5-SNAPSHOT

Chesnay Schepler-3
You can download the official SNAPSHOT jars from the apache repository:
https://repository.apache.org/content/groups/snapshots/org/apache/flink/flink-table_2.11/1.5-SNAPSHOT/.

On 25.02.2018 02:41, Shuyi Chen wrote:

> Maybe you can explain a bit more on what you need. But here is the link to
> the jar for your convenience,
> https://drive.google.com/file/d/0BwG71AtfYG0aZk04MHNSMDZiZTlkbUh0dXktMXphZ1c3YTdR/view?usp=sharing.
> Just rename it and remove the .tmp suffix.
>
> On Sat, Feb 24, 2018 at 9:40 AM, Pavel Ciorba <[hidden email]> wrote:
>
>> Hi everyone!
>>
>> I want to test the nonWindowInnerJoin API.
>>
>> Could anyone share the flink-table 1.5-SNAPSHOT jar ? (dropbox link etc.)
>>
>> I've tried to build the flink-table myself using *mvn clean install *but
>> when I import it in a Gradle project it is unresolved for some reason.
>>
>> I'd be glad if someone just simply share a working jar.
>>
>> Thanks!
>>
>
>

Reply | Threaded
Open this post in threaded view
|

Re: Flink Table 1.5-SNAPSHOT

Dawid Wysakowicz
Just to add to what Chesnay said you can also enable snapshot repository in
your maven project

<repositories>
<repository>
<id>apache.snapshots</id>
<name>Apache Development Snapshot Repository</name>
<url>https://repository.apache.org/content/repositories/snapshots/</url>
<releases>
        <enabled>false</enabled>
</releases>
<snapshots>
        <enabled>true</enabled>
</snapshots>
</repository>
</repositories>


25.02.2018 9:33 AM "Chesnay Schepler" <[hidden email]> napisał(a):

> You can download the official SNAPSHOT jars from the apache repository:
> https://repository.apache.org/content/groups/snapshots/org/a
> pache/flink/flink-table_2.11/1.5-SNAPSHOT/.
>
> On 25.02.2018 02:41, Shuyi Chen wrote:
>
>> Maybe you can explain a bit more on what you need. But here is the link to
>> the jar for your convenience,
>> https://drive.google.com/file/d/0BwG71AtfYG0aZk04MHNSMDZiZTl
>> kbUh0dXktMXphZ1c3YTdR/view?usp=sharing.
>> Just rename it and remove the .tmp suffix.
>>
>> On Sat, Feb 24, 2018 at 9:40 AM, Pavel Ciorba <[hidden email]> wrote:
>>
>> Hi everyone!
>>>
>>> I want to test the nonWindowInnerJoin API.
>>>
>>> Could anyone share the flink-table 1.5-SNAPSHOT jar ? (dropbox link etc.)
>>>
>>> I've tried to build the flink-table myself using *mvn clean install *but
>>> when I import it in a Gradle project it is unresolved for some reason.
>>>
>>> I'd be glad if someone just simply share a working jar.
>>>
>>> Thanks!
>>>
>>>
>>
>>
>
Reply | Threaded
Open this post in threaded view
|

Re: Flink Table 1.5-SNAPSHOT

Pavel Ciorba
Thanks everyone!

Got up and running!

2018-02-25 13:27 GMT+02:00 Dawid Wysakowicz <[hidden email]>:

> Just to add to what Chesnay said you can also enable snapshot repository in
> your maven project
>
> <repositories>
> <repository>
> <id>apache.snapshots</id>
> <name>Apache Development Snapshot Repository</name>
> <url>https://repository.apache.org/content/repositories/snapshots/</url>
> <releases>
>         <enabled>false</enabled>
> </releases>
> <snapshots>
>         <enabled>true</enabled>
> </snapshots>
> </repository>
> </repositories>
>
>
> 25.02.2018 9:33 AM "Chesnay Schepler" <[hidden email]> napisał(a):
>
> > You can download the official SNAPSHOT jars from the apache repository:
> > https://repository.apache.org/content/groups/snapshots/org/a
> > pache/flink/flink-table_2.11/1.5-SNAPSHOT/.
> >
> > On 25.02.2018 02:41, Shuyi Chen wrote:
> >
> >> Maybe you can explain a bit more on what you need. But here is the link
> to
> >> the jar for your convenience,
> >> https://drive.google.com/file/d/0BwG71AtfYG0aZk04MHNSMDZiZTl
> >> kbUh0dXktMXphZ1c3YTdR/view?usp=sharing.
> >> Just rename it and remove the .tmp suffix.
> >>
> >> On Sat, Feb 24, 2018 at 9:40 AM, Pavel Ciorba <[hidden email]>
> wrote:
> >>
> >> Hi everyone!
> >>>
> >>> I want to test the nonWindowInnerJoin API.
> >>>
> >>> Could anyone share the flink-table 1.5-SNAPSHOT jar ? (dropbox link
> etc.)
> >>>
> >>> I've tried to build the flink-table myself using *mvn clean install
> *but
> >>> when I import it in a Gradle project it is unresolved for some reason.
> >>>
> >>> I'd be glad if someone just simply share a working jar.
> >>>
> >>> Thanks!
> >>>
> >>>
> >>
> >>
> >
>