Jibing-Li commented on code in PR #19133:
URL: https://github.com/apache/doris/pull/19133#discussion_r1184699839


##########
fe/fe-core/src/main/java/org/apache/doris/spi/Split.java:
##########
@@ -15,17 +15,15 @@
 // specific language governing permissions and limitations
 // under the License.
 
-package org.apache.doris.planner;
+package org.apache.doris.spi;
 
-import lombok.Data;
+/**
+ * Split interface. e.g. Tablet for Olap Table.
+ */
+public interface Split {
 
-@Data
-public abstract class Split {
-    protected String[] hosts;
+    String[] getHosts();
 
-    public Split() {}
+    Object getInfo();

Review Comment:
   There may be significant variance between different splits, this reserved 
interface may may useful in the future. But for now, it is useless.



-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to