This is an automated email from the ASF dual-hosted git repository.
novatechflow pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/wayang.git
from 7650e79d4 Merge pull request #722 from harshitsingh070/wayang-jdbc-docs
add 93d5c8423 Implement Docker support with image creation and
configuration updates
add 4f052d674 Add Docker support for Python API and enhance Java
integration
new 6b86d0df9 Merge pull request #767 from novatechflow/docker-build
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../resources/wayang.properties => .dockerignore | 28 +++--
.github/workflows/docker.yml | 76 +++++++++++++
Dockerfile | 45 ++++++++
bin/wayang-submit | 120 ++++++++++++---------
python/Dockerfile | 55 ++++++++++
python/README.md | 50 +++++++++
python/docker/entrypoint.sh | 49 +++++++++
.../examples/wordcount.py | 37 +++----
python/setup.cfg | 6 +-
python/src/pywy/core/core.py | 18 +++-
.../api/python/executor/PythonProcessCaller.java | 34 ++++--
wayang-assembly/README.md | 49 +++++++++
.../apache/wayang/core/util/fs/FileSystems.java | 30 ++++--
.../wayang/java/channels/ChannelConversions.java | 95 ++++++++--------
.../apache/wayang/java/plugin/JavaBasicPlugin.java | 2 +-
.../java/plugin/JavaChannelConversionPlugin.java | 2 +-
16 files changed, 555 insertions(+), 141 deletions(-)
copy python/src/pywy/tests/resources/wayang.properties => .dockerignore (63%)
create mode 100644 .github/workflows/docker.yml
create mode 100644 Dockerfile
create mode 100644 python/Dockerfile
create mode 100644 python/docker/entrypoint.sh
copy env_template_osx.sh => python/examples/wordcount.py (51%)
mode change 100755 => 100644