Re: [ANNOUNCE] New Apache Flink Committer - Sergey Nuyanzin

2025-04-04 Thread Alexey Leonov-Vendrovskiy
Congratulations!!! On Thu, Apr 3, 2025 at 4:47 AM Andriy Redko wrote: > Congrats Sergey!!! > > > > Hi everyone, > > > On behalf of the PMC, I'm very happy to announce Sergey Nuyanzin as a > new Flink Committer. > > > Sergey started contributing small improvements to the project in 2018. > Over t

Re: [VOTE] FLIP-456: CompiledPlan support for Batch Execution Mode

2024-07-08 Thread Alexey Leonov-Vendrovskiy
Thank you all! The voting is closed now. I've posted results [1]. [1] https://lists.apache.org/thread/mx3qd5qgyjtqk66p6sv639g777lm0jc6 Thanks, Alexey On Wed, Jul 3, 2024 at 6:39 PM Yuepeng Pan wrote: > +1 (non-binding) > > Best regards, > > Yuepeng Pan > > >

[RESULT][VOTE] FLIP-456: CompiledPlan support for Batch Execution Mode

2024-07-08 Thread Alexey Leonov-Vendrovskiy
PRs will be prepared. Thank you everyone who participated! All the best, Alexey [1] https://lists.apache.org/thread/2ycws2zplcyd1k25pn1ljmxvg5lgd8r2 [2] https://cwiki.apache.org/confluence/display/FLINK/FLIP-456%3A+CompiledPlan+support+for+Batch+Execution+Mode

[VOTE] FLIP-456: CompiledPlan support for Batch Execution Mode

2024-07-01 Thread Alexey Leonov-Vendrovskiy
epted if 3 binding votes (from active committers according to the Flink bylaws [3]) are gathered by the community. Thanks, Alexey [1] https://cwiki.apache.org/confluence/display/FLINK/FLIP-456%3A+CompiledPlan+support+for+Batch+Execution+Mode [2] https://lists.apache.org/t

Re: [DISCUSSION] FLIP-456: CompiledPlan support for Batch Execution Mode

2024-06-24 Thread Alexey Leonov-Vendrovskiy
Hey all, starting a vote in 24 hours. Unless there are more points to discuss. Thanks, Alexey On Mon, Jun 17, 2024 at 8:28 AM Alexey Leonov-Vendrovskiy < vendrov...@gmail.com> wrote: > Done. There was some accidental removal during editing. > > Thanks, > Alexey > > O

Re: [DISCUSSION] FLIP-456: CompiledPlan support for Batch Execution Mode

2024-06-17 Thread Alexey Leonov-Vendrovskiy
Done. There was some accidental removal during editing. Thanks, Alexey On Mon, Jun 17, 2024 at 5:23 AM Jim Hughes wrote: > Hi Alexey, > > Looks reasonable. As a note, I think this sentence is missing some words: > > "Due to batch queries nature, we do not expect the

Re: [DISCUSSION] FLIP-456: CompiledPlan support for Batch Execution Mode

2024-06-17 Thread Alexey Leonov-Vendrovskiy
Thanks Timo and Jim! Added a few sentences to the FLIP to cover your points. -Alexey On Mon, Jun 10, 2024 at 11:23 PM Timo Walther wrote: > Hi Alexey, > > thanks for proposing this FLIP. It is a nice continuation of the vision > we had for CompiledPlan when writing and implement

Re: [DISCUSSION] FLIP-456: CompiledPlan support for Batch Execution Mode

2024-05-13 Thread Alexey Leonov-Vendrovskiy
window of 1yr+ would allow deprecation of older batch exec nodes, though I don't see this as a frequent event. -Alexey On Mon, May 13, 2024 at 1:52 PM Jim Hughes wrote: > Hi Alexey, > > After some thought, I have a question about deprecations: > > 3. Can we remove old version

Re: [DISCUSSION] FLIP-456: CompiledPlan support for Batch Execution Mode

2024-05-07 Thread Alexey Leonov-Vendrovskiy
Hey Paul, Yes, no interchangeability. Just a wire-through for more uniformity. Thanks, Alexey On Tue, May 7, 2024 at 2:10 AM Paul Lam wrote: > Hi Alexey, > > Thanks a lot for bringing up the discussion. I’m big +1 for the FLIP. > > I suppose the goal doesn’t involve the interc

[DISCUSSION] FLIP-456: CompiledPlan support for Batch Execution Mode

