限制从 Go 中的 Bigtable 查询返回的单元格数
Limit number of cells returned from Bigtable query in Go
是否可以限制从 Go 中的 Bigtable 查询返回的单元格(不是行)的数量?我看到一个 RowFilter 来限制行数,但不是实际的单元格数。
截至 this 提交,有 3 种方法可以限制返回的单元格数量:
// LatestNFilter returns a filter that matches the most recent N cells in each column.
// CellsPerRowOffsetFilter returns a filter that skips the first N cells of each row, matching all subsequent cells.
// CellsPerRowLimitFilter returns a filter that matches only the first N cells of each row.
LatestNFilter
已经有一段时间了,但另外两个是新的。
是否可以限制从 Go 中的 Bigtable 查询返回的单元格(不是行)的数量?我看到一个 RowFilter 来限制行数,但不是实际的单元格数。
截至 this 提交,有 3 种方法可以限制返回的单元格数量:
// LatestNFilter returns a filter that matches the most recent N cells in each column.
// CellsPerRowOffsetFilter returns a filter that skips the first N cells of each row, matching all subsequent cells.
// CellsPerRowLimitFilter returns a filter that matches only the first N cells of each row.
LatestNFilter
已经有一段时间了,但另外两个是新的。