Increasing large document threshold
By default, documents larger than 100 k are saved to the database, and the key for the document is passed around the server. If we have sufficient memory in our application, then increasing this threshold above 100 k will prevent frequent trips to the database.
Getting ready
You will need to install the SOA Suite with the Enterprise Manager Fusion Middleware Control component to use this recipe..
How to do it...
Follow steps from 1 through 2 of the Setting the audit store policy recipe to navigate to the Advanced BPEL Configuration page.
Locate the LargeDocumentThreshold property, and increase its value.
Save your changes.
How it works...
The large document threshold is the size above which the document body is saved in the database, and a key to the body is passed between process instance components. If you have sufficient memory, you can increase this value to allow larger document bodies to be passed around in-memory, saving trips to the database, and increasing...