[minor] add disable swap command#26797
Closed
xiedeyantu wants to merge 2991 commits intoapache:branch-2.0from
Closed
[minor] add disable swap command#26797xiedeyantu wants to merge 2991 commits intoapache:branch-2.0from
xiedeyantu wants to merge 2991 commits intoapache:branch-2.0from
Conversation
…nfig (apache#25595) remove sf100 cascades specific control for global config, which is only for q72
1. add checks and handling of sequence column in apache#21896 to insert statement in origin planner and Nereids planner. 2. disable drop sequence mapping column in schema change.
…w::Schema recalculate with block info (apache#24603)
…task already exists (apache#25597)
apache#25500) Support aggregate functions in select without from clause, here are some examples as following: SELECT 1, 'a', COUNT(), SUM(1) + 1, AVG(2) / COUNT(), MAX(3), MIN(4), RANK() OVER() AS w_rank, DENSE_RANK() OVER() AS w_dense_rank, ROW_NUMBER() OVER() AS w_row_number, SUM(5) OVER() AS w_sum, AVG(6) OVER() AS w_avg, COUNT() OVER() AS w_count, MAX(7) OVER() AS w_max, MIN(8) OVER() AS w_min;
For comparison predicate, two arguments must be cast to datetime and push down to storage if either one is date type. This PR disables predicate push-down for this case.
… and add docs (apache#25528) cases will be added later.
…sample (apache#25593) 1. To avoid misleading of inaccurate min max stats, set the stats value to NULL while using sample to collect stats. 2. Fix NDV_SAMPLE_TEMPLATE typo, it shouldn't contain row count related contents.
…he#25489) * Using cgroup to implement cpu hard limit * code style
…e#26002) Reject the edge which has an alias when ordering edge
Add docs for complex and nested types.
could not run multi group_concat distinct with more than one parameters. This bug is not just for group_concat, but we usually use literal as parameters in group_concat. So group_concat brought the problem to light. In the original logic, we think only distinct aggregate function with zero or one parameter could run in multi distinct mode. But it is wrong. We could process all distinct aggregate function with not more than one input slots. Think about sql: ```sql SELECT group_concat(distinct c1, ','), group_concat(distinct c2, ',') FROM t GROUP BY c3 ```
…#26003) The image file of our cluster reaches 2.3G. After the checkpoint, Followers synchronize the image timeout, resulting in the continuous increase of the bdb directory. related pr: apache#25768
…" (apache#26029) This reverts commit a01922c.
Add tpcds sf100 hive shapes. Disable query64 temporarily because it is not same with emr cluster after collecting metadata by analyze table xxx. And the root cause need to analyze, will enable in future PR.
…be always nullable (apache#26014)
apache#25847) Doris is not responsible for managing snapshots, but it needs to clear all snapshots before doing backup/restore regression testing, so a property is added to indicate that existing snapshots need to be cleared when creating a repo. In addition, a regression test case for backup/restore has been added.
…)" (apache#26069) This reverts commit 3beba17.
… later) (apache#26048) In branch 2.0, we changed the read/write method of AnalysisManager, and rename the image module name to AnalysisMgrV2. So we need to make the same change in master branch, so that user can upgrade Doris from branch-2.0 to master branch. After this PR, user can: - upgrade from 2.0.x(or branch-2.0) to master
… type (apache#25470) Previously,doris's `DateTimev2` was exported to orc as a `String` type. Now, export doris's `DateTimev2` to orc timestamp type.
…e#25727) In previous, when using file scan node(eq, querying hive table), the max number of scanner for each scan node will be the `doris_scanner_thread_pool_thread_num`(default is 48). And if the query parallelism is N, the total number of scanner would be 48 * N, which is too many. In this PR, I change the logic, the max number of scanner for each scan node will be the `doris_scanner_thread_pool_thread_num / query parallelism`. So that the total number of scanners will be up to `doris_scanner_thread_pool_thread_num`. Reduce the number of scanner can significantly reduce the memory usage of query.
example: set ignore_runtime_filter_ids="3, 1"; after this setting, RF003 and RF001 will be ignored
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
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.
Proposed changes
Issue Number: close #xxx
Further comments
If this is a relatively large or complex change, kick off the discussion at dev@doris.apache.org by explaining why you chose the solution you did and what alternatives you considered, etc...