Re: Regarding including zip file as part of source code

2017-07-07 Thread Sanjay Pujare
>Other python dependencies required by user python code as now needs to be >installed on Hadoop node. So you are assuming Python itself is installed on each Hadoop node and other Python packages needed by user's Python code are also installed? Can your py4j package be installed thru "pip" - Python

Re: Regarding including zip file as part of source code

2017-07-07 Thread vikram patil
Thanks Vlad, Thomas . Py4j acts as a bridge between Java and Python . So py4j package is needed ( like jar ) for code to work properly. If it is installed on Hadoop node then it won't be needed but since this code is used as part of basic framework to establish bridge between java and python fram

Re: Regarding including zip file as part of source code

2017-07-07 Thread Thomas Weise
We generally don't want any archives or binary files in the repo. Why is this needed? Maybe once that is clear we can find alternative solution. Thanks On Fri, Jul 7, 2017 at 6:57 AM, Vlad Rozov wrote: > You may add .zip (or any other binary file) to github repo but > > - it must be excluded

Re: Regarding including zip file as part of source code

2017-07-07 Thread Vlad Rozov
You may add .zip (or any other binary file) to github repo but - it must be excluded from the Apache source code release - it must be possible to build without the binary file as it will not be included into the source release Thank you, Vlad On 7/7/17 05:03, vikram patil wrote: Hello All,