2024-05-06 Thread Alexey Leonov-Vendrovskiy
Hi everyone, PTAL at the proposed FLIP-456: CompiledPlan support for Batch Execution Mode. It is pretty self-describing. Any thoughts are welcome! Thanks, Alexey [1] https://cwiki.apache.org/confluence/display/FLINK/FLIP-456%3A+CompiledPlan+support+for+Batch+Execution+Mode .

[jira] [Created] (FLINK-35241) Support SQL FLOOR and CEIL functions with SECOND and MINUTE for TIMESTAMP_TLZ

2024-04-25 Thread Alexey Leonov-Vendrovskiy (Jira)
Alexey Leonov-Vendrovskiy created FLINK-35241: - Summary: Support SQL FLOOR and CEIL functions with SECOND and MINUTE for TIMESTAMP_TLZ Key: FLINK-35241 URL: https://issues.apache.org/jira/browse/FLINK

Re: Making CollectSinkFunction to wait till all results are consumed

2024-02-19 Thread Alexey Leonov-Vendrovskiy
that explicitly does unusual things. Regards, -Alexey On Wed, Feb 14, 2024 at 12:27 AM Piotr Nowojski wrote: > Hi! > > Interesting catch. I think the current master branch behaviour is broken. > The chance to lose some records on `endInput` > is simply a critical bug. The li

Making CollectSinkFunction to wait till all results are consumed

2024-02-11 Thread Alexey Leonov-Vendrovskiy
, the only difference with the change would be that in similar setups it would wait on any buffer size > 0. It makes behavior consistent for results of any non-zero size. Let me know your thoughts. Thanks, Alexey

Re: [VOTE] FLIP-387: Support named parameters for functions and call procedures

