SET 'table-store.file.path' = '/tmp/store'; SET 'table-store.bucket' = '4'; CREATE TABLE clicks (user VARCHAR, url VARCHAR, cTime TIMESTAMP(3), PRIMARY KEY (rowkey) NOT ENFORCED);
SET 'execution.runtime-mode' = 'batch'; SELECT * FROM clicks;
SET 'execution.runtime-mode' = 'streaming'; SELECT * FROM clicks;
SET 'execution.runtime-mode' = 'streaming'; SELECT * FROM clicks /*+ OPTIONS('log.scan' = 'latest') */;
感谢大家的关注!