[GitHub] [doris-flink-connector] JNSimba opened a new pull request, #77: [Bug] fix flinksql sink parallelism

2022-10-29 Thread GitBox
JNSimba opened a new pull request, #77: URL: https://github.com/apache/doris-flink-connector/pull/77 # Proposed changes Issue Number: close #xxx ## Problem Summary: Describe the overview of changes. ## Checklist(Required) 1. Does it affect the original behav

[GitHub] [doris] caiconghui commented on issue #13758: [Bug] if function return error result when return multiple columns in vectorized mode

2022-10-29 Thread GitBox
caiconghui commented on issue #13758: URL: https://github.com/apache/doris/issues/13758#issuecomment-1295799550 fix in lts, close it -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific c

[GitHub] [doris] caiconghui closed issue #13758: [Bug] if function return error result when return multiple columns in vectorized mode

2022-10-29 Thread GitBox
caiconghui closed issue #13758: [Bug] if function return error result when return multiple columns in vectorized mode URL: https://github.com/apache/doris/issues/13758 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the U

[GitHub] [doris] freemandealer commented on a diff in pull request #12866: [enhancement](compaction) introduce segment compaction (#12609)

2022-10-29 Thread GitBox
freemandealer commented on code in PR #12866: URL: https://github.com/apache/doris/pull/12866#discussion_r1008696601 ## be/src/olap/rowset/beta_rowset_writer.cpp: ## @@ -315,12 +823,23 @@ Status BetaRowsetWriter::_create_segment_writer( DCHECK(file_writer != nullptr);

[GitHub] [doris] freemandealer commented on a diff in pull request #12866: [enhancement](compaction) introduce segment compaction (#12609)

2022-10-29 Thread GitBox
freemandealer commented on code in PR #12866: URL: https://github.com/apache/doris/pull/12866#discussion_r1008696645 ## be/src/olap/rowset/beta_rowset_writer.cpp: ## @@ -332,7 +851,31 @@ Status BetaRowsetWriter::_create_segment_writer( return Status::OK(); } -Status Bet

[GitHub] [doris] freemandealer commented on a diff in pull request #12866: [enhancement](compaction) introduce segment compaction (#12609)

2022-10-29 Thread GitBox
freemandealer commented on code in PR #12866: URL: https://github.com/apache/doris/pull/12866#discussion_r1008696839 ## be/src/olap/rowset/beta_rowset_writer.cpp: ## @@ -236,6 +692,26 @@ RowsetSharedPtr BetaRowsetWriter::build() { return nullptr; } } +

[GitHub] [doris] freemandealer commented on a diff in pull request #12866: [enhancement](compaction) introduce segment compaction (#12609)

2022-10-29 Thread GitBox
freemandealer commented on code in PR #12866: URL: https://github.com/apache/doris/pull/12866#discussion_r1008697568 ## be/src/olap/delta_writer.cpp: ## @@ -171,12 +171,12 @@ Status DeltaWriter::write(Tuple* tuple) { // if memtable is full, push it to the flush executor,

[GitHub] [doris] freemandealer commented on a diff in pull request #12866: [enhancement](compaction) introduce segment compaction (#12609)

2022-10-29 Thread GitBox
freemandealer commented on code in PR #12866: URL: https://github.com/apache/doris/pull/12866#discussion_r1008698285 ## be/src/olap/rowset/beta_rowset_writer.cpp: ## @@ -236,6 +692,26 @@ RowsetSharedPtr BetaRowsetWriter::build() { return nullptr; } } +

[GitHub] [doris] github-actions[bot] commented on pull request #12866: [enhancement](compaction) introduce segment compaction (#12609)

2022-10-29 Thread GitBox
github-actions[bot] commented on PR #12866: URL: https://github.com/apache/doris/pull/12866#issuecomment-1295837320 PR approved by at least one committer and no changes requested. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHu

[doris] branch branch-1.2-lts updated (2ed8f15ba8 -> 2a5d3dbb6e)

2022-10-29 Thread morningman
This is an automated email from the ASF dual-hosted git repository. morningman pushed a change to branch branch-1.2-lts in repository https://gitbox.apache.org/repos/asf/doris.git discard 2ed8f15ba8 (bin) do not set heap limit for tcmalloc until doris does not allocates large unused memory

