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: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ Official documentation for [Arc](https://github.com/basekick-labs/arc) - the fas
4
4
5
5
## About
6
6
7
-
This repository contains the documentation website for Arc, a high-performance time-series data warehouse built on DuckDB and Parquet. Arc achieves 36.43s on ClickBench (99.9M rows) and delivers 2.01M records/sec ingestion.
7
+
This repository contains the documentation website for Arc, a high-performance time-series data warehouse built on DuckDB and Parquet. Arc achieves 36.43s on ClickBench (99.9M rows) and delivers 2.42M records/sec ingestion.
8
8
9
9
Visit the live documentation at [docs.basekick.net](https://docs.basekick.net)
Copy file name to clipboardExpand all lines: docs/advanced/wal.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ There are **two different WAL features** in Arc:
21
21
WAL is an optional durability feature that persists all incoming data to disk **before** acknowledging writes. When enabled, Arc guarantees that data can be recovered even if the instance crashes.
22
22
23
23
:::info
24
-
WAL is **disabled by default** to maximize throughput (2.01M records/sec). Enable it when zero data loss is required.
24
+
WAL is **disabled by default** to maximize throughput (2.42M records/sec). Enable it when zero data loss is required.
25
25
:::
26
26
27
27
### When to Enable WAL
@@ -32,15 +32,15 @@ Enable WAL if you need:
32
32
-**Recovery from unexpected failures** (power loss, OOM kills)
33
33
34
34
Keep WAL disabled if you:
35
-
-**Prioritize maximum throughput** (2.01M records/sec)
35
+
-**Prioritize maximum throughput** (2.42M records/sec)
36
36
-**Can tolerate 0-5 seconds data loss** on rare crashes
37
37
-**Have client-side retry logic** or message queue upstream
Copy file name to clipboardExpand all lines: docs/installation/docker.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -171,7 +171,7 @@ docker-compose up -d --build
171
171
172
172
## Performance Considerations
173
173
174
-
Docker deployment achieves **~570K records/sec** write throughput. For maximum performance (2.01M RPS), use [native deployment](/arc/installation/native).
174
+
Docker deployment achieves **~570K records/sec** write throughput. For maximum performance (2.42M RPS), use [native deployment](/arc/installation/native).
Copy file name to clipboardExpand all lines: docs/intro.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
@@ -5,11 +5,11 @@ slug: /
5
5
6
6
# Welcome to Arc
7
7
8
-
Arc is a high-performance time-series data warehouse built on DuckDB, Parquet, and flexible storage backends. It achieves **2.01M records/sec ingestion** and is the **fastest time-series database**.
8
+
Arc is a high-performance time-series data warehouse built on DuckDB, Parquet, and flexible storage backends. It achieves **2.42M records/sec ingestion** and is the **fastest time-series database**.
9
9
10
10
## Key Features
11
11
12
-
-**High-Performance Ingestion**: 2.01M records/sec with MessagePack binary protocol
12
+
-**High-Performance Ingestion**: 2.42M records/sec with MessagePack binary protocol
13
13
-**Fast Analytical Queries**: Powered by DuckDB with full SQL support
14
14
-**Flexible Storage**: Local filesystem, MinIO, AWS S3, or Google Cloud Storage
15
15
-**Multi-Database Architecture**: Organize data by environment, tenant, or application
0 commit comments