2024-01-05 Thread Alexey Leonov-Vendrovskiy
Thanks for starting the vote! Do you mind adding a link from the FLIP to this thread? Thanks, Alexey On Thu, Jan 4, 2024 at 6:48 PM Feng Jin wrote: > Hi everyone > > Thanks for all the feedback about the FLIP-387: Support named parameters > for functions and call procedures [1] [

Re: python Table API problem with pandas

2023-10-27 Thread Alexey Sergeev
# problem_3.py # call to .where() after .map() with pandas type function # also resets column names # and doesn't really filter values import pandas as pd t_env = TableEnvironment.create(EnvironmentSettings.in_streaming_mode()) table = t_env.from_elements( elements=[ (1, 'China'),

Re: python Table API problem with pandas

2023-10-27 Thread Alexey Sergeev
;data').json_value('$.name', DataTypes.STRING()).alias('name'), ) @udf( result_type=( 'Row' ), ) def example_map(row: Row): print('\n'*3, f'{row=}', '\n'*3) # will print: # row=Row(id=1, data='{"

Re: python Table API problem with pandas

2023-10-27 Thread Alexey Sergeev
example_map(row: Row): print('\n'*3, f'{row=}', '\n'*3) # will print: # row=Row(f0=1, f1='{"name": "Flink"}') # expected: # row=Row(id=1, data='{"name": "Flink"}') data = json.loads(row.

python Table API problem with pandas

2023-10-27 Thread Alexey Sergeev
? 2. Is it the expected behavior? 3. How can we get around this? Best regards, Alexey

Re: [DISCUSS] FLIP-348: Support System Columns in SQL and Table API

2023-08-28 Thread Alexey Leonov-Vendrovskiy
e coverage in the currently proposed FLIP, but rather as a way to describe the semantics of system columns that those could be (but don't have to) introduced by any operator. Thanks, Alexey On Tue, Aug 22, 2023 at 2:18 PM Jing Ge wrote: > Hi Timo, > > Your last suggestion sounds

Re: [DISCUSS] FLIP-348: Support System Columns in SQL and Table API

2023-08-04 Thread Alexey Leonov-Vendrovskiy
approach, because it makes the > system columns very accessible and more aligned across the catalogs. > > BTW, I second Alexey that systems columns should not be shown with > DESCRIBE statements. > > WDYT? Thanks! > > Best, > Paul Lam > > > 2023年7月31日 23:54,Jark

Re: [DISCUSS] FLIP-348: Support System Columns in SQL and Table API

2023-07-27 Thread Alexey Leonov-Vendrovskiy
> > `SELECT * FROM (SELECT $rowtime, * FROM t);` > Am I right that it will show `$rowtime` in output ? Yes, all explicitly selected columns become a part of the result (and intermediate) schema, and hence propagate. On Thu, Jul 27, 2023 at 2:40 PM Alexey Leonov-Vendrovskiy

Re: [DISCUSS] FLIP-348: Support System Columns in SQL and Table API

2023-07-27 Thread Alexey Leonov-Vendrovskiy
this vendor-specific / or configurable via flag (if needed). Regards, Alexey On Thu, Jul 27, 2023 at 3:27 AM Sergey Nuyanzin wrote: > Hi Timo, > > Thanks for the FLIP. > I also tend to think that Option 3 is better. > > I would be also interested in a question mentioned by Benc

Re: [Discussion] - Release major Flink version to support JDK 17 (LTS)

2023-04-28 Thread Alexey Novakov
If breaking savepoint compatibility will be eventually an option, I would recommend to try to upgrade Flink's Scala even to *2.13* Best regards, Alexey On Fri, Apr 28, 2023 at 10:22 AM Chesnay Schepler wrote: > We don't know yet. I wanted to run some more experiments to see if

Re: [Discussion] - Take findify/flink-scala-api under Flink umbrella

2023-04-18 Thread Alexey Novakov
er for Java API. If that Scala wrapper is not an official part of Flink project, then it will be unsafe to use Scala at all. Günter has mentioned about it in his reply as well. Best regards, Alexey On Mon, Apr 17, 2023 at 9:27 AM Martijn Visser wrote: > Hi Alexey, > > > Taking into

Re: [Discussion] - Take findify/flink-scala-api under Flink umbrella

2023-04-18 Thread Alexey Novakov
propose my free time to maintain that. As per Roman, required work to maintain the library is very simple. Best regards, Alexey On Sun, Apr 16, 2023 at 11:46 AM David Morávek wrote: > cc dev@f.a.o > > On Sun, Apr 16, 2023 at 11:42 AM David Morávek wrote: > >> Hi Alexey, >&

Re: SQL Gateway and SQL Client

2022-11-01 Thread Alexey Leonov-Vendrovskiy
se/FLINK-29751 (Migrate SQL Client Local Mode to use sql gateway) It currently shows as unassigned. Is this really the case and no one is working on enabling the connection from SQL Client to SQL Gateway. Is the gateway mode planned to be supported for SQL Client in 1.17? Regards, Alexey On Thu, Oct 27,

Re: SQL Gateway and SQL Client

2022-10-27 Thread Alexey Leonov-Vendrovskiy
ing jobs on behalf of the client. Ideally it would be nice to introduce some interfaces in the SQL Gateway that would allow implementing custom authentication and authorization. Another question about persistent Gateway: did you have any specific thoughts about it or some draft design? Thanks,

Re: SQL Gateway and SQL Client

2022-10-18 Thread Alexey Leonov-Vendrovskiy
Persistent Gateway. How can the authentication part be addressed on the SQL Client side? Regards, -Alexey On Wed, Oct 12, 2022 at 11:24 PM yuxia wrote: > > In what Flink’s release the connection from SQL Client to the Gateway is > expected to be added? > Flink 1.17 > > > “Auth

SQL Gateway and SQL Client

2022-10-12 Thread Alexey Leonov-Vendrovskiy
Hi all, I’m Alexey from Confluent. This is my first email in this discussion list. I’m rather new to Flink, and to local customs of communication. I want to dive deeper and hopefully get more involved over time. Currently I have a few questions around SQL Gateway and SQL Client. Specifically I

[jira] [Created] (FLINK-28652) Amazon Linux 2 based Docker container for Flink

2022-07-22 Thread Alexey Petrenko (Jira)
Alexey Petrenko created FLINK-28652: --- Summary: Amazon Linux 2 based Docker container for Flink Key: FLINK-28652 URL: https://issues.apache.org/jira/browse/FLINK-28652 Project: Flink Issue

Re: FileSystemHaServices and BlobStore

2020-09-18 Thread Alexey Trenikhun
contributing to FileSystemHAService, maybe it will be useful to someone else until FLIP-144 will be available Thanks, Alexey From: Yang Wang Sent: Wednesday, September 16, 2020 8:25 PM To: Alexey Trenikhun Cc: dev; Flink User Mail List Subject: Re: FileSystemHaServices and

Re: [DISCUSS] Deprecate and remove UnionList OperatorState

2020-09-14 Thread Alexey Trenikhun
, on restart from where we should start to avoid collision with already generated numbers, to do saw we calculate offset0 as max over union list state. Alexey From: Seth Wiesman Sent: Wednesday, September 9, 2020 9:37:03 AM To: dev Cc: Aljoscha Krettek ; user

Re: FileSystemHaServices and BlobStore

2020-09-02 Thread Alexey Trenikhun
from failure even VoidBlobStore. I also use StatefulSet instead of Deployment Thanks, Alexey From: Yang Wang Sent: Tuesday, September 1, 2020 1:58 AM To: dev Cc: Alexey Trenikhun ; Flink User Mail List Subject: Re: FileSystemHaServices and BlobStore Hi Alexey, Gl

[jira] [Created] (FLINK-11523) TestHarness should provide way to configure TypeSerailizers for side output

2019-02-04 Thread Alexey Trenikhin (JIRA)
Alexey Trenikhin created FLINK-11523: Summary: TestHarness should provide way to configure TypeSerailizers for side output Key: FLINK-11523 URL: https://issues.apache.org/jira/browse/FLINK-11523

[jira] [Created] (FLINK-10621) BootstrapToolsTest.testConcurrentActorSystemCreation hangs forever when running locally

2018-10-20 Thread Alexey Trenikhin (JIRA)
Alexey Trenikhin created FLINK-10621: Summary: BootstrapToolsTest.testConcurrentActorSystemCreation hangs forever when running locally Key: FLINK-10621 URL: https://issues.apache.org/jira/browse/FLINK-10621

[jira] [Created] (FLINK-10127) Add TypeInformation and serializers for JDK7 Instant

2018-08-12 Thread Alexey Trenikhin (JIRA)
Alexey Trenikhin created FLINK-10127: Summary: Add TypeInformation and serializers for JDK7 Instant Key: FLINK-10127 URL: https://issues.apache.org/jira/browse/FLINK-10127 Project: Flink

[jira] [Created] (FLINK-9472) Maven archetype code has typo in documentation

2018-05-29 Thread Alexey Tsitkin (JIRA)
Alexey Tsitkin created FLINK-9472: - Summary: Maven archetype code has typo in documentation Key: FLINK-9472 URL: https://issues.apache.org/jira/browse/FLINK-9472 Project: Flink Issue Type

Re: [RESULT][VOTE] Release 1.4.0, release candidate #3

2017-12-12 Thread Alexey Demin
Hi >> The voting time has passed and I'm happy to announce that we've collected enough votes to release this RC as Flink 1.3.2. Maybe 1.4.0, because 1.3.2 already exist =) 2017-12-12 13:58 GMT+04:00 Aljoscha Krettek : > The voting time has passed and I'm happy to announce that we've collected

Re: Update Netty version

2017-06-07 Thread Alexey Demin
dency on netty-router 2) rebuild and repack netty-router 1.10 with new version on netty 4.1 (as PoC I already did this work, and all work correctly, only small changes required) We already have custom akka build and build also netty-router under discussion. Thanks Alexey Diomin 2017-06-08 0:13 G

Re: Update Netty version

2017-05-18 Thread Alexey Demin
first step and enable select sslengine as second step, not all in one step. > However, if we do the change at the beginning of the next release cycle, we > might have enough exposure time to verify whether things work or not. We just start 1.4 iteration and have time for testing. Thank, A

Update Netty version

2017-05-17 Thread Alexey Demin
did tests and all work correctly, small changes in NettyBufferPool.java and ChunkedByteBuf.java is required (implement new method which added to interface). Thanks Alexey Diomin

Re: [DISCUSS] (Not) tagging reviewers

2017-01-16 Thread Alexey Demin
ithout any hesitation. Thanks Alexey Diomin 2017-01-16 16:36 GMT+04:00 Ufuk Celebi : > On 16 January 2017 at 12:59:04, Paris Carbone (par...@kth.se) wrote: > > > Though, when someone has started reviewing a PR and shows interest > > it probably makes sense to finish doing

[jira] [Created] (FLINK-5497) remove duplicated tests

2017-01-15 Thread Alexey Diomin (JIRA)
Alexey Diomin created FLINK-5497: Summary: remove duplicated tests Key: FLINK-5497 URL: https://issues.apache.org/jira/browse/FLINK-5497 Project: Flink Issue Type: Improvement

Re: Flink CEP development is stalling

2017-01-15 Thread Alexey Demin
Hi Ivan, I think problem not only with CEP project. Main contributors overloaded and simple fixes frequently are staying as PR without merge. You can see how amount of open PR increasing over time. Thanks, Alexey Diomin 2017-01-15 17:18 GMT+04:00 Ivan Mushketyk : > Hi Dmitry, >

Re: Slow duplicated tests

2017-01-10 Thread Alexey Demin
e, Jan 10, 2017 at 3:29 PM, Aljoscha Krettek > wrote: > >> Thanks for looking into this! I think we can put in the fix and remove one >> of the tests, yes. >> >> @Robert What do you think? I think you initially added this test a loooong >> while back. >&g

Slow duplicated tests

2017-01-09 Thread Alexey Demin
terator to allow immutable objects) Aljoscha, can we remove one test and fix buildSide.next(record) to buildSide.next(recordReuse) ? P.S. I started review because we have a lot of failing test due to cpu time limit Thanks, Alexey

