Releases: streamnative/oxia
Releases · streamnative/oxia
v0.11.7
What's Changed
- fix(replication): fix wrong memory status block replication by @mattisonchao in #569
Full Changelog: v0.11.6...v0.11.7
v0.11.6
What's Changed
- fix(wal): fix recover with insufficient buffer by @mattisonchao in #568
Full Changelog: v0.11.5...v0.11.6
v0.11.5
What's Changed
- fix(wal): fix wrong overflow validation calculation by @mattisonchao in #566
Full Changelog: v0.11.4...v0.11.5
v0.11.4
What's Changed
- fix(server): use the correct err for internal server log by @mattisonchao in #563
- feat(coordinator): use internal address as unique identification for load balance by @mattisonchao in #565
Full Changelog: v0.11.3...v0.11.4
v0.11.3
What's Changed
- Clear pooled connection after node health checks by @merlimat in #557
- fix(coordinator): fix config marshaling error by @mattisonchao in #560
- fix(server): allow higher term shard deleting by @mattisonchao in #559
- feat(coordinator): support update service info when config changed by @mattisonchao in #561
Full Changelog: v0.11.2...v0.11.3
v0.11.2
What's Changed
- fix(server): fix NPE causes server crash by @mattisonchao in #553
- Fixed ClusterConfig loading for boolean values by @merlimat in #555
Full Changelog: v0.11.1...v0.11.2
v0.11.1
What's Changed
- fix(db): delete duplicated callback by @mattisonchao in #550
- feat(wal): support crc for index file by @mattisonchao in #549
- fix(server): fix wrong options for testing by @mattisonchao in #552
Full Changelog: v0.11.0...v0.11.1
v0.11.0
New Features
Secondary indexes.
It's now possible, when writing a record, to have it indexed by additional keys other than its primary key.
Example:
client.Put(ctx, "my-user-id", []byte(value), SecondaryIndex("name", "my-user-name"))
This will allow to do a List()
or RangeScan()
operation based on the secondary index, instead of the primary key:
resCh := client.RangeScan(ctx, "A", "M", UseIndex("name"))
list, err := client.List(ctx, "A", "M", UseIndex("name"))
The returned list will be a list of the primary keys that match the boundaries in the secondary index.
Notes:
- The secondary key is not required to be unique (unlike the primary key for the record)
- A single record can have more that 1 secondary index (eg: index by
name
,age
,location
...) - There can be multiple secondary keys for the same secondary index. eg:
client.Put(ctx, "my-user-id", []byte(value),
SecondaryIndex("ref", "my-ref-1"),
SecondaryIndex("ref", "my-ref-2"),
)
What's Changed
- feat(wal): support chained CRC for write ahead log by @mattisonchao in #538
- Force configmap ownership when updating by @merlimat in #540
- Protobuf changes for secondary indexes by @merlimat in #541
- feat(wal): Decoupled codec related logic by @mattisonchao in #542
- Secondary indexes implementation by @merlimat in #544
- Allow to pass the same secondary index name multiple times on the same record by @merlimat in #546
- Client API changes for secondary idx by @merlimat in #545
- feat(wal): support discard corrupted uncommitted data by @mattisonchao in #547
Full Changelog: v0.10.0...v0.11.0
v0.10.0
What's Changed
- [Go client] Recover from write stream failures by @merlimat in #521
- Fix NPE in coordinator when closing a half-initialized node controller by @merlimat in #520
- Fixed notification DB read after DB was closed by @merlimat in #519
- Include session-id in CLI tool output stats by @merlimat in #524
- fix(server): print the correct error info by @mattisonchao in #527
- fix(tool): follow up #524 to add session id to output by @mattisonchao in #528
- Pool index buffer for read-write wal segments by @merlimat in #523
- Allow to disable notifications on a namespace by @merlimat in #526
- Implementation of disabling notifications on server side by @merlimat in #529
- Configure notifications disabled on standalone CLI by @merlimat in #531
- On delete-range send 1 single notification to clients by @merlimat in #532
- Async quorum-ack-tracker should trigger callback outside of mutex by @merlimat in #533
- feat(server): return storage entry to vtpool when callback error by @mattisonchao in #535
- feat(cmd): support wal cmd
truncate
command by @mattisonchao in #530 - fix(session): expired session write request will delete other session shadow key by @mattisonchao in #534
Full Changelog: v0.9.1...v0.10.0
v0.9.1
What's Changed
- fix(notification): support notification retention configuration by @mattisonchao in #515
Full Changelog: v0.9.0...v0.9.1