You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/k8s-helm.md
-3Lines changed: 0 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,9 +5,6 @@ import TabItem from '@theme/TabItem';
5
5
6
6
You can deploy Timeplus Enterprise on a Kubernetes cluster with [Helm](https://helm.sh/). The source code of the chart can be find in our [github repo](https://github.com/timeplus-io/helm-charts/tree/main/charts/timeplus-enterprise).
7
7
8
-
For visual learning, you can watch the following video:
9
-
<iframewidth="560"height="315"src="https://www.youtube.com/embed/kFyzYx1JI_8?si=WVszQMuFyW6Xcixm"title="YouTube video player"frameborder="0"allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"referrerpolicy="strict-origin-when-cross-origin"allowfullscreen></iframe>
10
-
11
8
## Prerequisites
12
9
13
10
- Ensure you have Helm 3.12 + installed in your environment. For details about how to install Helm, see the [Helm documentation](https://helm.sh/docs/intro/install/)
Each checkpoint round is assigned a new checkpoint **epoch**. Once a new checkpoint epoch is committed, older epochs can be garbage collected automatically.
12
12
@@ -44,7 +44,7 @@ In this mode (applies to both **local file system checkpoints** and **RocksDB-ba
44
44
3. Peer replicas consume these checkpoint records from the log and reconstruct them into checkpoint files for the current epoch.
45
45
4. After replication completes, all Materialized View replicas hold identical checkpoint states.
When using shared storage exclusively, Timeplus adopts a different high availability model for Materialized Views, governed by a centralized scheduler.
84
84
@@ -121,7 +121,7 @@ This hybrid approach combines NativeLog with shared storage.
121
121
3. It commits the object URIs / paths metadata records to NativeLog.
122
122
4. Peer replicas consume these path metadata records, fetch the checkpoint files from shared storage, and reconstruct the checkpoint locally.
The `system.stream_metric_log` stream records performance metrics such as **events per second (eps)** and **megabytes per second (mbps)** for Materialized Views, streams, external streams, and external tables.
Copy file name to clipboardExpand all lines: docs/materialized-view.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ A **Materialized View** consists of 4 main components (illustrated in the diagra
23
23
- Persists intermediate query state (e.g., for windowed aggregations or joins).
24
24
- Ensures fault tolerance by allowing recovery and continuation from the last checkpoint after a failure.
25
25
26
-

26
+

27
27
28
28
When a Materialized View checkpoints its query state, it ensures durability and fault tolerance. If the process fails mid-execution, it can **restart from the last checkpoint** without reprocessing the entire stream from beginning.
29
29
@@ -39,7 +39,7 @@ By combining other Timeplus features / components such as:
39
39
40
40
you can build **complex, end-to-end data processing pipelines** with Materialized Views.
0 commit comments