core-environment
The core environment configuration.
The process-id element specifies the process id implemention.
The "node-identifier" attribute is used to set the node identifier on the core environment.
Name | Type | Default | Description |
---|---|---|---|
node-identifier | string | 1 |
process-id
The process identifer implementation
The "node-identifier" attribute is used to set the node identifier on the core environment.
The "socket-process-id-max-ports" attribute is used to set the max ports on the core environment.
uuid
The UUID based process identifer implementation
socket
The socket based process identifer implementation
The "socket-binding" attribute is used to specify the port to bind to.
The "socket-process-id-max-ports" attribute is used to set the max ports on the core environment.
Name | Type | Default | Description |
---|---|---|---|
socket-binding | string | ||
socket-process-id-max-ports | int | 10 |
recovery-environment
The recovery environment configuration.
The "socket-binding" attribute is used to reference the correct socket binding to use for the
recovery environment.
The "status-socket-binding" attribute is used to reference the correct socket binding to use for the
transaction status manager.
The "recovery-listener" attribute sets if recovery system should listen on a network socket or not.
Name | Type | Default | Description |
---|---|---|---|
socket-binding | string | ||
status-socket-binding | string | ||
recovery-listener | boolean | false |
coordinator-environment?
The coordinator environment configuration.
statistics-enabled - if recording of transaction statistics is enabled, false otherwise.
enable-tsm-status - if the transaction status manager (TSM) service, needed for out of process recovery, should be provided or not.
default-timeout - the default transaction lifetime, in seconds.
maximum-timeout - the maximum transaction lifetime, in seconds.
Name | Type | Default | Description |
---|---|---|---|
statistics-enabled | boolean | false | |
enable-statistics | boolean | false | Deprecated. Use statistics-enabled. |
enable-tsm-status | boolean | false | |
default-timeout | int | 300 | |
maximum-timeout | int | 31536000 |
object-store?
The object store configuration.
The "path" attribute denotes a relative or absolute filesystem path denoting where the transaction
manager object store should store data.
The "relative-to" attribute references a global path configuration in the domain model, defaulting
to the JBoss Application Server data directory (jboss.server.data.dir). If the value of the "path" attribute
does not specify an absolute pathname, it will treated as relative to this path.
Name | Type | Default | Description |
---|---|---|---|
path | string | tx-object-store | |
relative-to | string |
jts?
The flag to enable JTS.
use-journal-store?
The flag to enable the journal transaction log store.
Name | Type | Default | Description |
---|---|---|---|
enable-async-io | boolean | false | Enable AsyncIO for the journal transaction log store. |
jdbc-store?
The presence of this tag enable the jdbc transaction log store.
Name | Type | Default | Description |
---|---|---|---|
datasource-jndi-name | string | Configure datasource jndi used to connect for jdbc store |
action?
Configure jdbc store for default action store. If not present defaults are used.
Settings for jdbc storeName | Type | Default | Description |
---|---|---|---|
table-prefix | string | ||
drop-table | boolean | false |
communication?
Configure jdbc store for communication store. If not present defaults are used.
Settings for jdbc storeName | Type | Default | Description |
---|---|---|---|
table-prefix | string | ||
drop-table | boolean | false |
state?
Configure jdbc store for state store. If not present defaults are used.
Settings for jdbc storeName | Type | Default | Description |
---|---|---|---|
table-prefix | string | ||
drop-table | boolean | false |
commit-markable-resources?
A list of non XA aware datasources that can reliably participate in an XA transaction.
commit-markable-resource
Settings for a single commit markable resource.
Each datasource must be defined in the datasources subsystem configuration and
each one must be marked with the connectable="true" attribute.
Name | Type | Default | Description |
---|---|---|---|
jndi-name | token |
xid-location?
Storage settings for a single commit markable resource. For datasource resources
this will specifiy the table name where the xid of the commit-markable-resource
is stored
Name | Type | Default | Description |
---|---|---|---|
name | token | xids | A name for the storage location |
immediate-cleanup | boolean | true | Indicates whether the entry should be removed as soon as the transaction has completed |
batch-size | integer | 100 | If deletion of entries are deferred to the recovery module (ie immediate-cleanup is set to false) then the batch size specifies how many xids to remove per DML statement. Tuning the batch size is resource manager specific. |