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
A customer reported that large PDFs are still failing, even after the
updated retry logic for the occasional 502/503s. The job client
previously had an incorrect limit of 10 minutes for maximum execution
time. This change increase the total client execution time to 60
minutes.
### Testing
Ran custom integration tests with 2500 page PDFs running with the
following settings:
```
const requestParams: PartitionParameters = {
files: file,
splitPdfPage: true,
strategy: Strategy.HiRes,
splitPdfAllowFailed: false,
splitPdfConcurrencyLevel: 15
};
const res: PartitionResponse = await client.general.partition({
partitionParameters: {
...requestParams
},
});
```
0 commit comments