forked from StarRocks/starrocks
-
Notifications
You must be signed in to change notification settings - Fork 0
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
[pull] main from StarRocks:main #4
Merged
Merged
Conversation
This file contains 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
Signed-off-by: ricky <[email protected]>
) Signed-off-by: Alex Zhu <[email protected]>
…r predicate (#44588) Signed-off-by: zihe.liu <[email protected]>
Signed-off-by: gengjun-git <[email protected]>
…action_fill_data_cache config (#44946) Signed-off-by: starrocks-xupeng <[email protected]>
Signed-off-by: srlch <[email protected]>
User should be able to show grants for all predecessor roles which it owned, not just the roles it owned directly Signed-off-by: Dejun Xia <[email protected]>
Signed-off-by: Seaven <[email protected]>
Signed-off-by: srlch <[email protected]>
Signed-off-by: ABingHuang <[email protected]> Signed-off-by: ABing <[email protected]> Co-authored-by: Seaven <[email protected]>
Signed-off-by: ricky <[email protected]>
Signed-off-by: ricky <[email protected]> Co-authored-by: wyb <[email protected]>
Signed-off-by: zhangqiang <[email protected]>
Signed-off-by: Binglin Chang <[email protected]>
Signed-off-by: stephen <[email protected]>
github-actions
bot
added
title needs [type]
documentation
Improvements or additions to documentation
labels
Apr 29, 2024
pull
bot
added
⤵️ pull
and removed
documentation
Improvements or additions to documentation
title needs [type]
labels
Apr 29, 2024
github-actions
bot
added
the
documentation
Improvements or additions to documentation
label
Apr 29, 2024
Signed-off-by: zombee0 <[email protected]>
Signed-off-by: wyb <[email protected]>
Signed-off-by: shuming.li <[email protected]>
… publish (#44974) Signed-off-by: HangyuanLiu <[email protected]>
Signed-off-by: wyb <[email protected]>
Signed-off-by: 絵空事スピリット <[email protected]>
Signed-off-by: trueeyu <[email protected]>
…eration (#45114) Signed-off-by: Youngwb <[email protected]>
…5174) Signed-off-by: Alex Zhu <[email protected]>
Signed-off-by: Seaven <[email protected]>
Signed-off-by: evelynzhaojie <[email protected]
Signed-off-by: stephen <[email protected]>
Signed-off-by: gengjun-git <[email protected]>
## Why I'm doing: The non-fair ReentrantLock in java may cause lock starvation, the read lock will never be hold in the following code. ```java ReentrantReadWriteLock lock = new ReentrantReadWriteLock(); new Thread(() -> { while (true) { lock.writeLock().lock(); System.out.println("write"); try { Thread.sleep(10); } catch (InterruptedException e) { e.printStackTrace(); } lock.writeLock().unlock(); } }).start(); new Thread(() -> { while (true) { lock.readLock().lock(); System.out.println("read"); try { Thread.sleep(10); } catch (InterruptedException e) { e.printStackTrace(); } lock.readLock().unlock(); } }).start(); ``` ## What I'm doing: Change all the locks to fair lock. Signed-off-by: gengjun-git <[email protected]>
Why I'm doing: FE will always wait for task to be finished, for report_task_worker won't work when node as compute node if task timeout in be. What I'm doing: Enable report_task_worker_pool and task should be reported to FE even if timeout. Signed-off-by: smartlxh <[email protected]>
Signed-off-by: AndyZiYe <[email protected]>
…exists partition evolution (#45239) Signed-off-by: stephen <[email protected]>
Signed-off-by: Dejun Xia <[email protected]>
Signed-off-by: Murphy <[email protected]>
Signed-off-by: gengjun-git <[email protected]>
Why I'm doing: In order to be able to reduce reads and writes to the object store, we added COMBINED TXN LOG in #42542, i.e., only one txn log file is written per partition instead of one per Tablet. However, in #42542, only stream load and routine load support combined txn log, the common insert into and broker load can not use combined txn log. What I'm doing: Support combined txn log for insert and broker load. Avoid sending invalid txn log deletion requests when combined txn log and batch publish are turned on at the same time Signed-off-by: Alex Zhu <[email protected]>
Signed-off-by: Kevin Xiaohua Cai <[email protected]>
…s(Part1) (#44955) Signed-off-by: shuming.li <[email protected]>
…null (#45275) Signed-off-by: trueeyu <[email protected]>
Signed-off-by: evelyn.zhaojie <[email protected]> Co-authored-by: evelyn.zhaojie <[email protected]>
…tion during publish (#45143) Signed-off-by: meegoo <[email protected]>
Signed-off-by: stdpain <[email protected]>
Signed-off-by: Youngwb <[email protected]>
Signed-off-by: stephen <[email protected]>
#42285) Signed-off-by: Yi Wang <[email protected]>
Signed-off-by: before-Sunrise <[email protected]>
Signed-off-by: Seaven <[email protected]>
…cates into fe for materialized views/task run status (#44981) Signed-off-by: shuming.li <[email protected]>
…Part-2 local table) (#44622) Signed-off-by: luohaha <[email protected]>
Signed-off-by: evelynzhaojie <[email protected]
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
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.
See Commits and Changes for more details.
Created by pull[bot]
Can you help keep this open source service alive? 💖 Please sponsor : )