server-client-python
server-client-python copied to clipboard
Unable to publish large WorkBook file via asynchronous publishing
Describe the bug We are trying to publish a workbook(TWBX) of 228 MB via server.workbooks.publish(wb_item, file_path, 'Overwrite', as_job=True, hidden_views=view-list, but while asynchronously publishing the large workbook file(TWBX), it is getting timed out.
Note: - We are publishing the workbook via Github Actions.
Versions Details of your environment, including:
- Tableau Online or Cloud
- Python version = 3.12.3
- TSC library version = 0.30
To Reproduce
Steps to reproduce -
file_path=Path to a file which is large(Should be more that 228 mb or 64 mb(As the documentation says))
wb_item = TSC.WorkbookItem(name=WBname , project_id=project_id)
server.workbooks.publish(wb_item, file_path, 'Overwrite', as_job=True, hidden_views=view-list)
Results The job is not getting finished. As we are running the job via GitHub Actions and till 6 hours the publishing job is not getting completed.