建表

库名:default

表名:testlog

CREATE EXTERNAL TABLE default.testlog(
 `date` string, 
 `log`  string
)
PARTITIONED BY (year int,month int,day int)
ROW FORMAT SERDE 'org.openx.data.jsonserde.JsonSerDe'
WITH SERDEPROPERTIES ('ignore.malformed.json'='true')
LOCATION 's3://fluent-bit-s3-gj/fluentbit-logs/test-log/'

运行repair分区

MSCK REPAIR TABLE default.testlog;

查询

SELECT * FROM "default"."testlog" where log like '%"uid":"105470271911"%' and year=2023 and month=5 and day=24;