When I query several records which have more than 3000 bins, and I select 900+ bins from these records.
I set n more than 900.
bool as_query_select_init ( as_query * query, uint16_t n )
And then I invoke query foreach API
aerospike_query_foreach
but in the callback data, only have 214 bins’ data, is there any limitation for selected bin numbers?
But select the record with all bins rather than identify the detailed bins, it works properly, if I select the detailed bins which is the subset of all the bins, and if the selected more than 900 bins, only return 214 bins.
Thanks, Brain, is there any document about the query wire protocol? And How can I walk around this issue?
I want to select 900 bins out of 3K bins in one record.