Improve docs around bigtable read limit (#14660)

This commit is contained in:
Tyera Eulberg 2021-01-18 23:33:51 -07:00 committed by GitHub
parent b5fd0ed859
commit 2eb19fa5e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 4 deletions

View File

@ -313,7 +313,8 @@ impl BigTable {
/// Otherwise the listing will start from the start of the table.
///
/// If `end_at` is provided, the row key listing will end at the key. Otherwise it will
/// continue until the `limit` is reached or the end of the table, whichever comes first.
/// continue until the `rows_limit` is reached or the end of the table, whichever comes first.
/// If `rows_limit` is zero, the listing will continue until the end of the table.
pub async fn get_row_keys(
&mut self,
table_name: &str,
@ -374,7 +375,8 @@ impl BigTable {
/// of the table.
///
/// If `end_at` is provided, the row key listing will end at the key. Otherwise it will
/// continue until the `limit` is reached or the end of the table, whichever comes first.
/// continue until the `rows_limit` is reached or the end of the table, whichever comes first.
/// If `rows_limit` is zero, the listing will continue until the end of the table.
pub async fn get_row_data(
&mut self,
table_name: &str,

View File

@ -297,7 +297,8 @@ impl LedgerStorage {
/// Fetch the next slots after the provided slot that contains a block
///
/// start_slot: slot to start the search from (inclusive)
/// limit: stop after this many slots have been found.
/// limit: stop after this many slots have been found; if limit==0, all records in the table
/// after start_slot will be read
pub async fn get_confirmed_blocks(&self, start_slot: Slot, limit: usize) -> Result<Vec<Slot>> {
let mut bigtable = self.connection.client();
let blocks = bigtable
@ -371,7 +372,8 @@ impl LedgerStorage {
///
/// address: address to search for
/// before_signature: start with the first signature older than this one
/// limit: stop after this many signatures.
/// until_signature: end with the last signature more recent than this one
/// limit: stop after this many signatures; if limit==0, all records in the table will be read
pub async fn get_confirmed_signatures_for_address(
&self,
address: &Pubkey,