Bigtable 中的行时间戳 - 它们何时更新?
Row timestamps in Bigtable - when are they updated?
来自Bigtable's Go API的TimestampRangeFilter
的定义是:
TimestampRangeFilter returns a filter that matches any rows whose timestamp is within the given time bounds.
行时间戳是否在以下时间更新:
- 该行中有任何列值 written/changed?
- 行键更新了吗?
- 该行已创建?
- 还有其他情况吗?
我认为这是一个文档错误。它应该是这样的:
TimestampRangeFilter returns a filter that matches any cells whose
timestamp is within the given time bounds.
行本身没有时间戳。
来自Bigtable's Go API的TimestampRangeFilter
的定义是:
TimestampRangeFilter returns a filter that matches any rows whose timestamp is within the given time bounds.
行时间戳是否在以下时间更新:
- 该行中有任何列值 written/changed?
- 行键更新了吗?
- 该行已创建?
- 还有其他情况吗?
我认为这是一个文档错误。它应该是这样的:
TimestampRangeFilter returns a filter that matches any cells whose timestamp is within the given time bounds.
行本身没有时间戳。