Re: time format for akka status

2017-01-09 Thread Alexey Demin
longrunning applications print hours without date very uninformative. What do you think? Thanks, Alexey 2017-01-09 17:25 GMT+04:00 Till Rohrmann : > Hi Alexey, > > this is a good proposal. Could you open a corresponding JIRA issue for this > change? > > Cheers, > Till >

[jira] [Created] (FLINK-5431) time format for akka status

2017-01-09 Thread Alexey Diomin (JIRA)
Alexey Diomin created FLINK-5431: Summary: time format for akka status Key: FLINK-5431 URL: https://issues.apache.org/jira/browse/FLINK-5431 Project: Flink Issue Type: Improvement

Re: DataStream and CEP - Pattern not matching after applying a window

2017-01-08 Thread Alexey Demin
Hi Because flink use lazy evaluation and because inactivityCEP don't have any output then you pattern not apply. / inactivityCEP.select(new PatternSelectFunction() { @Override public Object select(Map pattern) throws Exception { System.out.println(pattern); return null; } }); / >> What am I mis

time format for akka status

2017-01-07 Thread Alexey Demin
e or maybe stay only HH:mm:ss Thanks, Alexey

Re: NullPointerException in beam stream runner

2016-08-31 Thread Demin Alexey
Thanks with if (translator == null || !applyCanTranslate(transform, node, translator)) all working as expectected Regards, Alexey Diomin 2016-08-31 14:12 GMT+04:00 Aljoscha Krettek : > Ah I see, an unbounded source, such as the Kafka source does not work in > batch mode

