When exporting using the new export_v2 method, my query fails after the first is successful. More specifically, at idx=0 the export is successful. After the first export, all future exports fail. For example
for idx, drows in enumerate(data_rows):
task = lb_project.export_v2(
params={
"data_row_details": False, "project_details": True,
"metadata_fields": False, "attachments": False,
"media_attributes": False, "media_fields": False,
"performance_details": False, "label_details": False,
'labels': False, "projects": True
},
filters={'data_row_ids': drows},
)
task.wait_till_done(timeout_seconds = 600)
for data_row in task.result:
continue
print(f'Finished Labelbox Export Task... {idx+1}/{len(data_rows)}')
each drow
is a list of 500 data_row_ids. I have tried adding sleep timers for upwards of 10 minutes and I still get errors. The error is:
ValueError: Job failed. Errors : None