[Java] Rename group id and package name. (#7864)

* Initial

* Change streaming's

* Fix

* Fix

* Fix org_ray

* Fix cpp file name

* Fix streaming

* Fix

* Fix

* Fix testlistening

* Fix missing sth in python

* Fix

* Fix

* Fix SPI

* Fix

* Fix complation

* Fix

* Fix CI

* Fix checkstyle

Fix checkstyle

* Fix streaming tests

* Fix streaming CI

* Fix streaming checkstyle.

* Fix build

* Fix bazel dep

* Fix

* Fix ray checkstyle

* Fix streaming checkstyle

* Fix bazel checkstyle
This commit is contained in:
Qing Wang
2020-04-12 17:59:34 +08:00
committed by GitHub
parent 3061067039
commit 98bfcd53bc
358 changed files with 1717 additions and 1740 deletions
+4 -4
View File
@@ -68,7 +68,7 @@ class DataStream(Stream):
"""
Represents a stream of data which applies a transformation executed by
python. It's also a wrapper of java
`org.ray.streaming.python.stream.PythonDataStream`
`io.ray.streaming.python.stream.PythonDataStream`
"""
def __init__(self, input_stream, j_stream, streaming_context=None):
@@ -220,7 +220,7 @@ class DataStream(Stream):
class KeyDataStream(Stream):
"""Represents a DataStream returned by a key-by operation.
Wrapper of java org.ray.streaming.python.stream.PythonKeyDataStream
Wrapper of java io.ray.streaming.python.stream.PythonKeyDataStream
"""
def __init__(self, input_stream, j_stream):
@@ -254,7 +254,7 @@ class KeyDataStream(Stream):
class StreamSource(DataStream):
"""Represents a source of the DataStream.
Wrapper of java org.ray.streaming.python.stream.PythonStreamSource
Wrapper of java io.ray.streaming.python.stream.PythonStreamSource
"""
def __init__(self, j_stream, streaming_context, source_func):
@@ -277,7 +277,7 @@ class StreamSource(DataStream):
class StreamSink(Stream):
"""Represents a sink of the DataStream.
Wrapper of java org.ray.streaming.python.stream.PythonStreamSink
Wrapper of java io.ray.streaming.python.stream.PythonStreamSink
"""
def __init__(self, input_stream, j_stream, func):