ORS Intro Flashcards

1
Q

ORS

A

The Orchestration server is responsible for executing the orchestration logic (SCXML) provided by Web Application Server. The URS will provide the routing service to the ORS. Both ORS and URS are connected to the T-Server to monitor interaction separately with ORS also connected to the URS to invoke URS services. Contains the SCXML Engine.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

ORS Platform

A

Logic interaction platform that provides the ability to create customer services application. Compose of the ORS and URS. Both ORS and URS are connected to the T-Server to monitor interaction separately with ORS also connected to the URS to invoke URS services. Serves as a integration hub for orchestration related services from medial channels to back end server.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

SCXML Routing Applications

A

ORS works with SCXML Routing Applications. They can be created from Genesys Composer by creating the routing strategy and generating the applications from them. It will publish the SCXML application to the config server. Third party tools or application can generate them including hand coded SCXML application done by an editor. Deployed to the Web Application Servers.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Web Application Servers

A

SCXML Application are uploaded to the web application servers. Upon HTTP request the web application server will provide the routing application logic to ORS in the form of a document. May interact with ORS during strategy processing for business specific task.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Supported Web Application Servers types

A

IIS a web application server by Microsoft, Apache Tomcat, JBoss Application Server(Java base), IBM Websphere Application Server.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

ORS Persistent Storage

A

Apache Cassandra are storage to store and retrieve SCXML sessions and associated session states along with the data including documents. High Availability and Load Balancing via clustering. ORS cluster are configured to work with the same storage and the ORS exit if connection is lost.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Persistent Term for ORS

A

Facilitates High Availability, scalable, and load balancing. Provide capability to store and retrieve information related to SCXML session and documents including millions of session data and state for SCXML so when required they can be fully recovered.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is Apache Cassandra

A

Store and retrieve SCXML sessions and associated session states. NoSQL open source DBS. Handle large amount of data spread across many commodity servers. Provides structured key value storage with eventual consistency. Keys mapped to multiple values are grouped into column families. Columns are added to specified keys so different keys have different numbers of columns in any given family. Value from a column family for each key are stored together making Cassandra a hybrid between column DBMS and row oriented.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Document Persistence

A

SCXML document serve as the basis for session construction so sessions may refer to the same document when persisted. The SCXML Engine will retrieve document from specified location in route point and request the persistence component(ORS node) to store the document info in the storage(Cassandra) when serialized document is verified and compiled. DocumentName Document Content is associated with the appropriate Document ID as the key.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Session Persistence

A

SCXML session are current representation of an active session. They are present in storage only if active so they have not reach final state and will be removed otherwise. The SCXML engine will request to store the compiled session information and will be serialized to be placed in the specified Cassandra cluster. The session is stored within the Orchestration Keyspace in the Session ColumnFamily, and Session Content ColumnName associated with SessionID as the key.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Orchestration Server - Clusters

A

Cluster contain several ORS node that share the workload and will take the place of a failed/removed node. This addresses the load balancing and high availability to run multiple instances of OR Server(node) into a single entity(cluster). The nodes will distribute the load(sessions) among members to be processed. Maintain connection to T-Server, URS, and Cassandra(Persistence Sotrage), ORS Cluster has a minimum of two nodes associated with one Apache Cassandra and one URS.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Orchestration Serve Master Super Node

A

Maintain the connection with all members of cluster and managed the workload distribution. It also handles the fail-over. Multiple node can be configured as a super node but must select a single master super node on start up. At least one super node or master node configured in cluster. Each node have an equal role in the cluster in a active state and is connected to every other node so no primary-backup pair. Others super node are ready to take over if there is a failure.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is a super node?

A

Cluster must have at least one super node and maintain the connection with all members of cluster and managed the workload distribution. Handles the fail over as well and other super node are ready to take over when needed. Each node in cluster is connected to at least one super node. Other member node connect to all super node so no separate load balancing system is needed or primary backup mode.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Orchestration Server Fail over

A

When a node fail another one picks up the SCXML session processing and retrieve the via persistent storage. They are notified by the super node so each node is aware if another goes down and will pickup processing the session from the failed one.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

How are connection with other nodes established?

A

When the ORS starts up, connection with each node is established. The ORS will read through a list of cluster nodes from the configuration and connect to each node on the list. It does this once and if failed then it assumes the other nodes have not been started. If connection is unsuccessful with other nodes than ORS will do it periodically until connection is successful with them.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

URS relationship to the ORS Cluster

A

URS does not know of the role assignment for ORS node and each one connected to it is equal from URS point of view. When a ORS node fail it will disconnect from the URS and recommenced that each node as a ADDP enabled to the URS. The ORS cluster work with the URS primary and backup pair.

17
Q

Session to ORS Persistence (High Availability)

A

For HA of a session to be effective, the ORS node processing the session and sessionID information must be maintained. The Cassandra data model allows this persistence. When a session is created by the ORS it persist the sessionID and Orchestration NodeID(dbid) to allow for other node to process it.

18
Q

SCXML Engine

A

Component of the ORS Platform that manages the execution of the Orchestration applications. It also manages application through SCXML session and its object model that represent the instance of the application. Session contains all data and object required for the Orchestration application and its logic. It also has an ECMAScript engine to provide low level scripting and a data for the Orchestration application.

19
Q

SCXML Document

A

Defines the Orchestration related processing and represent the Orchestration logic that a developer created. SCXML elements along with the functional module interface to define any type of logic as complex and business specific by requirement. Document can be retrieved by HTTP and HTTPS URI types.

20
Q

Classification Module

A

Classify and screen interaction content to help Orchestration logic determine the customer needs.

21
Q

Queue Module

A

Target selection functionality of URS such as finding the resource for call.

22
Q

Dialog Module

A

Call treatment functionality of URS

23
Q

Web Service Module

A

Provide web service support for Orchestration.

24
Q

Statistics Module

A

Implement the Statistics retrieving functionality of URS

25
Q

Orchestration Server Tracing: x-server-trace-level

A

Controls level of ORS tracing and troubleshoot application and fetching error. Valid Value: 0 - 3

26
Q

GCTI Tracing level: x-server-gcti-trace-level

A

Controls how much detail should be in the logs for GCTI related events from T-server. Valid Value: 0 to 3. 0 means to disable tracing level.

27
Q

x-print-attached-data

A

specifics if attached data should be formatted and printed in logs. Valid Value: 0 - Suppress printing attached data and 1 should be format and print attached data

28
Q

x-server-config-trace-level

A

Controls details of logged configuration related events there should be. Valid Value: 0 - 3

29
Q

SCXML

A

State Chart Extensible Markup Language

30
Q

Interaction Module

A

Responsible for getting and changing interactions related data such as attached data.

31
Q

Session Module

A

Encapsulates all other URS functionality

32
Q

Resource Module

A

A resource can either be a human or device.

33
Q

8.0.1 ORS version supports?

A

Cassandra Apache and later version requires it