Python API
gpudbsqliterator
gpudbsqliterator — Kinetica Python API
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
gpudbsqliterator — Kinetica Python API
Iterates over the records of a given query.
Example
result_list = []
with GPUdbSqlIterator(db, sql,
batch_size=batch_size,
sql_opts=sql_opts) as sql_iter:
for rec in tqdm(iterable=sql_iter,
total=sql_iter.total_count,
desc='Fetching Records',
disable=(not show_progress),
ncols=cls.TQDM_NCOLS):
result_list.append(rec)