Skip to content

Commit e4d5e47

Browse files
committed
fix typo
1 parent a9f5a61 commit e4d5e47

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

docs/mutable-stream.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -311,9 +311,9 @@ Query it again with
311311
```sql
312312
select * from table(kv_99061_1);
313313
```
314-
You will see one row with m1 and m2 updated and other columns in the default vaule.
314+
You will see one row with m1 and m2 updated and other columns in the default value.
315315

316-
Compared to the [Versioned Stream](versioned-stream), coalesced mutable streams don't require you to set all column values when you update a primary key. You can also set `version_column` to the column name to indicate which column with the verison number. Say there are updates for the same primary key, `v` as the `version_column`, the first update is "v=1,p=1,m=1" and the second update is "v=2,p=1,m=2". For some reasons, if Timeplus receives the second update first, then when it gets the "v=1,p=1,m=1", since the version is 1, lower than the current version, so this update will be reject and we keep the latest update as "v=2,p=1,m=2". This is beneficial specialy in distributed environment with potential out of order events.
316+
Compared to the [Versioned Stream](versioned-stream), coalesced mutable streams don't require you to set all column values when you update a primary key. You can also set `version_column` to the column name to indicate which column with the version number. Say there are updates for the same primary key, `v` as the `version_column`, the first update is "v=1,p=1,m=1" and the second update is "v=2,p=1,m=2". For some reasons, if Timeplus receives the second update first, then when it gets the "v=1,p=1,m=1", since the version is 1, lower than the current version, so this update will be reject and we keep the latest update as "v=2,p=1,m=2". This is beneficial specially in distributed environment with potential out of order events.
317317

318318
## Performance Tuning {#tuning}
319319
If you are facing performance challenges with massive data in mutable streams, please consider adding [secondary indexes](#index), [column families](#column_family) and use [multiple shards](#shards).

docs/v2-release-notes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Another preview edition of [Timeplus Enterprise v2.9](enterprise-v2.9) with many
2929

3030
### Timeplus Go Driver v2.1.2
3131
The [proton-go-driver](https://github.com/timeplus-io/proton-go-driver) provides Go connector to interact with Timeplus Enterprise or Timeplus Proton. In this release:
32-
* simplify json marhsalling and support selecting nested fields
32+
* simplify json marshaling and support selecting nested fields
3333

3434
## May 26, 2025
3535

spellchecker/dic.txt

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ backend
8383
Backend
8484
backfill
8585
backoff
86+
backported
8687
backtick
8788
base32-encoding
8889
base58
@@ -499,6 +500,8 @@ LogStream
499500
lookups
500501
low_cardinality
501502
lttb
503+
m1
504+
m2
502505
M2
503506
MacBookPro
504507
MacOS
@@ -526,6 +529,8 @@ minikube
526529
Minio
527530
minio
528531
modularized
532+
mongodb_throw_on_unsupported_query
533+
Monotonicity
529534
mouseover
530535
MQ
531536
mqtt
@@ -585,6 +590,8 @@ OBT
585590
odbc
586591
ODBC
587592
OHLC
593+
oid
594+
oid_columns
588595
okhttp
589596
OLAP
590597
OLTP
@@ -943,6 +950,7 @@ UPSERT
943950
Upsert
944951
UPSERTs
945952
Upstash
953+
uri
946954
URI
947955
url
948956
usecase
@@ -953,6 +961,9 @@ utf-8
953961
UTF-8
954962
uuid
955963
UUID
964+
UUIDs
965+
UUIDv4
966+
UUIDv7
956967
uv
957968
v1
958969
v1.4

0 commit comments

Comments
 (0)