Loading
Salesforce から送信されるメールは、承認済ドメインからのみとなります続きを読む

Error - 400011 (Bad Request There was a problem publishing the file ) While publishing large workbook using tableau server client (TSC)

公開日: Aug 25, 2025
説明

When publishing the workbook, you receive the error:

400011: Bad Request
There was a problem publishing the file 

Cause

The maximum size of a workbook or data source that can be published in a single request is 64 MB, but requests sometimes timeout with smaller file sizes, depending on the overall load on your Tableau Server installation. 

解決策

To avoid having the workbook or data source publishing process time out, you can use the asJob parameter to make publication asynchronous.

 Example :


destination = TSC.DatasourceItem(
project_id=dexdatasourcepid,
name=pd["name"],
)
jobid = (
serverD.datasources.publish(
destination,
file,
"Overwrite",as_job=True
)
)
print("Waiting for job...")
jobid = serverD.jobs.wait_for_job(jobid)
print("Job finished succesfully")

ナレッジ記事番号

001470797

 
読み込み中
Salesforce Help | Article