Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在保存注册用户已阅读的文档。我正在使用以下模型:
对象:以天为键
用户作为列族
时间戳:作为列限定符
user_id:作为列值
我想按时间戳或user_id范围过滤,是否可以使用 hive?
如果我理解正确,则无法将此类表映射到配置单元,因为它会添加新列(每个时间戳),并且在创建表时配置单元需要已知架构
如果我理解正确,您需要select * from table where user_id>=start_range and user_id<=end_range; . 让我知道我是否错了。