Java 类名:com.alibaba.alink.operator.batch.sink.AkSinkBatchOp
Python 类名:AkSinkBatchOp

功能介绍

将一个批式数据,以Ak文件格式写出到文件系统。Ak文件格式是Alink 自定义的一种文件格式,能够将数据的Schema保留输出的文件格式。

参数说明

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

| filePath | 文件路径 | 文件路径 | String | ✓ | | |

| numFiles | 文件数目 | 文件数目 | Integer | | | 1 |

| overwriteSink | 是否覆写已有数据 | 是否覆写已有数据 | Boolean | | | false |

| partitionCols | 分区列 | 创建分区使用的列名 | String[] | | | null |

代码示例

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

Python 代码

  1. df = pd.DataFrame([
  2. [2, 1, 1],
  3. [3, 2, 1],
  4. [4, 3, 2],
  5. [2, 4, 1],
  6. [2, 2, 1],
  7. [4, 3, 2],
  8. [1, 2, 1],
  9. [5, 3, 3]])
  10. batchData = BatchOperator.fromDataframe(df, schemaStr='f0 int, f1 int, label int')
  11. filePath = "/tmp/test_alink_file_sink";
  12. # write file to local disk
  13. batchData.link(AkSinkBatchOp()\
  14. .setFilePath(FilePath(filePath))\
  15. .setOverwriteSink(True)\
  16. .setNumFiles(1))
  17. BatchOperator.execute()

Java 代码

  1. import org.apache.flink.types.Row;
  2. import com.alibaba.alink.common.io.filesystem.FilePath;
  3. import com.alibaba.alink.common.io.filesystem.HadoopFileSystem;
  4. import com.alibaba.alink.operator.batch.BatchOperator;
  5. import com.alibaba.alink.operator.batch.sink.AkSinkBatchOp;
  6. import com.alibaba.alink.operator.batch.source.MemSourceBatchOp;
  7. import org.junit.Test;
  8. import java.util.Arrays;
  9. import java.util.List;
  10. public class AkSinkBatchOpTest {
  11. @Test
  12. public void testAkSinkBatchOp() throws Exception {
  13. List <Row> df = Arrays.asList(
  14. Row.of(2, 1, 1),
  15. Row.of(3, 2, 1),
  16. Row.of(4, 3, 2),
  17. Row.of(2, 4, 1),
  18. Row.of(2, 2, 1),
  19. Row.of(4, 3, 2),
  20. Row.of(1, 2, 1)
  21. );
  22. BatchOperator <?> batchData = new MemSourceBatchOp(df, "f0 int, f1 int, label int");
  23. String filePath = "/tmp/test_alink_file_sink";
  24. batchData.link(new AkSinkBatchOp()
  25. .setFilePath(new FilePath(filePath))
  26. .setOverwriteSink(true)
  27. .setNumFiles(1));
  28. String hdfsFilePath = "alink_fs_test/test_alink_file_sink";
  29. HadoopFileSystem fs = new HadoopFileSystem("2.8.3", "hdfs://10.101.201.169:9000");
  30. batchData.link(new AkSinkBatchOp()
  31. .setFilePath(new FilePath(hdfsFilePath, fs))
  32. .setOverwriteSink(true)
  33. .setNumFiles(1));
  34. BatchOperator.execute();
  35. }
  36. }