ZhangHuirui opened a new issue #3543:
URL: https://github.com/apache/incubator-doris/issues/3543
**场景:**
- kafka中的数据(单个分区):
`user_id = 1, user_name = zhangsan, user_status = 0
user_id = 1, user_name = zhangsan, user_status = 2
user_id = 1, user_name = zhangsan_bak, user_status = 2`
- Doris表结构:
`
CREATE TABLE `user_info` (
`user_id` bigint(20) NULL COMMENT "",
`user_name` varchar(200) REPLACE NULL COMMENT "",
`user_status` bigint(20) REPLACE NULL COMMENT ""
) ENGINE=OLAP
AGGREGATE KEY(`user_id`)
COMMENT "OLAP"
DISTRIBUTED BY HASH(`user_id`) BUCKETS 128
PROPERTIES (
"storage_type" = "COLUMN"
);`
- 问题
使用Doris ROUTINE LOAD导入保证顺序吗?结果是`user_id = 1, user_name = zhangsan_bak,
user_status = 2`吗?还是不一定?
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]