I have the below that exports a dataset to a string, I'm trying to export a dataset with 257 million rows but I don't see any logs as to why it fails It just fails!
When I try the below with a smaller dataset (250k rows) I'm able to export, is there a way to programmatically break out the dataset into chunks?
domo = Domo(client_id, client_secret, logger_name='foo', log_level=logging.INFO, api_host=API_HOST, **kwargs)
dataset = domo.dataset
include_csv_header = True
datasets_parent = dataset.data_export(dataset_id, include_csv_header)
logging.info(f'datasets_parent: {datasets_parent}')