[GitHub] [doris] morningman opened a new pull request, #13777: [fix](explain) add full qualified name for scan node explain string

2022-10-29 Thread GitBox
morningman opened a new pull request, #13777: URL: https://github.com/apache/doris/pull/13777 # Proposed changes Issue Number: close #xxx ## Problem summary In the "explain" result of SQL, the table name in `ScanNode` should be full qualified with dbname. And for olap

[GitHub] [doris] xiaokang opened a new pull request, #13778: [feature](jsonb type)refactor JSONB type using column and add testcase

2022-10-29 Thread GitBox
xiaokang opened a new pull request, #13778: URL: https://github.com/apache/doris/pull/13778 # Proposed changes Issue Number: close [DSIP-016: Support JSON type](https://cwiki.apache.org/confluence/display/DORIS/DSIP-016%3A+Support+JSON+type?src=contextnavpagetreemode) ## Proble

[GitHub] [doris] HappenLee opened a new pull request, #13779: [Bug](function) fix bug of if function of nullable column process

2022-10-29 Thread GitBox
HappenLee opened a new pull request, #13779: URL: https://github.com/apache/doris/pull/13779 # Proposed changes Issue Number: close #13758 ## Problem summary Describe your changes. ## Checklist(Required) 1. Does it affect the original behavior: - [ ]

[GitHub] [doris] morningman opened a new pull request, #13780: [feature](multi-catalog) persist external catalog/db/tbl

2022-10-29 Thread GitBox
morningman opened a new pull request, #13780: URL: https://github.com/apache/doris/pull/13780 # Proposed changes Issue Number: close #xxx ## Problem summary Describe your changes. ## Checklist(Required) 1. Does it affect the original behavior: - [ ]

[GitHub] [doris] 924060929 commented on pull request #13776: [fix](nereids) map literal to double in FilterSelectivityCalculator

2022-10-29 Thread GitBox
924060929 commented on PR #13776: URL: https://github.com/apache/doris/pull/13776#issuecomment-1296084996 Literal.getDouble() should supply a default value without throw exception. ```java public double getDouble() { try { return Double.parseDouble(getValue().toString(

[GitHub] [doris] github-actions[bot] commented on pull request #13779: [Bug](function) fix bug of if function of nullable column process

2022-10-29 Thread GitBox
github-actions[bot] commented on PR #13779: URL: https://github.com/apache/doris/pull/13779#issuecomment-1296089315 PR approved by at least one committer and no changes requested. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHu

[GitHub] [doris] github-actions[bot] commented on pull request #13779: [Bug](function) fix bug of if function of nullable column process

2022-10-29 Thread GitBox
github-actions[bot] commented on PR #13779: URL: https://github.com/apache/doris/pull/13779#issuecomment-1296089333 PR approved by anyone and no changes requested. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the UR

[GitHub] [doris] dataroaring opened a new pull request, #13781: [improvement](memory) simplify memory config related to tcmalloc

2022-10-29 Thread GitBox
dataroaring opened a new pull request, #13781: URL: https://github.com/apache/doris/pull/13781 There are several configs related to tcmalloc, users do know how to config them. Actually users just want two modes, performance or compact, in performance mode, users want doris run query and loa

[GitHub] [doris] englefly opened a new pull request, #13782: [feature](regression) add custom config file for Regression: regression-conf-custom.groovy

2022-10-29 Thread GitBox
englefly opened a new pull request, #13782: URL: https://github.com/apache/doris/pull/13782 # Proposed changes some configs are necessary but cannot be pushed into repo, such as ``` jdbcUrl = "jdbc:mysql://127.0.0.1:9030/?" enableBrokerLoad=true ak="" sk="" ``` customi

[GitHub] [doris] englefly commented on pull request #13782: [feature](regression) add custom config file for Regression: regression-conf-custom.groovy

2022-10-29 Thread GitBox
englefly commented on PR #13782: URL: https://github.com/apache/doris/pull/13782#issuecomment-1296092090 @dataroaring please review -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific co

[GitHub] [doris] englefly opened a new pull request, #13783: [feature](regression) add custom config file for Regression: regression-conf-custom.groovy

