Q: create routine load, but table no data to load.
resource:
Only 1 FE, 1 BE, 1 KFK, 1 ZK
FE, BE, KFK, ZK all on the same machine
kafka version:
create topic:
bin/kafka-topics.sh --create --topic test --replication-factor 1 --partitions 1 --zookeeper 10.39.59.92:2181
create table:
CREATETABLEIF NOT EXISTS test_table
(
`id`INTNOT NULL,
`name`VARCHAR(20) NOT NULL,
`timestamp` DATETIME NOT NULL,
`count`INT SUM DEFAULT "0"
)
ENGINE=olap
AGGREGATE KEY(`id`,`name`,`timestamp`)
PARTITION BY RANGE(`timestamp`)
(
PARTITION `p201906`VALUES LESS THAN ("2019-07-01 00:00:00"),
PARTITION `p201907`VALUES LESS THAN ("2019-08-01 00:00:00")
) DISTRIBUTED BY HASH(`id`) BUCKETS 8
PROPERTIES
(
"replication_num"="1"
);create routine:
CREATE ROUTINE LOAD feed.load_testON test_table
COLUMNS(id, name, timestamp, count)
PROPERTIES
(
"desired_concurrent_number"="1"
)
FROM KAFKA
(
"kafka_broker_list"="10.39.59.92:9092",
"kafka_topic"="test"
);
There appears to be an import operation, but there is no data in the table test

Long agter then execution, I found these logs in FE

And BE also has a large number of such logs

Q: create routine load, but table no data to load.
resource:
kafka version:
create topic:
bin/kafka-topics.sh --create --topic test --replication-factor 1 --partitions 1 --zookeeper 10.39.59.92:2181create table:
create routine:
There appears to be an import operation, but there is no data in the table

testLong agter then execution, I found these logs in FE

And BE also has a large number of such logs
