Java 类名:com.alibaba.alink.operator.batch.source.TableSourceBatchOp
Python 类名:TableSourceBatchOp

功能介绍

从Table中生成BatchOperator数据

参数说明

名称 中文名称 描述 类型 是否必须? 取值范围 默认值

代码示例

以下代码仅用于示意,可能需要修改部分代码或者配置环境后才能正常运行!

Python 代码

  1. df = pd.DataFrame([
  2. [0, "0 0 0"],
  3. [1, "1 1 1"],
  4. [2, "2 2 2"]
  5. ])
  6. inOp = BatchOperator.fromDataframe(df, schemaStr='id int, vec string')
  7. inOp.getOutputTable()
  8. TableSourceBatchOp(inOp.getOutputTable()).print()

Java 代码

  1. import org.apache.flink.types.Row;
  2. import com.alibaba.alink.operator.batch.BatchOperator;
  3. import com.alibaba.alink.operator.batch.source.MemSourceBatchOp;
  4. import com.alibaba.alink.operator.batch.source.TableSourceBatchOp;
  5. import org.junit.Test;
  6. import java.util.Arrays;
  7. import java.util.List;
  8. public class TableSourceBatchOpTest {
  9. @Test
  10. public void testTableSourceBatchOp() throws Exception {
  11. List <Row> df = Arrays.asList(
  12. Row.of(0, "0 0 0"),
  13. Row.of(1, "1 1 1"),
  14. Row.of(2, "2 2 2")
  15. );
  16. BatchOperator <?> inOp = new MemSourceBatchOp(df, "id int, vec string");
  17. inOp.getOutputTable();
  18. new TableSourceBatchOp(inOp.getOutputTable()).print();
  19. }
  20. }

运行结果

id vec
0 0 0 0
1 1 1 1
2 2 2 2