1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
//! Distributed Execution
//!
//! > *"Distributio est virtus computationis"*
//! > — Distribution is the virtue of computation. (Latin)
//!
//! This module provides infrastructure for distributed execution of
//! UCIR computations across multiple nodes in a cluster.
//!
//! # Overview
//!
//! The distributed execution system enables:
//!
//! - **Serializable Computations**: UCIR nodes can be serialized and sent to remote nodes
//! - **Distributed Effects**: Effect handlers that span multiple nodes
//! - **Cluster Management**: Discovery, load balancing, and fault tolerance
//!
//! # Architecture
//!
//! ```text
//! ┌─────────────────────────────────────────────────────┐
//! │ COORDINATOR NODE │
//! │ ┌─────────────┐ ┌─────────────┐ ┌─────────────┐ │
//! │ │ UCIR IR │──│ Serializer │──│ Scheduler │ │
//! │ └─────────────┘ └─────────────┘ └─────────────┘ │
//! └───────────────────────┬─────────────────────────────┘
//! │
//! ┌─────────────────┼─────────────────┐
//! ▼ ▼ ▼
//! ┌──────────┐ ┌──────────┐ ┌──────────┐
//! │ Node 1 │ │ Node 2 │ │ Node 3 │
//! │ Executor │ │ Executor │ │ Executor │
//! └──────────┘ └──────────┘ └──────────┘
//! ```
//!
//! # Scholastic Naming
//!
//! | English | Latin | Etymology |
//! |---------|-------|-----------|
//! | Node | Nodus | *nodus* = knot, node |
//! | Cluster | Grex | *grex* = flock, cluster |
//! | Remote | Remotus | *remotus* = distant, far |
//! | Affinity | Affinitas | *affinitas* = relationship |
//! | Protocol | Protocollum | *protocollum* = first sheet |
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;