You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While exporting a large volume of data I came across the following issues:
calling Bulk.get_export_data with a max_recs value greater than 1000 causes the parameter to be ignored and requests are still sent with the limit set to 1000
when the max_recs value is greater than the number of records to export plus 1000, it creates an infinite loop in Bulk.get_data, as _set_limit always returns has_more as True.
The text was updated successfully, but these errors were encountered:
While exporting a large volume of data I came across the following issues:
Bulk.get_export_data
with amax_recs
value greater than 1000 causes the parameter to be ignored and requests are still sent with the limit set to 1000Bulk.get_data
, as_set_limit
always returnshas_more
asTrue
.The text was updated successfully, but these errors were encountered: