Java 类名:com.alibaba.alink.operator.batch.sql.OrderByBatchOp
Python 类名:OrderByBatchOp

功能介绍

对批式数据进行sql的ORDER BY操作。

参数说明

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

| clause | 运算语句 | 运算语句 | String | ✓ | | |

| fetch | fetch的record数目 | fetch的record数目 | Integer | | | |

| limit | record的limit数 | record的limit数 | Integer | | | |

| offset | fetch的偏移值 | fetch的偏移值 | Integer | | | |

| order | 排序方法 | 排序方法 | String | | | “asc” |

代码示例

Python 代码

  1. from pyalink.alink import *
  2. import pandas as pd
  3. useLocalEnv(1)
  4. df = pd.DataFrame([
  5. ['Ohio', 2000, 1.5],
  6. ['Ohio', 2000, 1.5],
  7. ['Ohio', 2002, 3.6],
  8. ['Nevada', 2001, 2.4],
  9. ['Nevada', 2002, 2.9],
  10. ['Nevada', 2003, 3.2]
  11. ])
  12. batch_data = BatchOperator.fromDataframe(df, schemaStr='f1 string, f2 bigint, f3 double')
  13. batch_data.link(OrderByBatchOp().setClause("f2")).print()

Java 代码

  1. import com.alibaba.alink.operator.batch.BatchOperator;
  2. import com.alibaba.alink.operator.batch.source.MemSourceBatchOp;
  3. import com.alibaba.alink.operator.batch.sql.OrderByBatchOp;
  4. import org.junit.Test;
  5. public class OrderByBatchOpTest {
  6. @Test
  7. public void testOrderByBatchOp() throws Exception {
  8. List <Row> df = Arrays.asList(
  9. Row.of("Ohio", 2000, 1.5),
  10. Row.of("Ohio", 2000, 1.5),
  11. Row.of("Ohio", 2002, 3.6),
  12. Row.of("Nevada", 2001, 2.4),
  13. Row.of("Nevada", 2002, 2.9),
  14. Row.of("Nevada", 2003, 3.2)
  15. );
  16. BatchOperator <?> data = new MemSourceBatchOp(df, "f1 string, f2 int, f3 double");
  17. data.link(new OrderByBatchOp().setClause("f2")).print();
  18. }
  19. }

运行结果

| f1 | f2 | f3 | | —- | —- | —- |

| Ohio | 2000 | 1.5000 |

| Ohio | 2000 | 1.5000 |

| Nevada | 2001 | 2.4000 |

| Ohio | 2002 | 3.6000 |

| Nevada | 2002 | 2.9000 |

| Nevada | 2003 | 3.2000 |