是否可以限制从Go中的Bigtable查询返回的单元格数量(而不是行数)?我看到一个RowFilter来限制行数,但不是实际的单元格数。
答案 0 :(得分:2)
从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
已经存在了一段时间,但其他两个是新的。