-
Notifications
You must be signed in to change notification settings - Fork 24
Fix ob down ls timeout #299
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Contributor
|
LGTM |
1 similar comment
Contributor
|
LGTM |
WeiXinChan
added a commit
that referenced
this pull request
Mar 27, 2025
* support mysql date/datetime (#287) * fix addr expired throw (#292) * add fts case (#294) * Move JDBC driver loading to static initializer (#293) * Optimize JDBC driver loading with thread-safe initialization and reduce log * Move JDBC driver loading to static initializer * remove unused code * remove unused code * Fix issue where low traffic prevents timely detection and refresh of RS when the peer goes offline (#297) * [maven-release-plugin] prepare release obkv-table-client-1.4.1 * [maven-release-plugin] prepare for next development iteration * Update README.md * Fix ob down ls timeout (#299) * SQLException need to refresh obTable roster * refresh tablet address after refresh obTable roster * refresh table roster if obtable is null * use force renew to update roster * add log * update addrExpired after refresh * Capture exceptions in the refreshIndexInfo and do syncRefreshMetadata (#301) * Capture exceptions in the refreshIndexInfo and do syncRefreshMetadata * fix * fix commonExecute not catch refreshException * [maven-release-plugin] prepare release obkv-table-client-1.4.2 * [maven-release-plugin] prepare for next development iteration --------- Co-authored-by: vanson <43193589+WeiXinChan@users.noreply.github.com> Co-authored-by: GroundWu <1175416256@qq.com> Co-authored-by: junye <xf375358@oceanbase.com> Co-authored-by: fan <37357096+wyfanxiao@users.noreply.github.com> Co-authored-by: Ziyu Shi <57038180+JackShi148@users.noreply.github.com>
WeiXinChan
added a commit
that referenced
this pull request
Apr 9, 2025
* feat: support user_specific_T flag for ObTableQueryAndMutate and ObTableSingleOp (#289) * support sync server capacity and negate expr (#288) * adapt for distributedExecute * Revert "adapt for distributedExecute" This reverts commit 095ccbe. * adapt for distributedExecute (#290) * adapt for distributedExecute * fix for compile * fix for ci test * get server capacity in odp mode * fix for reviews * fix sub expr bug (#291) * fix some bugs (#298) * fix sub expr bug * fix queryAndMutate in secondary part * fix tablet_id error bug (#302) * fix sub expr bug * fix scan bug * add client type * mutation,query_and_mutate set a isUserSpecifiedT based on T (#300) * set partition id invalid when isDistributedExecuteSupported * add query_and_mutate check_and_mutate (#305) * add query_and_mutate check_and_mutate * fix review * abs func * add kvMode test for secondary part (#307) * Secondary part rebase master (#309) * support mysql date/datetime (#287) * fix addr expired throw (#292) * add fts case (#294) * Move JDBC driver loading to static initializer (#293) * Optimize JDBC driver loading with thread-safe initialization and reduce log * Move JDBC driver loading to static initializer * remove unused code * remove unused code * Fix issue where low traffic prevents timely detection and refresh of RS when the peer goes offline (#297) * [maven-release-plugin] prepare release obkv-table-client-1.4.1 * [maven-release-plugin] prepare for next development iteration * Update README.md * Fix ob down ls timeout (#299) * SQLException need to refresh obTable roster * refresh tablet address after refresh obTable roster * refresh table roster if obtable is null * use force renew to update roster * add log * update addrExpired after refresh * Capture exceptions in the refreshIndexInfo and do syncRefreshMetadata (#301) * Capture exceptions in the refreshIndexInfo and do syncRefreshMetadata * fix * fix commonExecute not catch refreshException * [maven-release-plugin] prepare release obkv-table-client-1.4.2 * [maven-release-plugin] prepare for next development iteration --------- Co-authored-by: vanson <43193589+WeiXinChan@users.noreply.github.com> Co-authored-by: GroundWu <1175416256@qq.com> Co-authored-by: junye <xf375358@oceanbase.com> Co-authored-by: fan <37357096+wyfanxiao@users.noreply.github.com> Co-authored-by: Ziyu Shi <57038180+JackShi148@users.noreply.github.com> * add version check for distributed execute (#311) * change obhbaseParams defualt param * [Fix] hbase multi partition scan return repetitive data * fix ClientType Incompatible (#316) * fix allowDistributeScan default value (#318) * fix erase table group get nullptr (#315) --------- Co-authored-by: stuBirdFly <84010733+stuBirdFly@users.noreply.github.com> Co-authored-by: GroundWu <1175416256@qq.com> Co-authored-by: vanson <43193589+WeiXinChan@users.noreply.github.com> Co-authored-by: WeiXinChan <chenwx6728@163.com> Co-authored-by: junye <xf375358@oceanbase.com> Co-authored-by: fan <37357096+wyfanxiao@users.noreply.github.com> Co-authored-by: Ziyu Shi <57038180+JackShi148@users.noreply.github.com> Co-authored-by: stuBirdFly <1065492934@qq.com> Co-authored-by: shen <shenyunlong.syl@antgroup.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
Fix long-time down after kill the leader observer, instantly refresh address roster and location to ensure the stability.
Solution Description