[GitHub] flink issue #6259: [FLINK-9679] Implement AvroSerializationSchema

2018-07-19 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/6259 @tillrohrmann Please review ---

[GitHub] flink issue #6259: [FLINK-9679] Implement AvroSerializationSchema

2018-07-19 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/6259 @dawidwys Thanks for your suggestions. New commit extend `SchemaCoder` with `writeSchema` method that helps to move the writing schema logic away from `AvroSerializationSchema` as you suggested

[GitHub] flink issue #6259: [FLINK-9679] Implement AvroSerializationSchema

2018-07-18 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/6259 @dawidwys in last commit, I did extend `SchemaCoder` to have `getSchemaId` as you suggested. ---

[GitHub] flink issue #6259: [FLINK-9679] Implement AvroSerializationSchema

2018-07-18 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/6259 @dawidwys For second issue I am looking at other Schema registries and trying to extend `SchemaCoder` ---

[GitHub] flink issue #6259: [FLINK-9679] Implement AvroSerializationSchema

2018-07-18 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/6259 @dawidwys Thanks! As far as I dog on Confluent code, their api needs `subject` to retrieve the Schema Id and version and it should be provided by consumer. https://github.com

[GitHub] flink issue #6259: [FLINK-9679] Implement AvroSerializationSchema

2018-07-18 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/6259 @dawidwys I update the PR, please review the usage would be like this ` ConfluentRegistryAvroSerializationSchema.forSpecific(User.class, subject, schemaRegistryUrl)` as Confluent

[GitHub] flink issue #6259: [FLINK-9679] Implement AvroSerializationSchema

2018-07-10 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/6259 @dawidwys Thanks a lot for the review. I will start look into both problems that you've pointed out. Second point would be easy to fix but for the first one I need do some research and se

[GitHub] flink issue #6269: [FLINK-9770][rest] Fix jar listing

2018-07-05 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/6269 +1 ---

[GitHub] flink issue #6270: [FLINK-9769][rest] Clear FileUpload attribute after acces...

2018-07-05 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/6270 +1 I rebuilt the 1.5.1 with this changes and now `Upload` jar file from WebUI working. ---

[GitHub] flink issue #6259: [FLINK-9679] Implement AvroSerializationSchema

2018-07-04 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/6259 @tillrohrmann I implemented `ConfluentRegistryAvroSerializationSchema` in this PR. I would appreciate if you review. ---

[GitHub] flink pull request #6259: [FLINK-9679] Implement AvroSerializationSchema

2018-07-04 Thread medcv
GitHub user medcv opened a pull request: https://github.com/apache/flink/pull/6259 [FLINK-9679] Implement AvroSerializationSchema ## What is the purpose of the change Provides implementation of AvroSerializationSchema that write records serialized as avro and also provides

[GitHub] flink issue #6083: [FLINK-8983] End-to-end test: Confluent schema registry

2018-06-27 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/6083 @tillrohrmann PR has been updated! I had to do some changes: - map `User` object to `String` in `TestAvroConsumerConfluent` class - use `read_messages_from_kafka` instead of

[GitHub] flink issue #6083: [FLINK-8983] End-to-end test: Confluent schema registry

2018-06-27 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/6083 @tillrohrmann make sense. I created this ticket https://issues.apache.org/jira/browse/FLINK-9679 for implementing `AvroSerializationConfluentSchema`. I will make a PR for it shortly. Mean

[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 #6084: [FLINK-8654][Docs] Extend quickstart docs on how to submi...

2018-06-26 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/6084 @zentol PR has been updated! Please review. ---

[GitHub] flink pull request #5995: [FLINK-9337] Implemented AvroDeserializationSchema

2018-06-26 Thread medcv
Github user medcv commented on a diff in the pull request: https://github.com/apache/flink/pull/5995#discussion_r198150284 --- Diff: flink-formats/flink-avro-confluent-registry/src/main/java/org/apache/flink/formats/avro/registry/confluent

[GitHub] flink pull request #5995: [FLINK-9337] Implemented AvroDeserializationSchema

2018-06-26 Thread medcv
Github user medcv commented on a diff in the pull request: https://github.com/apache/flink/pull/5995#discussion_r198150153 --- Diff: flink-formats/flink-avro-confluent-registry/src/main/java/org/apache/flink/formats/avro/registry/confluent

[GitHub] flink issue #6083: [FLINK-8983] End-to-end test: Confluent schema registry

2018-06-26 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/6083 @tillrohrmann here is my two cents: By converting the events to `String` and sending them to Kafka there is a high risk to produce a `bad events` and we will lose the benifit of Schema

[GitHub] flink issue #6083: [FLINK-8983] End-to-end test: Confluent schema registry

2018-06-25 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/6083 @tillrohrmann I made the changes and used `ConfluentRegistryAvroDeserializationSchema` for the Deserializations. I still using `AvroSerializationConfluentSchema` as we need to compare each

[GitHub] flink pull request #6083: [FLINK-8983] End-to-end test: Confluent schema reg...

2018-06-25 Thread medcv
Github user medcv commented on a diff in the pull request: https://github.com/apache/flink/pull/6083#discussion_r197994751 --- Diff: flink-end-to-end-tests/flink-confluent-schema-registry/pom.xml --- @@ -0,0 +1,228 @@ + +http://maven.apache.org/POM/4.0.0

[GitHub] flink pull request #6083: [FLINK-8983] End-to-end test: Confluent schema reg...

2018-06-25 Thread medcv
Github user medcv commented on a diff in the pull request: https://github.com/apache/flink/pull/6083#discussion_r197994770 --- Diff: flink-end-to-end-tests/flink-confluent-schema-registry/pom.xml --- @@ -0,0 +1,155 @@ + +http://maven.apache.org/POM/4.0.0

[GitHub] flink issue #6083: [FLINK-8983] End-to-end test: Confluent schema registry

2018-06-25 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/6083 @dawidwys do u have an example using `ConfluentRegistryAvroDeserializationSchema`. I have some difficulties to make it work ---

[GitHub] flink pull request #6083: [FLINK-8983] End-to-end test: Confluent schema reg...

2018-06-22 Thread medcv
Github user medcv commented on a diff in the pull request: https://github.com/apache/flink/pull/6083#discussion_r197493383 --- Diff: flink-end-to-end-tests/flink-confluent-schema-registry/pom.xml --- @@ -0,0 +1,155 @@ + +http://maven.apache.org/POM/4.0.0

[GitHub] flink issue #6083: [FLINK-8983] End-to-end test: Confluent schema registry

2018-06-21 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/6083 @tillrohrmann PR is updated please review! I will also look into `ConfluentRegistryAvroDeserializationSchema` ---

[GitHub] flink pull request #6083: [FLINK-8983] End-to-end test: Confluent schema reg...

2018-06-21 Thread medcv
Github user medcv commented on a diff in the pull request: https://github.com/apache/flink/pull/6083#discussion_r197128954 --- Diff: flink-end-to-end-tests/test-scripts/test-confluent-schema-registry.sh --- @@ -0,0 +1,106 @@ +#!/usr/bin/env bash

[GitHub] flink issue #6083: [FLINK-8983] End-to-end test: Confluent schema registry

2018-06-18 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/6083 @dawidwys Thanks for the review! I will look into that PR. This test is for Release 1.4 and 1.5 and provide a proof that Flink V4.0 and V5.0 can work with ConfluentSchema Registry properly. As PR you

[GitHub] flink issue #6138: [FLINK-9550][DOC]FlinkCEP snippet example has some syntax...

2018-06-18 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/6138 @dawidwys PR's been updated! Please review. ---

[GitHub] flink issue #6138: [FLINK-9550][DOC]FlinkCEP snippet example has some syntax...

2018-06-15 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/6138 @dawidwys Thanks for the review! ---

[GitHub] flink pull request #6138: [FLINK-9550][DOC]FlinkCEP snippet example has some...

2018-06-15 Thread medcv
Github user medcv commented on a diff in the pull request: https://github.com/apache/flink/pull/6138#discussion_r195749896 --- Diff: docs/dev/libs/cep.md --- @@ -131,7 +131,7 @@ val result: DataStream[Alert] = patternStream.select(createAlert(_)) The pattern API allows you to

[GitHub] flink pull request #6138: [FLINK-9550][DOC]FlinkCEP snippet example has some...

2018-06-15 Thread medcv
Github user medcv commented on a diff in the pull request: https://github.com/apache/flink/pull/6138#discussion_r195749997 --- Diff: docs/dev/libs/cep.md --- @@ -275,36 +275,38 @@ with "foo", and if the sum of the prices of the previously accepted ev

[GitHub] flink issue #6083: [FLINK-8983] End-to-end test: Confluent schema registry

2018-06-14 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/6083 @tillrohrmann Thanks for the review! I will go through them and will make the changes shortly. ---

[GitHub] flink issue #6083: [FLINK-8983] End-to-end test: Confluent schema registry

2018-06-12 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/6083 @dmpour23 Thanks! I updated the import as`*.util.serialization` was Deprecated! ---

[GitHub] flink issue #6146: [FLINK-9564][tests] Expose flink-end-to-end module direct...

2018-06-11 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/6146 +1 ---

[GitHub] flink issue #6145: [FLINK-9564][tests] Expose flink-end-to-end module direct...

2018-06-11 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/6145 +1 ---

[GitHub] flink issue #6084: [FLINK-8654][Docs] Extend quickstart docs on how to submi...

2018-06-11 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/6084 @zentol sure, will update the PR shortly! ---

[GitHub] flink issue #6139: [FLINK-9551][DOCS]FlinkCEP Scala Combining Patterns table...

2018-06-09 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/6139 @zentol Please review ---

[GitHub] flink issue #6136: [FLINK-4303] [CEP] Add CEP examples

2018-06-08 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/6136 +1 @kisimple Thank you for update! ---

[GitHub] flink pull request #6136: [FLINK-4303] [CEP] Add CEP examples

2018-06-08 Thread medcv
Github user medcv commented on a diff in the pull request: https://github.com/apache/flink/pull/6136#discussion_r194052688 --- Diff: flink-examples/flink-examples-cep/src/main/java/org/apache/flink/cep/examples/java/monitoring/TemperatureMonitoring.java --- @@ -0,0 +1,147

[GitHub] flink issue #6141: flink-metrics-datadog: beautify metric name by excluding ...

2018-06-08 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/6141 @DmitryBe Thank you! is there a Jira ticket associate to this? I suggest add Jira ticket and update PR title according the Contribution guideline ---

[GitHub] flink pull request #6136: FLINK-4303] [CEP] Add CEP examples

2018-06-07 Thread medcv
Github user medcv commented on a diff in the pull request: https://github.com/apache/flink/pull/6136#discussion_r193934789 --- Diff: flink-examples/flink-examples-cep/src/main/scala/org/apache/flink/cep/examples/scala/monitoring/TemperatureMonitoring.scala --- @@ -0,0 +1,107

[GitHub] flink pull request #6136: FLINK-4303] [CEP] Add CEP examples

2018-06-07 Thread medcv
Github user medcv commented on a diff in the pull request: https://github.com/apache/flink/pull/6136#discussion_r193934744 --- Diff: flink-examples/flink-examples-cep/src/main/java/org/apache/flink/cep/examples/java/monitoring/TemperatureMonitoring.java --- @@ -0,0 +1,147

[GitHub] flink issue #6136: FLINK-4303] [CEP] Add CEP examples

2018-06-07 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/6136 @kisimple Recently I started to work on same example. I ran your code on my local and it did work perfectly. I could see some checkstyle errors that I think travis might pick them up. I have

[GitHub] flink pull request #6138: [FLINK-9550][DOC]FlinkCEP snippet example has some...

2018-06-07 Thread medcv
GitHub user medcv opened a pull request: https://github.com/apache/flink/pull/6138 [FLINK-9550][DOC]FlinkCEP snippet example has some syntax errors ## What is the purpose of the change Fixing FlinkCEP snippet code syntax errors and data type mismatches

[GitHub] flink issue #6128: [FLINK-9539][build] Integrate flink-shaded 4.0

2018-06-07 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/6128 +1 ---

[GitHub] flink pull request #6139: [FLINK-9551][DOCS]FlinkCEP Scala Combining Pattern...

2018-06-07 Thread medcv
GitHub user medcv opened a pull request: https://github.com/apache/flink/pull/6139 [FLINK-9551][DOCS]FlinkCEP Scala Combining Patterns table has a missing pattern ## What is the purpose of the change in FlinkCEP documentation section related to Combining Patterns

[GitHub] flink pull request #6137: [FLINK-9549][DOC]Fix FlickCEP Docs broken link and...

2018-06-07 Thread medcv
GitHub user medcv opened a pull request: https://github.com/apache/flink/pull/6137 [FLINK-9549][DOC]Fix FlickCEP Docs broken link and minor style changes ## What is the purpose of the change Fixing FlickCEP broken link and minor style changes ## Does this pull

[GitHub] flink issue #6083: [FLINK-8983] End-to-end test: Confluent schema registry

2018-06-06 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/6083 @tillrohrmann Thanks a lot for doing the review! ---

[GitHub] flink issue #6084: [FLINK-8654][Docs] Extend quickstart docs on how to submi...

2018-06-06 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/6084 @zentol yes, that also works. Do you still need me to change it and extend `Next Steps` or we can keep this to provide a bit more info for different ways to submitting jobs. ---

[GitHub] flink issue #6089: [FLINK-9451]End-to-end test: Scala Quickstarts

2018-06-06 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/6089 @zentol Thanks for the review. I made the clean up and did some changes to get the ES dependency from flink-quickstart-test/pom.xml ---

[GitHub] flink pull request #6089: [FLINK-9451]End-to-end test: Scala Quickstarts

2018-06-06 Thread medcv
Github user medcv commented on a diff in the pull request: https://github.com/apache/flink/pull/6089#discussion_r193581841 --- Diff: flink-end-to-end-tests/test-scripts/test_quickstarts.sh --- @@ -51,12 +59,12 @@ sed -i -e ''"$(($position + 1))"

[GitHub] flink pull request #6089: [FLINK-9451]End-to-end test: Scala Quickstarts

2018-06-06 Thread medcv
Github user medcv commented on a diff in the pull request: https://github.com/apache/flink/pull/6089#discussion_r193581372 --- Diff: flink-end-to-end-tests/flink-quickstart-test/pom.xml --- @@ -0,0 +1,98 @@ + + +http://maven.apache.org/POM/4.0.0

[GitHub] flink pull request #6089: [FLINK-9451]End-to-end test: Scala Quickstarts

2018-06-06 Thread medcv
Github user medcv commented on a diff in the pull request: https://github.com/apache/flink/pull/6089#discussion_r193581567 --- Diff: flink-end-to-end-tests/flink-quickstart-test/pom.xml --- @@ -0,0 +1,98 @@ + + +http://maven.apache.org/POM/4.0.0

[GitHub] flink pull request #6089: [FLINK-9451]End-to-end test: Scala Quickstarts

2018-06-06 Thread medcv
Github user medcv commented on a diff in the pull request: https://github.com/apache/flink/pull/6089#discussion_r193581591 --- Diff: flink-end-to-end-tests/flink-quickstart-test/pom.xml --- @@ -0,0 +1,98 @@ + + +http://maven.apache.org/POM/4.0.0

[GitHub] flink issue #6089: [FLINK-9451]End-to-end test: Scala Quickstarts

2018-06-04 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/6089 @zentol PR has been updated and usage also changed to `test_quickstarts.sh ` ---

[GitHub] flink pull request #6114: [FLINK-9518][Docs] SSL setup Docs config example h...

2018-06-04 Thread medcv
GitHub user medcv opened a pull request: https://github.com/apache/flink/pull/6114 [FLINK-9518][Docs] SSL setup Docs config example has wrong keys password ## What is the purpose of the change In creating keystores and turststore section password is set to `password` but

[GitHub] flink pull request #6113: [FLINK-9517][Docs]Fixing broken links on CLI and U...

2018-06-04 Thread medcv
GitHub user medcv opened a pull request: https://github.com/apache/flink/pull/6113 [FLINK-9517][Docs]Fixing broken links on CLI and Upgrade Docs ## What is the purpose of the change Fixes broken links for CLI and Upgrade docs. ## Does this pull request potentially

[GitHub] flink issue #6112: [FLINK-9508][Docs]General Spell Check on Flink Docs

2018-06-04 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/6112 @zentol PR is updated! I would appreciate if you review and again so sorry for mixing concerns in a PR. ---

[GitHub] flink pull request #6112: [FLINK-9508][Docs]General Spell Check on Flink Doc...

2018-06-04 Thread medcv
Github user medcv commented on a diff in the pull request: https://github.com/apache/flink/pull/6112#discussion_r192697051 --- Diff: docs/dev/execution_configuration.md --- @@ -45,41 +45,41 @@ The following configuration options are available: (the default is bold

[GitHub] flink pull request #6112: [FLINK-9508][Docs]General Spell Check on Flink Doc...

2018-06-04 Thread medcv
Github user medcv commented on a diff in the pull request: https://github.com/apache/flink/pull/6112#discussion_r192693691 --- Diff: docs/ops/upgrading.md --- @@ -172,7 +172,7 @@ First major step in job migration is taking a savepoint of your job running in t You can do this

[GitHub] flink pull request #6112: [FLINK-9508][Docs]General Spell Check on Flink Doc...

2018-06-04 Thread medcv
Github user medcv commented on a diff in the pull request: https://github.com/apache/flink/pull/6112#discussion_r192693807 --- Diff: docs/ops/filesystems.md --- @@ -112,10 +111,9 @@ To prevent inactive streams from taking up the complete pool (preventing new con `fs

[GitHub] flink pull request #6112: [FLINK-9508][Docs]General Spell Check on Flink Doc...

2018-06-04 Thread medcv
Github user medcv commented on a diff in the pull request: https://github.com/apache/flink/pull/6112#discussion_r192690554 --- Diff: docs/ops/upgrading.md --- @@ -183,15 +183,15 @@ In this step, we update the framework version of the cluster. What this basicall the Flink

[GitHub] flink pull request #6112: [FLINK-9508][Docs]General Spell Check on Flink Doc...

2018-06-04 Thread medcv
Github user medcv commented on a diff in the pull request: https://github.com/apache/flink/pull/6112#discussion_r192689975 --- Diff: docs/ops/security-ssl.md --- @@ -22,22 +22,22 @@ specific language governing permissions and limitations under the License

[GitHub] flink pull request #6112: [FLINK-9508][Docs]General Spell Check on Flink Doc...

2018-06-04 Thread medcv
Github user medcv commented on a diff in the pull request: https://github.com/apache/flink/pull/6112#discussion_r192689067 --- Diff: docs/ops/filesystems.md --- @@ -70,21 +70,20 @@ That way, Flink seamlessly supports all of Hadoop file systems, and all Hadoop-c - **har

[GitHub] flink pull request #6112: [FLINK-9508][Docs]General Spell Check on Flink Doc...

2018-06-04 Thread medcv
Github user medcv commented on a diff in the pull request: https://github.com/apache/flink/pull/6112#discussion_r192689122 --- Diff: docs/ops/filesystems.md --- @@ -70,21 +70,20 @@ That way, Flink seamlessly supports all of Hadoop file systems, and all Hadoop-c - **har

[GitHub] flink pull request #6112: [FLINK-9508][Docs]General Spell Check on Flink Doc...

2018-06-04 Thread medcv
Github user medcv commented on a diff in the pull request: https://github.com/apache/flink/pull/6112#discussion_r192689028 --- Diff: docs/internals/ide_setup.md --- @@ -89,7 +89,7 @@ IntelliJ supports checkstyle within the IDE using the Checkstyle-IDEA plugin. 3. Set the

[GitHub] flink issue #6112: [FLINK-9508][Docs]General Spell Check on Flink Docs

2018-06-04 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/6112 @zentol Thanks a lot for review and I am so sorry for causing pain. I will reduce the scope of this PR and only keep spelling issues for now. ---

[GitHub] flink pull request #6112: [FLINK-9508][Docs]General Spell Check on Flink Doc...

2018-06-03 Thread medcv
GitHub user medcv opened a pull request: https://github.com/apache/flink/pull/6112 [FLINK-9508][Docs]General Spell Check on Flink Docs ## What is the purpose of the change General spell check for Flink docs ## Does this pull request potentially affect one of

[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 #6083: [FLINK-8983] End-to-end test: Confluent schema registry

2018-05-31 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/6083 @tillrohrmann I would appreciate if you review or assign a reviewer to this PR. ---

[GitHub] flink issue #6084: [FLINK-8654][Docs] Extend quickstart docs on how to submi...

2018-05-31 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/6084 @zentol Please review ---

[GitHub] flink issue #6089: [FLINK-9451]End-to-end test: Scala Quickstarts

2018-05-31 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/6089 @zentol PR is updated with requested changes! Please review ---

[GitHub] flink issue #6089: [FLINK-9451]End-to-end test: Scala Quickstarts

2018-05-30 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/6089 @zentol PR is updated! ---

[GitHub] flink pull request #6089: [FLINK-9451]End-to-end test: Scala Quickstarts

2018-05-30 Thread medcv
Github user medcv commented on a diff in the pull request: https://github.com/apache/flink/pull/6089#discussion_r191740715 --- Diff: flink-end-to-end-tests/test-scripts/elasticsearch-common.sh --- @@ -75,6 +76,8 @@ function verify_result { } function

[GitHub] flink pull request #6089: [FLINK-9451]End-to-end test: Scala Quickstarts

2018-05-30 Thread medcv
Github user medcv commented on a diff in the pull request: https://github.com/apache/flink/pull/6089#discussion_r191740903 --- Diff: flink-end-to-end-tests/test-scripts/test_quickstarts.sh --- @@ -18,29 +18,38

[GitHub] flink pull request #6089: [FLINK-9451]End-to-end test: Scala Quickstarts

2018-05-30 Thread medcv
Github user medcv commented on a diff in the pull request: https://github.com/apache/flink/pull/6089#discussion_r191740667 --- Diff: flink-end-to-end-tests/test-scripts/elasticsearch-common.sh --- @@ -56,13 +56,14 @@ function verify_elasticsearch_process_exist { function

[GitHub] flink issue #6089: [FLINK-9451]End-to-end test: Scala Quickstarts

2018-05-30 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/6089 @zentol Thanks! found them :) ---

[GitHub] flink issue #6089: [FLINK-9451]End-to-end test: Scala Quickstarts

2018-05-30 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/6089 @zentol I reverted back flink-elasticsearch* modules. Do you think we still need them as they've never been used? ---

[GitHub] flink pull request #6089: [FLINK-9451]End-to-end test: Scala Quickstarts

2018-05-30 Thread medcv
Github user medcv commented on a diff in the pull request: https://github.com/apache/flink/pull/6089#discussion_r191733069 --- Diff: flink-end-to-end-tests/flink-quickstart-test/pom.xml --- @@ -86,6 +102,21 @@ under the License

[GitHub] flink pull request #6089: [FLINK-9451]End-to-end test: Scala Quickstarts

2018-05-30 Thread medcv
Github user medcv commented on a diff in the pull request: https://github.com/apache/flink/pull/6089#discussion_r191732783 --- Diff: flink-end-to-end-tests/flink-quickstart-test/pom.xml --- @@ -20,27 +20,43 @@ under the License. http://maven.apache.org/POM/4.0.0

[GitHub] flink issue #6089: [FLINK-9451]End-to-end test: Scala Quickstarts

2018-05-29 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/6089 @zentol updated the PR as suggested! Please review ---

[GitHub] flink issue #6089: [FLINK-9451]End-to-end test: Scala Quickstarts

2018-05-29 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/6089 @zentol sure! I will update the PR with your requested changes. ---

[GitHub] flink issue #6089: [FLINK-9451]End-to-end test: Scala Quickstarts

2018-05-29 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/6089 @zentol Thanks for review! Yes, I totally agree as the most of test script is duplicated, we need to refactor them the way you mentioned, I will update the PR with new changes. QQ: One

[GitHub] flink pull request #6089: [FLINK-9451]End-to-end test: Scala Quickstarts

2018-05-28 Thread medcv
GitHub user medcv opened a pull request: https://github.com/apache/flink/pull/6089 [FLINK-9451]End-to-end test: Scala Quickstarts ## What is the purpose of the change Added an end-to-end test which verifies Flink's quickstarts scala. It does the foll

[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 #6044: [FLINK-1044] Website: Offer a zip archive with a pre-setu...

2018-05-27 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/6044 @zentol Ok, I created a Jira ticket for Scala Quickstarts end2end test and will make a PR for it. ---

[GitHub] flink issue #6083: [FLINK-8983] End-to-end test: Confluent schema registry

2018-05-26 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/6083 @tillrohrmann please review ---

[GitHub] flink issue #6084: [FLINK-8654][Docs] Extend quickstart docs on how to submi...

2018-05-26 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/6084 @zentol Please review ---

[GitHub] flink pull request #6084: [FLINK-8654][Docs] Extend quickstart docs on how t...

2018-05-26 Thread medcv
GitHub user medcv opened a pull request: https://github.com/apache/flink/pull/6084 [FLINK-8654][Docs] Extend quickstart docs on how to submit jobs ## Brief change log The quickstart documentation explains how to setup the project, build the jar and run things in the IDE

[GitHub] flink pull request #6044: [FLINK-1044] Website: Offer a zip archive with a p...

2018-05-26 Thread medcv
Github user medcv closed the pull request at: https://github.com/apache/flink/pull/6044 ---

[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 pull request #6083: [FLINK-8983] End-to-end test: Confluent schema reg...

2018-05-26 Thread medcv
GitHub user medcv opened a pull request: https://github.com/apache/flink/pull/6083 [FLINK-8983] End-to-end test: Confluent schema registry ## Brief change log Added an end-to-end test which verifies that Flink is able to work together with the Confluent schema registry. In

[GitHub] flink issue #6044: [FLINK-1044] Website: Offer a zip archive with a pre-setu...

2018-05-24 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/6044 @zentol Thanks for the review. Make sense to build this `quickstarts.zip` package on Jenkins but the main concern was test the `.zip` package (included all dependencies) before uploading it on

[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 #6044: [FLINK-1044] Website: Offer a zip archive with a pre-setu...

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

[GitHub] flink pull request #6044: [FLINK-1044] Website: Offer a zip archive with a p...

2018-05-18 Thread medcv
GitHub user medcv opened a pull request: https://github.com/apache/flink/pull/6044 [FLINK-1044] Website: Offer a zip archive with a pre-setup user project ## What is the purpose of the change This PR will run two tests to build Java and Scala quickstart packages. After

[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 pull request #6018: [FLINK-9372] Typo on Elasticsearch website link (e...

2018-05-15 Thread medcv
GitHub user medcv opened a pull request: https://github.com/apache/flink/pull/6018 [FLINK-9372] Typo on Elasticsearch website link (elastic.io --> elastic.co) ## What is the purpose of the change Typo on Elasticsearch website link elastic.io --> elastic.co #

[GitHub] flink issue #5823: [FLINK-9008] [e2e] Implements quickstarts end to end test

2018-05-15 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/5823 @tzulitai I agree it should be separate of this PR. Main challenge is to upload a compiled Quickstart zip file contain all dependencies for each changes (minor) we do automatically. I was thinking

[GitHub] flink issue #5823: [FLINK-9008] [e2e] Implements quickstarts end to end test

2018-05-14 Thread medcv
Github user medcv commented on the issue: https://github.com/apache/flink/pull/5823 @zhangminglei @zentol I was looking at the ticket [FLINK-1044](https://issues.apache.org/jira/browse/FLINK-1044) and seems we can use the output of this test to offer a zip archive with a pre

[GitHub] flink issue #5989: [FLINK-9333] [Docs] QuickStart Docs Spelling fix and some...

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

  1   2   >