Row timestamps in Bigtable - when are they updated?

泪湿孤枕 提交于 2019-12-11 17:55:54

问题


The definition of TimestampRangeFilter from Bigtable's Go API is:

TimestampRangeFilter returns a filter that matches any rows whose timestamp is within the given time bounds.

Is the row timestamp updated when:

  • Any column value is written/changed within that row?
  • The row key is updated?
  • The row is created?
  • Any other circumstances?

回答1:


I think this is a documentation bug. It should read something like:

TimestampRangeFilter returns a filter that matches any cells whose timestamp is within the given time bounds.

Rows themselves don't have timestamps.



来源:https://stackoverflow.com/questions/44287838/row-timestamps-in-bigtable-when-are-they-updated

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!