Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Published by Scroll Versions from space WBRIDGE and version 7.5.0
Div
Classe2e-refDiv
Rp

As persistent state is an integrated part of the Bridge, there is no requirement for additional components. The Components Wizard is used to create this diagram. For more details, refer to the Builder User's Guide Components Wizard.

In the The picture below , shows the completed component diagram of the Purchase Order example is displayed.Figure: Components Diagram for Purchase Order Example

In the specification dialog of the xUML service composite, you can configure the persistent state engine.

Figure: Specification of xUML Service Composite PurchaseOrderExample

AttributeTypeDescriptionValueDescription
Persistent State
Storage MediumString
Multiexcerpt
MultiExcerptNamestorageMedium

Storage Medium defines where the persisted data and additional information like pending events and current states are kept. See section Data Storage for a discussion of the options.
When using a database instance as storage medium, make sure to configure components and deployment of the SQL adapter as described in section SQL Adapter.

memoryThe persistent state data is kept in memory. On service shutdown, data is written to the file system.
local (default)The persistent state data is kept in a local SQLite database that is delivered with the Bridge.
external

The persistent state data is kept in an external database that has to be defined as a service backend. Use External State DB Alias to specify the database.
This storage medium is needed to implement a load balanced persistent state setup.

volatileThe persistent state data is kept in memory. On service shutdown, data is lost.
WorkersInteger
Multiexcerpt
MultiExcerptNameworkers

Workers defines the maximum number of parallel threads used to process pending events. The default setting is 5, which is used if none or 0 workers are configured. The implications of more or less workers are discussed in Performance Considerations of Persistent State.

Note
iconfalse

Each active worker requires one license slot (concurrent connection) to process activities. For more information on licensing and concurrent connections, refer to License for Running xUML Services.



External State DB AliasString
Multiexcerpt
MultiExcerptNameexternalStateDBAlias

If you are using an external storage medium, you can specify the DB alias in External State DB Alias.



Event Selection AlgorithmString
Multiexcerpt
MultiExcerptNameevent_selection_algorithm

Runtime 2019.2 Builder 7.4.0 The xUML Runtime processes the persistent state events in a defined order. Select the event selection algorithm the xUML Runtime should use to define this order of events.
Refer to Performance Considerations of Persistent State > Event Selection Algorithm for more details on when to use which algorithm.

Note
iconfalse

Services using this tagged value (all options but the default <not specified>) will not start on a Runtime below 2019.2.

<tagged value not specified> (default)Leave the decision which algorithm to use to the xUML Runtime. If future versions provide changed algorithms, they will be taken into account automatically.
Default

Basically the same as <tagged value not specified>: Leave the decision which algorithm to use to the xUML Runtime. If future versions provide changed algorithms they will be taken into account automatically.
Additionally, the tagged value will appear on the Bridge in the Settings tab of the xUML service and can be changed there.

Favour SignalsProcess events according to signal appearance. This is the algorithm used up to Runtime 2019.1.
Favour ObjectsProcess events according to object age. This results in processing older objects first. Signals to a selected object are processed in the order they arrived.
Switch Over EnabledBoolean
Multiexcerpt
MultiExcerptNameswitchOverEnabled

This flag enables the automatic fail over mechanism for clustered persistent state databases. If the persistent state database becomes inoperative, the E2E xUML Runtime will try to open a connection to compensatory database of the cluster. See also option Switch Over Retry Timeout.

Info
iconfalse

This option is available for clustered Oracle databases only.

false (default)fail over mechanism not enabled
truefail over mechanism enabled
Switch Over Retry TimeoutInteger
Multiexcerpt
MultiExcerptNameswitchOverRetryTimeout

During fail over, the E2E xUML Runtime will try to create a new database connection to a compensatory database (see Switch Over Enabled). If this fails, the xUML Runtime will try to open a new connection every second until the timeout (in seconds) is reached. Default is 600 seconds.



Internal State DB SynchString
Multiexcerpt
MultiExcerptNamestate_db_synch

Internal State DB Synch defines the level of file system synchronization performed on the internal persistent state database.

Note
iconfalse

For production setup, we recommend using FULL synch.

OFF (default)SQLite continues without syncing as soon as it has handed data off to the operating system. If the xUML service crashes, the data will be safe, but the database might become corrupted if the operating system crashes or the computer loses power before that data has been written to the disk surface. Very fast.
NORMALThe SQLite database engine will still sync at the most critical moments, but less often than in FULL mode (see below). There is a very small (though non-zero) chance that a power failure at just the wrong time could corrupt the database in NORMAL mode. But in practice, you are more likely to suffer a catastrophic disk failure or some other unrecoverable hardware fault.
Up to 50 times slower than OFF.
FULLThe SQLite database engine will ensure that all content is safely written to the disk surface prior to continuing. This ensures that an operating system crash or power failure will not corrupt the database. FULL synchronous is very safe, but it is also slower than NORMAL. FULL is the most commonly used synchronous setting.
EXTRAAlso synchronize the DB transaction journal after every commit. Equals FULL in E2E Bridge context.

Persistent State Components of E2E Builder Version 5.1

...

Deprecated since Builder 6.0

Expand
titleClick here to read the documentation of the persistent state components used in E2E Builder releases before 6.0 ...

As persistent state is an integrated part of the Bridge, there is no requirement for additional components or deployments. The Deployment Wizard is used to create these diagrams. For more details, refer to the Builder User Guide.

In the picture below, the completed component diagram of the Purchase Order example is displayed.

Figure: Components Diagram for Purchase Order Example

The only difference to a regular diagram is in the artifact PurchaseOrderExample to the right. In the specification dialog of an artifact of stereotype <<E2EConfigurationDeployment>> there are two fields for configuring the persistent state engine.

Figure: Specification of Artifact PurchaseOrderExample


Workers defines the maximum number of parallel threads used to process pending events. The default setting is 5, which is used if none or 0 workers are configured. The implications of more or less workers are discussed in Performance Considerations of Persistent State.

Note
iconfalse

Each active worker requires one license slot (concurrent connection) to process activities.

Storage Medium defines where the persisted data and additional information like pending events and current states are kept. Valid options are memory, local or the name of a database instance. See section Data Storage for a discussion of the options.

When using a database instance as storage medium, make sure to configure components and deployment of the SQL adapter as described in section SQL Adapter.