Chinmoymohanty85
Chinmoymohanty85

Reputation: 127

RowFilter for Bigtable - need only column qualifiers and NOT cell values

I'm trying to make use of the google-cloud-bigtable library. My intention is to query bigtable wherein the response should only return me the column names/qualifiers, BUT no values.

I've tried different methods like cells_per_row_limit_filter and block_all_filter, but they don't seem to do the job I want.

I don't want the 'rows' to get filtered; I just don't want to have the cell values in my results.

Upvotes: 1

Views: 1074

Answers (1)

Gary Elliott
Gary Elliott

Reputation: 994

I think you want the strip_value_transformer: https://github.com/googleapis/googleapis/blob/master/google/bigtable/v2/data.proto#L422

Upvotes: 3

Related Questions