forked from matrixorigin/matrixone
-
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
merge main #131
Merged
XuPeng-SH
merged 24 commits into
XuPeng-SH:TombstoneBasedMO
from
jiangxinmeng1:tombstone_2
Jun 4, 2024
Merged
merge main #131
XuPeng-SH
merged 24 commits into
XuPeng-SH:TombstoneBasedMO
from
jiangxinmeng1:tombstone_2
Jun 4, 2024
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
Each tenant of the current mo has a mo_snapshot table to store snapshot information. GC needs to consume all mo_snapshot tables. Approved by: @XuPeng-SH
append log for upgrader and sqlExecutor Approved by: @daviszhen, @badboynt1, @zhangxu19830126, @m-schen
…xorigin#16558) 1. filter CNs that are not in working state. 2. add some logs for migration Approved by: @zhangxu19830126
fix lock service ut Approved by: @zhangxu19830126
To avoid List() operations on oss, tke or s3, you need to add the Cost interface. Approved by: @reusee, @XuPeng-SH
optimize explain info for tp/ap query Approved by: @daviszhen, @ouyuanning, @aunjgr
aim to exclude the `system,system_metrics` part case. changes: 1. move `cases/table/system_table_cases` system,system_metrics part into individule case file. Approved by: @heni02
remove log print from automaxprocs Approved by: @triump2020, @m-schen, @ouyuanning, @aunjgr, @zhangxu19830126
rm 15901 Approved by: @heni02
Remove some unnecessary MustStrCol, MustBytesCol calls. Approved by: @daviszhen, @reusee, @m-schen, @aunjgr, @XuPeng-SH
add bvt tag Approved by: @heni02, @aressu1985
add case for restore pub_sub Approved by: @heni02
Add shardservice kernel. Approved by: @reusee, @m-schen, @daviszhen, @XuPeng-SH, @volgariver6, @badboynt1, @ouyuanning, @triump2020, @w-zr, @sukki37, @aunjgr, @fengttt
…trixorigin#16366) During `KNN Select` and `Mapping Entries to Centroids via CROSS_JOIN_L2`, we can make use of L2DistanceSq instead of L2Distance, as it avoids `Sqrt()`. We can see the improvement in QPS for SIFT128 from 90 to 100. However, for GIST960, the QPS did not change much. L2DistanceSq is suitable only when there is a comparison (ie ORDER BY), and when the absolute value (ie actual L2Distance) is not required. - In the case of `CROSS JOIN L2` we find the nearest centroid for the Entry using `L2DistanceSq`. `CROSS JOIN L2` is used in both INSERT and CREATE INDEX. - In the case of `KNN SELECT`, our query has ORDER BY L2_DISTANCE(...), which can make use of `L2DistanceSq` as the L2Distance value is not explicitly required. **NOTE:** L2DistanceSq is not suitable in Kmenas++ for Centroid Computation, as it will impact the centroids picked. Approved by: @heni02, @m-schen, @aunjgr, @badboynt1
add sharding metrics Approved by: @aptend
fix data race Approved by: @reusee
Reshape objects block by block. Approved by: @XuPeng-SH
…16551) - system variable now is account isolated - table `mo_mysql_compatibility_mode` only saves delta info between account's and cluster's default system variable values - always use session variable except `show global variables` Approved by: @daviszhen, @aunjgr, @aressu1985
When truncate table, if the table does not have any auto-incr col, there is no need to call the Reset interface of increment_service Approved by: @ouyuanning
…gin#16604) 1. bump go version from 1.21.5 to 1.22.3 2. fix `make compose` to make it work 3. `make ut` will read `UT_WORKDIR` env variable to store report, it will be `$HOME` if `UT_WORKDIR` is empty Approved by: @zhangxu19830126, @sukki37
remove isMerge from build operator Approved by: @m-schen
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.
What type of PR is this?
Which issue(s) this PR fixes:
issue #
What this PR does / why we need it: