[GitHub] [flink] lirui-apache commented on issue #8911: [FLINK-12995][hive] Add Hive-1.2.1 build to Travis

2019-07-11 Thread GitBox
lirui-apache commented on issue #8911: [FLINK-12995][hive] Add Hive-1.2.1 build 
to Travis
URL: https://github.com/apache/flink/pull/8911#issuecomment-510738891
 
 
   Thanks for @zentol 's suggestions. PR updated accordingly.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [flink] lirui-apache commented on issue #8911: [FLINK-12995][hive] Add Hive-1.2.1 build to Travis

2019-07-11 Thread GitBox
lirui-apache commented on issue #8911: [FLINK-12995][hive] Add Hive-1.2.1 build 
to Travis
URL: https://github.com/apache/flink/pull/8911#issuecomment-510451270
 
 
   I don't think the blink planner failures are related. Seems some of them can 
be reproduced w/o this patch.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [flink] lirui-apache commented on issue #8911: [FLINK-12995][hive] Add Hive-1.2.1 build to Travis

2019-07-09 Thread GitBox
lirui-apache commented on issue #8911: [FLINK-12995][hive] Add Hive-1.2.1 build 
to Travis
URL: https://github.com/apache/flink/pull/8911#issuecomment-509892728
 
 
   Update to address comments.
   @bowenli86 please take a look, thanks.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [flink] lirui-apache commented on issue #8911: [FLINK-12995][hive] Add Hive-1.2.1 build to Travis

2019-07-09 Thread GitBox
lirui-apache commented on issue #8911: [FLINK-12995][hive] Add Hive-1.2.1 build 
to Travis
URL: https://github.com/apache/flink/pull/8911#issuecomment-509596454
 
 
   Updated to move the build to cron job. This build on my own repo verifies 
it's working properly, https://travis-ci.org/lirui-apache/flink/builds/556152415
   @bowenli86 @zentol please take another look, thanks.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [flink] lirui-apache commented on issue #8911: [FLINK-12995][hive] Add Hive-1.2.1 build to Travis

2019-07-05 Thread GitBox
lirui-apache commented on issue #8911: [FLINK-12995][hive] Add Hive-1.2.1 build 
to Travis
URL: https://github.com/apache/flink/pull/8911#issuecomment-508750628
 
 
   Hi @zentol, thanks for your comments. The compile error is expected because 
previous commits broke build against Hive-1.2.1. And that's exactly why I 
wanted to add this to Travis.
   I'm fine if you think it has to go to cron job. I guess I can add it to the 
scala 2.12 profile since Hive-1.2.1 doesn't require a specific scala version.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [flink] lirui-apache commented on issue #8911: [FLINK-12995][hive] Add Hive-1.2.1 build to Travis

2019-06-28 Thread GitBox
lirui-apache commented on issue #8911: [FLINK-12995][hive] Add Hive-1.2.1 build 
to Travis
URL: https://github.com/apache/flink/pull/8911#issuecomment-506640002
 
 
   > To integrate it into the hadoop profile, modify the profile of these 
[builds](https://github.com/apache/flink/blob/master/.travis.yml#L119) to 
include the hive version.
   
   Thanks @zentol for the explanation. If combining into hadoop means the test 
is only triggered by cron jobs, I'd prefer not to do that, at least not while 
we actively develop hive connector features. Is it acceptable to keep the job 
in main profile for now?


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [flink] lirui-apache commented on issue #8911: [FLINK-12995][hive] Add Hive-1.2.1 build to Travis

2019-06-27 Thread GitBox
lirui-apache commented on issue #8911: [FLINK-12995][hive] Add Hive-1.2.1 build 
to Travis
URL: https://github.com/apache/flink/pull/8911#issuecomment-506595119
 
 
   > sorry, should have asked @zentol to help review.
   > 
   > @lirui-apache seems like I might misunderstood how the stage is run? 
Shouldn't the profile only recompile and retest flink-connector-hive module?
   
   The approach in this PR will recompile flink-connector-hive and all the 
depended modules. To only recompile flink-connector-hive, we can remove the 
`-am` option. My understanding is if we remove `-am`, the depended modules will 
be unavailable (or downloaded somewhere which doesn't reflect changes in a PR) 
because local maven repo is cleared for each Travis job. @zentol please correct 
me if I misunderstand.
   
   Another alternative is to completely skip the recompile and only run tests 
against Hive-1.2.1. So that we can get rid of most of the overhead while we're 
still able to catch the issues with Hive-1.2.1. Drawbacks of this approach is 
that errors that happen during tests are probably harder to understand than 
errors that happen during compiling. For example, we'll get 
`NoClassDefFoundError` instead of `cannot find symbol`.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [flink] lirui-apache commented on issue #8911: [FLINK-12995][hive] Add Hive-1.2.1 build to Travis

2019-06-27 Thread GitBox
lirui-apache commented on issue #8911: [FLINK-12995][hive] Add Hive-1.2.1 build 
to Travis
URL: https://github.com/apache/flink/pull/8911#issuecomment-506580756
 
 
   > As an alternative, could we combine this with the hadoop 2.4 or scala 2.12 
profile?
   
   Would you mind explain how to combine it with hadoop 2.4 or scala 2.12? Does 
it mean the test will run with different hadoop or scala versions? And will the 
test run for each PR if we do that?


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [flink] lirui-apache commented on issue #8911: [FLINK-12995][hive] Add Hive-1.2.1 build to Travis

2019-06-27 Thread GitBox
lirui-apache commented on issue #8911: [FLINK-12995][hive] Add Hive-1.2.1 build 
to Travis
URL: https://github.com/apache/flink/pull/8911#issuecomment-506580008
 
 
   Hi @zentol, the `connector_hive_1` in the build of my own repo took about 13 
min and failed, which is expected because we're having some issue with 
compiling with Hive-1.2.1. So I suppose that's the overhead of the forced 
recompilation. Once we fix the build, I expect the testing to take another 2~3 
min. Of course the testing time will increase as we add more test cases.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [flink] lirui-apache commented on issue #8911: [FLINK-12995][hive] Add Hive-1.2.1 build to Travis

2019-06-27 Thread GitBox
lirui-apache commented on issue #8911: [FLINK-12995][hive] Add Hive-1.2.1 build 
to Travis
URL: https://github.com/apache/flink/pull/8911#issuecomment-506333942
 
 
   cc @bowenli86 @xuefuz @zjuwangg 


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [flink] lirui-apache commented on issue #8911: [FLINK-12995][hive] Add Hive-1.2.1 build to Travis

2019-06-27 Thread GitBox
lirui-apache commented on issue #8911: [FLINK-12995][hive] Add Hive-1.2.1 build 
to Travis
URL: https://github.com/apache/flink/pull/8911#issuecomment-506333597
 
 
   Here's [build 
result](https://travis-ci.org/lirui-apache/flink/builds/551257514) of my own 
repo. The connector_hive_1 failed as expected.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services