L2 - Evolution of System Integration Flashcards

1
Q

Goal of System Integration Evolution

A

Explain system integration solutions from a historical perspective.

Explain essential concepts related to system integration.

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

What is System Integration Evolution About?

A

Enabling applications’ connection and communication in a distributed system.

Facilitating loose coupling between systems/applications.

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

What is Loose Coupling?

A

Reducing assumptions that two systems/applications make about each other.

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

Message in System Integration

A

A message is used to communicate between networked applications.

A message contains meta-data (protocols, timestamps, error codes, authentication, etc.) and data (actual content).

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

Protocol in System Integration

A

A formal description of message formatting that applications must follow.

Defines how message parts are arranged and exchanged.

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

Network in System Integration

A

Infrastructure linking computers, servers, and mobile devices.

Can include middleware components like routers and integration middleware.

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

Application Layer in Networking

A

Used by software programs requiring network communication.

Examples: HTTP, FTP, Telnet, SMTP.

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

Transport Layer in Networking

A

Manages end-to-end message transfer.

Handles flow control, error control, and retransmission.

Example: TCP protocol.

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

Network/Internet Layer in Networking

A

Solves packet routing and addressing.

Uses the IP protocol for networking.

Works with TCP to form TCP/IP protocol.

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

What Happens with High Coupling?

A

More efficiency but less flexibility for changes.

Requires applications to match in:

Time: Must be available simultaneously.

Application protocol: Must match (e.g., HTTP).

Data format: Data types must match (syntax, semantics).

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

Why is Loose Coupling Important?

A

Enables independent execution of tasks.

Facilitates integration with multiple systems.

Allows internal changes without impacting other systems.

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

What is an API?

A

Stands for Application Programming Interface.

Provides functions for application communication.

Examples: ODBC API, RPC API, RMI API, RESTful API.

Example: Spotify RESTful API allows client apps to fetch artist and album data.

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

What is Data Sharing?

A

Different methods for sharing data between applications.

Applications first shared data before sharing functionalities.

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

3 Evolutionary Data Sharing Methods

A
  1. File-based data sharing (non-real-time).
  2. Common database (non-real-time).
  3. Sockets (real-time).
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Real-time vs. Non-real-time Integration

A

Real-time Integration:
Processes data immediately upon receipt.

Non-real-time Integration:
Processes data later (batch processing).

Advantages:
Real-time = Up-to-date data.

Non-real-time = Cost-effective.

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

File-based Data Sharing

A

Uses files to transfer data between applications.

Example: Application A writes to a file → Application B reads it later.

Common formats: CSV, XML, JSON, Flat files.

17
Q

Modern File-based Data Sharing

A

Recommended protocols: SFTP, FTPS.

Cloud solutions: Google Drive, OneDrive, Dropbox API.

Modern data formats: JSON, XML, Avro, Parquet, YAML.

18
Q

Advantages of File-based Data Sharing

A

Simple and supported by all programming languages.

19
Q

Disadvantages of File-based Data Sharing

A

Not real-time.

Requires format agreement between applications.

Point-to-point integration makes it hard to scale.

20
Q

Common Database Integration

A

Applications share a database and access data via SQL.

Multipoint integration (multiple applications can connect).

21
Q

Advantages of Common Database Integration

A

Uses relational databases (SQL-based).

Suitable when applications lack API compatibility but support SQL.

22
Q

Disadvantages of Common Database Integration

A

Not real-time.

Requires a unified database schema.

Database locks can cause bottlenecks.

Not suitable for long-distance networks due to performance issues.

23
Q

What are Sockets?

A

Real-time integration method.

A socket is an IP address + port number.

Standard for TCP/IP communication.

24
Q

How Sockets Work?

A

Client Process:
1. Create a socket
2. Connect to server
3. Exchange data

Server Process:
1. Create a socket
2. Bind to a port
3. Accept client connection
4. Exchange data

25
Q

Advantages of Sockets

A

Real-time communication.

Fast due to low metadata overhead.

Still used in modern applications.

26
Q

Disadvantages of Sockets

A

Only data is shared, not functionality.

Low-level programming required.

Point-to-point connection leads to high coupling.

27
Q

What is Remote Procedure Call (RPC)?

A

Allows function calls between applications.

Works in a client-server architecture.

Example: Application A calls a function on Application B over a network.

28
Q

Disadvantages of RPC

A

Language-dependent (both sides must use the same language).

Synchronous calls (blocking).

Not scalable for large distributed systems.

29
Q

What are Distributed Objects (DO)?

A

Evolution of RPC, decouples client-server connection.

Uses middleware (Object Request Broker - ORB).

Examples: CORBA, DCOM, Java EJB.

30
Q

Advantages of Distributed Objects (DO)

A

anguage-independent.

Platform-independent.

Multipoint integration instead of point-to-point.

31
Q

Integration Middleware - ORB

A

ORB = Object Request Broker.

Manages communication between client and server applications.

Handles requests, dispatches results, and manages exceptions.

32
Q

Distributed Object Process

A

Step 1: Client finds the server object using ORB.

Step 2: ORB marshals/unmarshals data between client and server.

Step 3: Server processes request and sends response via ORB.

33
Q

Additional ORB Services

A

Naming Services: Help clients find objects.

Security Services: Control access and encryption.

Transaction Services: Ensure atomic transactions.