Table of Contents
This chapter explains the tags related to cluster session in domain.xml.
XML schema file:
JEUS_HOME/lib/schemas/jeus/jeus-session-domain.xsd
XML references are configured in the following format.
XML Schema/XML Tree: Summarizes all the tags of XML configuration file. Each node is defined in the following format.
Tag reference enables quick search for tags. Each tag is attached with index numbers ( ex: (11) ). Tags are explained with this number in tag reference.
The XML tag name defined in the XML schema is expressed in the format of <tag name>.
Tags are set with cardinality defined in XML schema.
“?” is for 0 or 1 element, “+” is for 1 or more elements, “*” is for 0 or more elements, (no symbol) is for exactly one element
Several tags have "P" character, meaning that they are the tags related to performance. These tags are used to tune the setting.
Element Reference: Explains XML tags in the tree.
Dynamic: Allowed to change the configuration dynamically.
Non-Dynamic: Not allowed to change the configuration dynamically. This is expressed only for the special case to comment out.
Description: A short description for tags.
Value Description: The value and type.
Value Type: Data type of the value. (ex: String)
Value Type Description: Description for the data type of the value.
Default Value: The value to be used by default when the XML is not used.
Defined Value: The default value.
Example: The XML tag example.
Performance Recommendation: The value recommended to improve performance.
Child Elements:The tags contained in its own tag element.
(1885) <session-server> ?
(1886) <cluster-mode> ?
(1887) <session-storage> *
(1888) <name>
(1889) <session-manager-provider> ?
(1890) <scope> *
(1891) <name>
(1892) <jeus-session> ?
(1893) <session-config> ?
(1894) <timeout> ?
(1895) <max-session-count> ?
(1896) <reload-persistent> ?
(1897) <tracking-mode> ?
(1901) <session-cookie> ?
(1902) <cookie-name> ?
(1903) <url-cookie-name> ?
(1904) <version> ?
(1905) <domain> ?
(1906) <path> ?
(1907) <max-age> ?
(1908) <secure> ?
(1909) <http-only> ?
(1910) <same-site> ?
(1911) <comment> ?
(1912) <partitioned> ?
(1913) <target-cluster> *
(1914) <target-application> *
(1915) <property> *
(1918) <jeus-login-manager> ?
(1919) <login-manager-type>
(1920) <primary> ?
(1921) <secondary> ?
(1922) <property> *
(1925) <jeus-central-session-server> ?
(1926) <primary> ?
(1927) <secondary> ?
(1928) <property> *
(1885)
<
domain
>
<session-server>
| |
Value Type | session-serverType |
Child Elements |
(1887)
(1888)
(1919)
(1926)
(1929)
|
(905) <session-cluster-config> ?
(906) <jeus-login-manager> ?
(907) <login-manager-type>
(908) <primary> ?
(909) <secondary> ?
(910) <property> *
(913) <reserved-thread-num> ?
(914) <connect-timeout> ?
(915) <read-timeout> ?
(916) <allow-fail-back> ?
(917) <failover-strategy> ?
(918) <backup-level> ?
(919) <backup-unit-size> ?
(920) <backup-queue-size> ?
(921) <ignore-flow-control> ?
(922) <prevent-migration> ?
(923) <failover-delay> ?
(924) <restart-delay> ?
(925) <passivation> ?
(926) <file-path> ?
(927) <trigger> ?
(928) <timeout> ?
(929) <count-threshold> ?
(930) <memory-threshold> ?
(931) <single-folder-file-limit> ?
(932) <min-hole> ?
(933) <packing-rate> ?
(934) <ratio> ?
(935) <properties> ?
(936) <property> *
(905)
<
domain
><
clusters
><
cluster
>
<session-cluster-config>
| |
Description | Information about the session server in the cluster. |
Value Type | session-cluster-configType |
Child Elements |
(907)
(914)
(915)
(916)
(917)
(918)
(919)
(920)
(921)
(922)
(923)
(924)
(925)
(926)
(936)
|
[Example 13.1] Example File
<?xml version="1.0" encoding="UTF-8"?><domain xmlns="http://www.tmaxsoft.com/xml/ns/jeus" version="7.0"> <!-- Complex Configuration --> <servers> <!--Server Side Config : upper Example --> </servers> <clusters> <cluster> <!-- Name --> <name>Distributed</name> <!-- Servers in member of Clustering--> <servers> <server-name>server1</server-name> <server-name>server2</server-name> </servers> <!-- Configuration Starting point --> <session-cluster-config> <!-- System Thread Pool Config --> <reserved-thread-num>0</reserved-thread-num> <!-- Fail-back Config --> <allow-fail-back>true</allow-fail-back> <!-- Connection Config --> <connect-timeout>5000</connect-timeout> <read-timeout>20000</read-timeout> <!--Backup target --> <backup-level>access</backup-level> <!-- Backup table restore delay in failover --> <failover-delay>1000</failover-delay> <!-- Backup table restore delay in normal shutdown --> <restart-delay>2000</restart-delay> <passivation> <single-folder-file-limit>10000</single-folder-file-limit> <trigger> <timeout>60000</timeout> <count-threshold>10000</count-threshold> </trigger> </passivation> </session-cluster-config> </cluster> </clusters> </domain> <?xml version="1.0" encoding="UTF-8"?><domain xmlns="http://www.tmaxsoft.com/xml/ns/jeus" version="7.0"> <!-- Simple Configuration, Only Cluster Config --> <servers> <!--Server Side Config : upper Example --> </servers> <clusters> <cluster> <!-- Name --> <name>Distributed</name> <!-- Servers in member of Clustering--> <servers> <server-name>server1</server-name> <server-name>server2</server-name> </servers> </cluster> </clusters> </domain>