-
Notifications
You must be signed in to change notification settings - Fork 24
1.0.2 Release Notes (2023 03 09)
IHEII edited this page Mar 23, 2023
·
2 revisions
Previous Release Notes: 1.0.1 Release Notes (2023 02 09)
Fix some bugs in connection and logs, and improve the usability of the log module.
Add interface to set atomic batch mutation.
Some fixed bugs are listed below
- When using a connection concurrently, an unrecoverable login failure maybe occurs.
- Logs can not be printed through you import the logback framework in your project.
- In ODP mode, the client connection cannot be appropriately released when ObTableClient close.
- Add trace-id print in monitor log for better performance diagnosis
Add a new interface to set an atomic batch mutation. The batch mutation is not atomic in default. When an incorrect operation is inside a batch mutation, an error will be returned after you set this batch mutation atomic. (Noticed that only operations in one partition will be atomic, operations from batch operations computed across partitions are not atomic). public BatchOperation setIsAtomic(boolean isAtomic)
public BatchOperation setIsAtomic(boolean isAtomic);