[GitHub] flink issue #5996: [FLINK-9343] [Example] Add Async Example with External Re...

2018-06-26 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/5996 @StephanEwen I would appreciate it if you do the review after my changes! ---

[GitHub] flink issue #5996: [FLINK-9343] [Example] Add Async Example with External Re...

2018-05-31 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/5996 @StephanEwen PR is updated as requested! I would appreciate if you review. ---

[GitHub] flink issue #5996: [FLINK-9343] [Example] Add Async Example with External Re...

2018-05-27 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/5996 @StephanEwen I updated the code and used `ExecutionContext.global` which makes use of threadpool. I tested it and results showed that the code sent off multiple requests concurrently

[GitHub] flink issue #5996: [FLINK-9343] [Example] Add Async Example with External Re...

2018-05-26 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/5996 @StephanEwen Thanks for review. make sense, I will update the client code to use Threadpool and will run more tests. ---

[GitHub] flink issue #5996: [FLINK-9343] [Example] Add Async Example with External Re...

2018-05-23 Thread StephanEwen
Github user StephanEwen commented on the issue: https://github.com/apache/flink/pull/5996 Async I/O works best with asynchronous clients. For synchronous client, you need a threadpool or something else to concurrently fire off requests. ---

[GitHub] flink issue #5996: [FLINK-9343] [Example] Add Async Example with External Re...

2018-05-23 Thread StephanEwen
Github user StephanEwen commented on the issue: https://github.com/apache/flink/pull/5996 I had a quick look at the code example, and it looks like it might not actually do asynchronous I/O. It dispatches a synchronous HTTP request on a direct executor (`onComplete`s in a direct

[GitHub] flink issue #5996: [FLINK-9343] [Example] Add Async Example with External Re...

2018-05-22 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/5996 @zentol I would appreciate if you review this. We use this type of example for enriching our Steam data via API call which is very common use-case and I think it would be useful for other people to

[GitHub] flink issue #5996: [FLINK-9343] [Example] Add Async Example with External Re...

2018-05-16 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/5996 @tzulitai I would appreciate if you review this. ---

[GitHub] flink issue #5996: [FLINK-9343] [Example] Add Async Example with External Re...

2018-05-13 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/5996 @StephanEwen please review ---