Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ Option | Description
**<a name="COMMAND-FILE-POLL-INTERVAL"></a>COMMAND-FILE-POLL-INTERVAL** | The regular interval (seconds) in which the existence of the **COMMAND-FILE** is tested can be controlled by using this property. Default is `1`.
**<a name="CONNECTION-POLICY"></a>CONNECTION-POLICY** | Algorithm for balancing load across multiple hosts used by `com.marklogic.developer.corb.DefaultContentSourcePool`. Options include **ROUND-ROBIN**, **RANDOM** and **LOAD**. Default option is **ROUND-ROBIN**. **LOAD** option returns the ContentSource or Connection with least number of active sessions.
**<a name="CONTENT-SOURCE-POOL"></a>CONTENT-SOURCE-POOL** | Class that implements `com.marklogic.developer.corb.ContentSourcePool` and used to manage ContentSource instances or connections. Default is `com.marklogic.developer.corb.DefaultContentSourcePool`.
**<a name="CONTENT-SOURCE-RENEW"></a>CONTENT-SOURCE-RENEW** | Boolean value indicating whether to create a new ContentSource when connection errors are encountered. This can help transparently deal with proxies that have dynamic pools of IP addresses. Default is `true`
**<a name="DISK-QUEUE"></a>DISK-QUEUE** | Boolean value indicating whether the CoRB job should spill to disk when a maximum number of URIs have been loaded in memory, in order to control memory consumption and avoid Out of Memory exceptions for extremely large sets of URIs.
**<a name="DISK-QUEUE-MAX-IN-MEMORY-SIZE"></a>DISK-QUEUE-MAX-IN-MEMORY-SIZE** | The maximum number of URIs to hold in memory before spilling over to disk. Default is `1000`.
**<a name="DISK-QUEUE-TEMP-DIR"></a>DISK-QUEUE-TEMP-DIR** | The directory where the URIs queue can write to disk when the maximum in-memory items has been exceeded. If not specified then **TEMP-DIR** value will be used. If neither are specified, then the default behavior is to use java.io.tmpdir.
Expand Down
Loading