2022-10-29 Thread GitBox
englefly opened a new pull request, #13783: URL: https://github.com/apache/doris/pull/13783 # Proposed changes some configs are necessary but cannot be pushed into repo, such as ``` jdbcUrl = "jdbc:mysql://127.0.0.1:9030/?" enableBrokerLoad=true ak="" sk="" ``` customi

[GitHub] [doris] dataroaring opened a new pull request, #13784: [improvement](memory) simplify memory config related to tcmalloc

2022-10-29 Thread GitBox
dataroaring opened a new pull request, #13784: URL: https://github.com/apache/doris/pull/13784 There are several configs related to tcmalloc, users do know how to config them. Actually users just want two modes, performance or compact, in performance mode, users want doris run query and loa

[GitHub] [doris] englefly closed pull request #13782: [feature](regression) add custom config file for Regression: regression-conf-custom.groovy

2022-10-29 Thread GitBox
englefly closed pull request #13782: [feature](regression) add custom config file for Regression: regression-conf-custom.groovy URL: https://github.com/apache/doris/pull/13782 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and u

[GitHub] [doris] Yukang-Lian opened a new pull request, #13785: [Feature](Sequence) Support sequence_match and sequence_count functions

2022-10-29 Thread GitBox
Yukang-Lian opened a new pull request, #13785: URL: https://github.com/apache/doris/pull/13785 # Proposed changes Issue Number: close #xxx ## Problem summary Describe your changes. ## Checklist(Required) 1. Does it affect the original behavior: - [ ]

[GitHub] [doris] SaintBacchus opened a new pull request, #13786: [feature-wip][MTMV] Add show statement for MTMV

2022-10-29 Thread GitBox
SaintBacchus opened a new pull request, #13786: URL: https://github.com/apache/doris/pull/13786 # Proposed changes Issue Number: close #13751 ## Problem summary Describe your changes. ## Checklist(Required) 1. Does it affect the original behavior: -

[GitHub] [doris] github-actions[bot] commented on pull request #13777: [fix](explain) add full qualified name for scan node explain string

2022-10-29 Thread GitBox
github-actions[bot] commented on PR #13777: URL: https://github.com/apache/doris/pull/13777#issuecomment-1296115635 PR approved by at least one committer and no changes requested. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHu

[GitHub] [doris] github-actions[bot] commented on pull request #13777: [fix](explain) add full qualified name for scan node explain string

2022-10-29 Thread GitBox
github-actions[bot] commented on PR #13777: URL: https://github.com/apache/doris/pull/13777#issuecomment-1296115648 PR approved by anyone and no changes requested. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the UR

[GitHub] [doris] morningman merged pull request #13777: [fix](explain) add full qualified name for scan node explain string

2022-10-29 Thread GitBox
morningman merged PR #13777: URL: https://github.com/apache/doris/pull/13777 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@doris.a

[doris] branch master updated (2a5d3dbb6e -> efe813ba60)

2022-10-29 Thread morningman
This is an automated email from the ASF dual-hosted git repository. morningman pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/doris.git from 2a5d3dbb6e feat(nereids): draw hyper graph by graphviz (#13749) add efe813ba60 [fix](test)(explain) add full q

[GitHub] [doris] englefly opened a new pull request, #13787: [fix](nereids) nereids fallback error

2022-10-29 Thread GitBox
englefly opened a new pull request, #13787: URL: https://github.com/apache/doris/pull/13787 # Proposed changes Bug: when enable_nereids_planner=false and enable_fallback_to_origin=false, FE throws exception for all select statement. Expected: when enable_nereids_planner=false,

[GitHub] [doris] englefly commented on pull request #13787: [fix](nereids) nereids fallback error

2022-10-29 Thread GitBox
englefly commented on PR #13787: URL: https://github.com/apache/doris/pull/13787#issuecomment-1296133962 @Kikyou1997 Could you review, please? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the

[GitHub] [doris] morningman commented on a diff in pull request #13784: [improvement](memory) simplify memory config related to tcmalloc

2022-10-29 Thread GitBox
morningman commented on code in PR #13784: URL: https://github.com/apache/doris/pull/13784#discussion_r1008800341 ## be/src/common/config.h: ## @@ -42,25 +42,8 @@ CONF_Int32(brpc_num_threads, "-1"); // If no ip match this rule, will choose one randomly. CONF_String(priority_ne