Re: NullPointerException in beam stream runner

2016-08-31 Thread Demin Alexey
ow) 2016-08-31 13:53 GMT+04:00 Demin Alexey : > Hi > > If we can change code on translator != null then next line ( > applyStreamingTransform(transform, node, translator); ) will cause NPE > > It's main problem why I don't understand code: > > x = nul

Re: NullPointerException in beam stream runner

2016-08-31 Thread Demin Alexey
te(transform, node, translator)) > > With what program did you encounter an NPE, it seems to me that this should > rarely happen, at least it doesn't happen in all the Beam runner tests. > > Cheers, > Aljoscha > > On Wed, 31 Aug 2016 at 11:27 Demin Alexey wrote: > >

Fwd: NullPointerException in beam stream runner

2016-08-31 Thread Demin Alexey
t in your code then you will cause NPE Maybe Aljoscha Krettek could describe how this code must work? Regards, Alexey Diomin

[jira] [Created] (FLINK-4148) incorrect calculation distance in QuadTree

2016-07-04 Thread Alexey Diomin (JIRA)
Alexey Diomin created FLINK-4148: Summary: incorrect calculation distance in QuadTree Key: FLINK-4148 URL: https://issues.apache.org/jira/browse/FLINK-4148 Project: Flink Issue Type: Bug

Re: Towards Flink 0.10

2015-10-06 Thread Alexey Sapozhnikov
> > > > the > > > > > > > > last release before 1.0. > > > > > > > > > > > > > > > > For 0.10 we most noticeably have the new Streaming API which > > > comes > > > > > > > > with an improved runtime including exactly-once sources and > > > sinks. > > > > > > > > Additionally, we have a new web interface with support for > > > > > > > > live-monitoring. Not to mention the countless fixes and > > > > improvements. > > > > > > > > > > > > > > > > I've been ransacking the JIRA issues to find out what issues > we > > > > have > > > > > > > > to fix before we can release. I've put these issues on the > 0.10 > > > > wiki > > > > > > > > page: > > > > https://cwiki.apache.org/confluence/display/FLINK/0.10+Release > > > > > > > > > > > > > > > > It would be great to fix all of these issues. However, I > think > > we > > > > > need > > > > > > > > to be pragmatic and pick the most pressing ones. Let's do > that > > on > > > > the > > > > > > > > wiki page on the "To Be Fixed" section. > > > > > > > > > > > > > > > > Cheers, > > > > > > > > Max > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -- *Regards* *Alexey Sapozhnikov* CTO& Co-Founder Scalabillit Inc Aba Even 10-C, Herzelia, Israel M : +972-52-2363823 E : ale...@scalabill.it W : http://www.scalabill.it YT - https://youtu.be/9Rj309PTOFA Map:http://mapta.gs/Scalabillit Revolutionizing Proof-of-Concept

RE: Flink ML linear regression issue

2015-09-18 Thread alexey
creation of pipelines for Java is more of a +long term project, but we should make it possible to manually create pipelines in Java. On Fri, Sep 18, 2015 at 11:15 AM, Till Rohrmann wrote: > Hi Alexey and Hanan, > > one of FlinkML’s feature is the flexible pipelining mechanism. It > a

Re: Flink ML linear regression issue

2015-09-17 Thread Alexey Sapozhnikov
ve been > already > implemented in Flinks ml source code. > > Another option is using MultipleLinearRegression.fitMLR() method ,but I > haven't found a way to pass the train dataset to it as a parameter or by > setter. > > I'll be more than happy if you could guide me how to imple

Re: Apache Flink:ProgramInvocationException on Yarn

2015-08-30 Thread Alexey Sapozhnikov
wrote: > Why are the external IPs not working? Any kind of exception you can share? > > On Sun, Aug 30, 2015 at 5:02 PM, Alexey Sapozhnikov > wrote: > > > it will not help, since the internal IPs are changing in AWS from time to > > time and you should use only Public IP, w

Re: Apache Flink:ProgramInvocationException on Yarn

2015-08-30 Thread Alexey Sapozhnikov
> > On Sun, Aug 30, 2015 at 4:44 PM, Alexey Sapozhnikov > wrote: > > > Fully understand. > > 1.My suggestion is to drop Akka and take something else, since this issue > > is really big > > 2.Not hostname not the endpoint are not working, clarifying the VPC topi

Re: Apache Flink:ProgramInvocationException on Yarn

2015-08-30 Thread Alexey Sapozhnikov
side, we have been using Flink on Cloud Platforms GCE, Amazon, > and it worked. > > Can you try to use the internal hostname, or the fully qualified external > hostname? > > > On Sun, Aug 30, 2015 at 4:23 PM, Alexey Sapozhnikov > wrote: > > > Hi. > > First off

Re: Apache Flink:ProgramInvocationException on Yarn

2015-08-30 Thread Alexey Sapozhnikov
mazon-Linux.html > Can you easily activate a DNS server in the VPC? > > 0.0.0.0 is not supported because of some requirements of the Akka > framework. > But you should be able to use the host's IP address. > Can you try that as well? > > > > > On Sun, Aug 30, 2015

Re: Apache Flink:ProgramInvocationException on Yarn

2015-08-30 Thread Alexey Sapozhnikov
dress.java:928) @ 21,1 71% On Sun, Aug 30, 2015 at 4:57 PM, Robert Metzger wrote: > How is Flink crashing when you start it on the Linux machine in Amazon? > > Can you post the exception here? > > On Sun, Aug 30

Re: Apache Flink:ProgramInvocationException on Yarn

2015-08-30 Thread Alexey Sapozhnikov
; > Batch$$anonfun$run$1.processBatch$1(BatchingExecutor.scala:67) > > > > > > > > at > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > akka.dispatch.Batch

Re: Apache Flink:ProgramInvocationException on Yarn

2015-08-27 Thread Alexey Sapozhnikov
Hello all. Some clarification: locally everything works great. However once we run our Flink on remote linux machine and try to run the client program from our machine, using create remote environment- Flink JobManager is raising this exception On Thu, Aug 27, 2015 at 7:41 PM, Stephan Ewen wrote

Re: Apache Flink:ProgramInvocationException on Yarn

2015-08-27 Thread Alexey Sapozhnikov
Hello all. Some clarification: locally everything works great. However once we run our Flink on remote linux machine and try to run the client program from our machine, using create remote environment- Flink JobManager is raising this exception On Thu, Aug 27, 2015 at 7:41 PM, Stephan Ewen wrote