[GitHub] [doris] Kikyou1997 commented on a diff in pull request #13311: [feature](nereids) add stats min/maxValue support for Date/CHAR/VARCHAR

2022-10-12 Thread GitBox
Kikyou1997 commented on code in PR #13311: URL: https://github.com/apache/doris/pull/13311#discussion_r993070844 ## fe/fe-core/src/main/java/org/apache/doris/statistics/ColumnStat.java: ## @@ -285,6 +285,17 @@ private double convertToDouble(Type type, String columnValue) throws

[GitHub] [doris] yiguolei commented on pull request #13285: [improvement](memory) disable page cache and chunk allocator, optimize memory allocate size

2022-10-12 Thread GitBox
yiguolei commented on PR #13285: URL: https://github.com/apache/doris/pull/13285#issuecomment-1275693556 > Gives the performance impact of `disable page cache` and `disable chunk allocator`, and the benefits of doing so, such as increasing OOM risk because they have no gc. 1. Current

[GitHub] [doris] englefly commented on a diff in pull request #13311: [feature](nereids) add stats min/maxValue support for Date/CHAR/VARCHAR

2022-10-12 Thread GitBox
englefly commented on code in PR #13311: URL: https://github.com/apache/doris/pull/13311#discussion_r993074892 ## fe/fe-core/src/main/java/org/apache/doris/statistics/ColumnStat.java: ## @@ -285,6 +285,17 @@ private double convertToDouble(Type type, String columnValue) throws A

[GitHub] [doris] dataalive commented on issue #13309: openEuler 22.03-LTS 'doris_be' failed to start (exit status 127) -- '/var/apache-doris/be/bin/start_be.sh': /var/apache-doris/be/lib/doris_be: sy

2022-10-12 Thread GitBox
dataalive commented on issue #13309: URL: https://github.com/apache/doris/issues/13309#issuecomment-1275698074 这个用最新的1.1.3编译或者发布后的arm包应该可以。 -- 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 spe

[GitHub] [doris] englefly closed pull request #12522: [feature](nereids) print more friendly join info in `explain`

2022-10-12 Thread GitBox
englefly closed pull request #12522: [feature](nereids) print more friendly join info in `explain` URL: https://github.com/apache/doris/pull/12522 -- 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] huangkaiyan10 commented on issue #13309: openEuler 22.03-LTS 'doris_be' failed to start (exit status 127) -- '/var/apache-doris/be/bin/start_be.sh': /var/apache-doris/be/lib/doris_be

2022-10-12 Thread GitBox
huangkaiyan10 commented on issue #13309: URL: https://github.com/apache/doris/issues/13309#issuecomment-1275711726 doris 1.1.3 test ok -- 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

[GitHub] [doris] huangkaiyan10 closed issue #13309: openEuler 22.03-LTS 'doris_be' failed to start (exit status 127) -- '/var/apache-doris/be/bin/start_be.sh': /var/apache-doris/be/lib/doris_be: symb

2022-10-12 Thread GitBox
huangkaiyan10 closed issue #13309: openEuler 22.03-LTS 'doris_be' failed to start (exit status 127) -- '/var/apache-doris/be/bin/start_be.sh': /var/apache-doris/be/lib/doris_be: symbol lookup error: /var/apache-doris/be/lib/doris_be: undefined symbol: _dl_sym, version GLIBC_PRIVATE URL: http

[GitHub] [doris] englefly commented on a diff in pull request #13311: [feature](nereids) add stats min/maxValue support for Date/CHAR/VARCHAR

2022-10-12 Thread GitBox
englefly commented on code in PR #13311: URL: https://github.com/apache/doris/pull/13311#discussion_r993074892 ## fe/fe-core/src/main/java/org/apache/doris/statistics/ColumnStat.java: ## @@ -285,6 +285,17 @@ private double convertToDouble(Type type, String columnValue) throws A

[GitHub] [doris] huangkaiyan10 opened a new issue, #13318: 'doris_fe' failed to start (exit status 0) -- '/var/apache-doris/fe/bin/start_fe.sh': SLF4J: Class path contains multiple SLF4J bindings.

2022-10-12 Thread GitBox
huangkaiyan10 opened a new issue, #13318: URL: https://github.com/apache/doris/issues/13318 ### Search before asking - [X] I had searched in the [issues](https://github.com/apache/incubator-doris/issues?q=is%3Aissue) and found no similar issues. ### Version doris 1.

[GitHub] [doris] yiguolei merged pull request #13290: [cleanup](config) remove unused config push_write_mbytes_per_sec

2022-10-12 Thread GitBox
yiguolei merged PR #13290: URL: https://github.com/apache/doris/pull/13290 -- 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.apa

[doris] branch master updated (1bd14f1d82 -> 4a5095f00d)

2022-10-12 Thread yiguolei
This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/doris.git from 1bd14f1d82 [feature-wip](jsonb) jsonb parse function and load (#13129) add 4a5095f00d [cleanup](config) remove u

[GitHub] [doris] weizhengte commented on pull request #13303: [enhancement](statistics) Support to drop table or partition statistics

2022-10-12 Thread GitBox
weizhengte commented on PR #13303: URL: https://github.com/apache/doris/pull/13303#issuecomment-1275765669 > I have a little question is that when will a user want to delete stats of some partitions rather than whole table, just curious This is mainly related to the statistics of part

[GitHub] [doris] weizhengte commented on a diff in pull request #13303: [enhancement](statistics) Support to drop table or partition statistics

2022-10-12 Thread GitBox
weizhengte commented on code in PR #13303: URL: https://github.com/apache/doris/pull/13303#discussion_r993136661 ## fe/fe-core/src/main/java/org/apache/doris/statistics/TableStats.java: ## @@ -78,7 +78,7 @@ public TableStats(double rowCount, long dataSize) { } public

[GitHub] [doris] morningman commented on a diff in pull request #13282: [feature-wip](multi-catalog) support csv reader

2022-10-12 Thread GitBox
morningman commented on code in PR #13282: URL: https://github.com/apache/doris/pull/13282#discussion_r992906420 ## be/src/vec/exec/format/csv/vcsv_reader.h: ## @@ -0,0 +1,83 @@ +// Licensed to the Apache Software Foundation (ASF) under one +// or more contributor license agreem

[GitHub] [doris] weizhengte commented on a diff in pull request #13303: [enhancement](statistics) Support to drop table or partition statistics

2022-10-12 Thread GitBox
weizhengte commented on code in PR #13303: URL: https://github.com/apache/doris/pull/13303#discussion_r993143111 ## fe/fe-core/src/main/java/org/apache/doris/statistics/Statistics.java: ## @@ -159,6 +164,26 @@ public void updateColumnStats(long tableId, String partitionName, St

[GitHub] [doris] weizhengte commented on a diff in pull request #13303: [enhancement](statistics) Support to drop table or partition statistics

2022-10-12 Thread GitBox
weizhengte commented on code in PR #13303: URL: https://github.com/apache/doris/pull/13303#discussion_r993136661 ## fe/fe-core/src/main/java/org/apache/doris/statistics/TableStats.java: ## @@ -78,7 +78,7 @@ public TableStats(double rowCount, long dataSize) { } public

[GitHub] [doris] morningman merged pull request #13282: [feature-wip](multi-catalog) support csv reader

2022-10-12 Thread GitBox
morningman merged PR #13282: URL: https://github.com/apache/doris/pull/13282 -- 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 (4a5095f00d -> b7621e1615)

2022-10-12 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 4a5095f00d [cleanup](config) remove unused config push_write_mbytes_per_sec (#13290) add b7621e1615 [feature-

[GitHub] [doris] zhannngchen opened a new pull request, #13319: [improvemnt][doc] refine doc for unique key data model

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

[GitHub] [doris] morningman merged pull request #13257: [feature-wip](multi-catalog) optimize parquet profile & add null map timer

2022-10-12 Thread GitBox
morningman merged PR #13257: URL: https://github.com/apache/doris/pull/13257 -- 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 (b7621e1615 -> bb4414e303)

2022-10-12 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 b7621e1615 [feature-wip](new-scan) support csv reader (#13282) add bb4414e303 [feature-wip](multi-catalog) opt

[GitHub] [doris] morningman merged pull request #13184: [feature-wip](parquet-reader) fix string test and support decimal64

2022-10-12 Thread GitBox
morningman merged PR #13184: URL: https://github.com/apache/doris/pull/13184 -- 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: [feature-wip](parquet-reader) fix string test and support decimal64 (#13184)

2022-10-12 Thread morningman
This is an automated email from the ASF dual-hosted git repository. morningman pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/doris.git The following commit(s) were added to refs/heads/master by this push: new 4fc7a048d2 [feature-wip](parquet-reader) fix

[GitHub] [doris] github-actions[bot] commented on pull request #13311: [feature](nereids) add stats min/maxValue support for Date/CHAR/VARCHAR

2022-10-12 Thread GitBox
github-actions[bot] commented on PR #13311: URL: https://github.com/apache/doris/pull/13311#issuecomment-1275819813 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] starocean999 commented on pull request #13289: [improvement](olap) cache value of has_null in ColumnNullable

2022-10-12 Thread GitBox
starocean999 commented on PR #13289: URL: https://github.com/apache/doris/pull/13289#issuecomment-1275820805 LGTM -- 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 unsubsc

[GitHub] [doris] BiteTheDDDDt opened a new pull request, #13320: [Enhancement](function) optimize decimal minus and plus

2022-10-12 Thread GitBox
BiteThet opened a new pull request, #13320: URL: https://github.com/apache/doris/pull/13320 # Proposed changes ## Problem summary Describe your changes. ## Checklist(Required) 1. Does it affect the original behavior: - [ ] Yes - [ ] No

[GitHub] [doris] DongLiang-0 opened a new pull request, #13321: Dev wdl extract url

2022-10-12 Thread GitBox
DongLiang-0 opened a new pull request, #13321: URL: https://github.com/apache/doris/pull/13321 # Proposed changes Issue Number: close #xxx ## Problem summary Describe your changes. [function](string_function) add new string function 'extract_url_parameter' ## Ch

[GitHub] [doris] DongLiang-0 closed pull request #13321: Dev wdl extract url

2022-10-12 Thread GitBox
DongLiang-0 closed pull request #13321: Dev wdl extract url URL: https://github.com/apache/doris/pull/13321 -- 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-ma

[GitHub] [doris] qi4coder opened a new issue, #13322: [Feature] S3 Load 针对CSV文件导入数据,增加忽略首行选项

2022-10-12 Thread GitBox
qi4coder opened a new issue, #13322: URL: https://github.com/apache/doris/issues/13322 ### Search before asking - [X] I had searched in the [issues](https://github.com/apache/incubator-doris/issues?q=is%3Aissue) and found no similar issues. ### Description 目前针对S3 Lo

[GitHub] [doris] DongLiang-0 opened a new pull request, #13323: Dev wdl extract url2

2022-10-12 Thread GitBox
DongLiang-0 opened a new pull request, #13323: URL: https://github.com/apache/doris/pull/13323 # Proposed changes Issue Number: close #xxx ## Problem summary Describe your changes. [function](string_function) add new string function 'extract_url_parameter' ## Ch

[GitHub] [doris] deardeng commented on a diff in pull request #13096: [DOC](storage policy) add cold and hot separation docs

2022-10-12 Thread GitBox
deardeng commented on code in PR #13096: URL: https://github.com/apache/doris/pull/13096#discussion_r993244171 ## docs/zh-CN/docs/sql-manual/sql-reference/Data-Definition-Statements/Alter/ALTER-RESOURCE.md: ## @@ -50,6 +50,22 @@ ALTER RESOURCE 'spark0' PROPERTIES ("working_dir"

[GitHub] [doris] xy720 opened a new pull request, #13324: [Bug](array-type) Fix cast null to array make be core

2022-10-12 Thread GitBox
xy720 opened a new pull request, #13324: URL: https://github.com/apache/doris/pull/13324 # Proposed changes Doris do not support explicitly cast NULL_TYPE to ANY type . So we should also forbid user from casting NULL_TYPE to ARRAY type. This commit will produce the following

[GitHub] [doris] alenfive opened a new issue, #13325: 自动类型转换无法正确应对bigint数据类型[Bug]

2022-10-12 Thread GitBox
alenfive opened a new issue, #13325: URL: https://github.com/apache/doris/issues/13325 ### Search before asking - [X] I had searched in the [issues](https://github.com/apache/incubator-doris/issues?q=is%3Aissue) and found no similar issues. ### Version 0.15.0-rc04

[GitHub] [doris] catpineapple closed pull request #12564: [fix](doc) fix upgrade doc description

2022-10-12 Thread GitBox
catpineapple closed pull request #12564: [fix](doc) fix upgrade doc description URL: https://github.com/apache/doris/pull/12564 -- 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.

[GitHub] [doris] luozenglin opened a new pull request, #13326: [Enhancement](function) optimize the `upper` and `lower` functions using the simd instruction.

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

[GitHub] [doris] wangbo opened a new pull request, #13327: [test](test)mv regression test framework from master

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

[GitHub] [doris] Gabriel39 merged pull request #13286: [Improvement](join) refine prefetch strategy

2022-10-12 Thread GitBox
Gabriel39 merged PR #13286: URL: https://github.com/apache/doris/pull/13286 -- 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.ap

[doris] branch master updated: [Improvement](join) refine prefetch strategy (#13286)

2022-10-12 Thread gabriellee
This is an automated email from the ASF dual-hosted git repository. gabriellee pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/doris.git The following commit(s) were added to refs/heads/master by this push: new dfe308f501 [Improvement](join) refine prefetc

[GitHub] [doris] yangzhg merged pull request #13298: [fix](bitmap_intersect) fix `bitmap_intersect` result error

2022-10-12 Thread GitBox
yangzhg merged PR #13298: URL: https://github.com/apache/doris/pull/13298 -- 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.apac

[GitHub] [doris] yangzhg closed issue #13297: [Bug] agg `bitmap_intersect` result error

2022-10-12 Thread GitBox
yangzhg closed issue #13297: [Bug] agg `bitmap_intersect` result error URL: https://github.com/apache/doris/issues/13297 -- 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 unsu

[doris] branch master updated (dfe308f501 -> d63a80eaba)

2022-10-12 Thread yangzhg
This is an automated email from the ASF dual-hosted git repository. yangzhg pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/doris.git from dfe308f501 [Improvement](join) refine prefetch strategy (#13286) add d63a80eaba [fix](bitmap_intersect) fix `bitm

[GitHub] [doris] starocean999 opened a new pull request, #13328: [fix](sort)the sort expr's nullability property may not be right

2022-10-12 Thread GitBox
starocean999 opened a new pull request, #13328: URL: https://github.com/apache/doris/pull/13328 # Proposed changes Issue Number: close #xxx ## Problem summary the sort exprs nullability property may not be right after subsitute using child's smap info. this pr is a botto

[GitHub] [doris] yangzhg opened a new pull request, #13329: [refactor] Unify all unit tests into one binary file (#8958)

2022-10-12 Thread GitBox
yangzhg opened a new pull request, #13329: URL: https://github.com/apache/doris/pull/13329 1. solved the previous delayed unit test file size is too large (1.7G+) and the unit test link time is too long problem problems 2. Unify all unit tests into one file to significantly reduce unit te

[GitHub] [doris] HappenLee commented on pull request #13323: [function](string_function) add new string function 'extract_url_parameter'

2022-10-12 Thread GitBox
HappenLee commented on PR #13323: URL: https://github.com/apache/doris/pull/13323#issuecomment-1276015127 Rethink the right way of the function ``` select extractURLParameter('https://localhost:3000?id=abcdefghi', 'id'); SELECT extractURLParameter('https://localhost:3000?id=abcde

[GitHub] [doris] starocean999 opened a new pull request, #13332: [fix](hash)update_hashes_with_value method should handle if input value is null

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

[GitHub] [doris] wangbo closed pull request #13327: [test](test)mv regression test framework from master

2022-10-12 Thread GitBox
wangbo closed pull request #13327: [test](test)mv regression test framework from master URL: https://github.com/apache/doris/pull/13327 -- 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

[GitHub] [doris] englefly opened a new pull request, #13333: [fix](regression) rowsDisjointWindows output is not ordered

2022-10-12 Thread GitBox
englefly opened a new pull request, #1: URL: https://github.com/apache/doris/pull/1 # Proposed changes add order for test: rowsDisjointWindows Issue Number: close #xxx ## Problem summary Describe your changes. ## Checklist(Required) 1. Does it

[GitHub] [doris] LemonLiTree commented on issue #13325: 自动类型转换无法正确应对bigint数据类型[Bug]

2022-10-12 Thread GitBox
LemonLiTree commented on issue #13325: URL: https://github.com/apache/doris/issues/13325#issuecomment-1276078415 默认是转double来做匹配的,如果精度超了就会出现结果不准确的 -- 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 t

[GitHub] [doris] nextdreamblue commented on issue #13295: [Bug] Unexpected error when run SQL with CASE-WHEN expr

2022-10-12 Thread GitBox
nextdreamblue commented on issue #13295: URL: https://github.com/apache/doris/issues/13295#issuecomment-1276134552 try this: SELECT CASE WHEN col1=1 THEN 'NULL' END FROM t2; -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub a

[GitHub] [doris] github-actions[bot] commented on pull request #13310: [regression](bloom filter) add test case for is not null

2022-10-12 Thread GitBox
github-actions[bot] commented on PR #13310: URL: https://github.com/apache/doris/pull/13310#issuecomment-1276198566 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] github-actions[bot] commented on pull request #13310: [regression](bloom filter) add test case for is not null

2022-10-12 Thread GitBox
github-actions[bot] commented on PR #13310: URL: https://github.com/apache/doris/pull/13310#issuecomment-1276198508 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] Jibing-Li opened a new pull request, #13334: [Improvement](multi-catalog)Keep db/table id unchaged after call refresh catalog.

2022-10-12 Thread GitBox
Jibing-Li opened a new pull request, #13334: URL: https://github.com/apache/doris/pull/13334 # Proposed changes Issue Number: close #xxx ## Problem summary Keep external db/table id unchanged after call refresh catalog command. ## Checklist(Required) 1. Does

[GitHub] [doris] Gabriel39 opened a new pull request, #13335: [Improvement](join) compute hash values by vectorized way

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

[GitHub] [doris] github-actions[bot] commented on pull request #13306: [Bug](bloomfilter) fix concurrency bug caused by bloom filter

2022-10-12 Thread GitBox
github-actions[bot] commented on PR #13306: URL: https://github.com/apache/doris/pull/13306#issuecomment-1276267665 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 #13306: [Bug](bloomfilter) fix concurrency bug caused by bloom filter

2022-10-12 Thread GitBox
github-actions[bot] commented on PR #13306: URL: https://github.com/apache/doris/pull/13306#issuecomment-1276267796 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] HappenLee commented on a diff in pull request #13332: [fix](hash)update_hashes_with_value method should handle if input value is null

2022-10-12 Thread GitBox
HappenLee commented on code in PR #13332: URL: https://github.com/apache/doris/pull/13332#discussion_r993556849 ## be/src/vec/columns/column_decimal.cpp: ## @@ -164,9 +164,21 @@ template void ColumnDecimal::update_hashes_with_value(uint64_t* __restrict hashes,

[GitHub] [doris] dataroaring opened a new pull request, #13336: [fix](jsonreader) teach jsonreader to release memory

2022-10-12 Thread GitBox
dataroaring opened a new pull request, #13336: URL: https://github.com/apache/doris/pull/13336 Allocator of rapidjson does not release memory, this fix use allocator with local buffer and call Clear to release memory allocated beyond local buffer. # Proposed changes Issue Numbe

[GitHub] [doris] gavinchou commented on a diff in pull request #13336: [fix](jsonreader) teach jsonreader to release memory

2022-10-12 Thread GitBox
gavinchou commented on code in PR #13336: URL: https://github.com/apache/doris/pull/13336#discussion_r993590746 ## be/src/exec/json_scanner.h: ## @@ -178,7 +178,14 @@ class JsonReader { std::vector> _parsed_jsonpaths; std::vector _parsed_json_root; -rapidjson::Do

[GitHub] [doris] dataalive commented on issue #13318: 'doris_fe' failed to start (exit status 0) -- '/var/apache-doris/fe/bin/start_fe.sh': SLF4J: Class path contains multiple SLF4J bindings.

2022-10-12 Thread GitBox
dataalive commented on issue #13318: URL: https://github.com/apache/doris/issues/13318#issuecomment-1276339399 [2022-10-12T15:28:09+0800] error : 'doris_fe' failed to start (exit status 0) -- '/var/apache-doris/fe/bin/start_fe.sh': SLF4J: Class path contains multiple SLF4J bindings.

[GitHub] [doris] gavinchou commented on a diff in pull request #13336: [fix](jsonreader) teach jsonreader to release memory

2022-10-12 Thread GitBox
gavinchou commented on code in PR #13336: URL: https://github.com/apache/doris/pull/13336#discussion_r993590746 ## be/src/exec/json_scanner.h: ## @@ -178,7 +178,14 @@ class JsonReader { std::vector> _parsed_jsonpaths; std::vector _parsed_json_root; -rapidjson::Do

[GitHub] [doris] github-actions[bot] commented on pull request #12498: [feature](restore) add restore new property 'reserve_dynamic_partition_enable'

2022-10-12 Thread GitBox
github-actions[bot] commented on PR #12498: URL: https://github.com/apache/doris/pull/12498#issuecomment-1276343353 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] jackwener opened a new pull request, #13337: [refactor[(Nereids]: refactor UT and rename

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

[GitHub] [doris] HappenLee opened a new pull request, #13338: [Opt](fun) simd the substring function and use stack buf to speed up

2022-10-12 Thread GitBox
HappenLee opened a new pull request, #13338: URL: https://github.com/apache/doris/pull/13338 # Proposed changes After do the opt of function substring, tpch Q22 before: 5.8s after : 5.4s ## Problem summary Describe your changes. ## Checklist(Required)

[GitHub] [doris] HappenLee opened a new pull request, #13339: [Opt](vec) opt runtime filter for TPCH Q22

2022-10-12 Thread GitBox
HappenLee opened a new pull request, #13339: URL: https://github.com/apache/doris/pull/13339 1. Support Right Anti Join to generate runtime filter 2. Union the always true logic of runtime filter 3. Rewrite the Q22 and Q14 of TPCH # Proposed changes After do the opt

[GitHub] [doris] github-actions[bot] commented on pull request #13320: [Enhancement](function) optimize decimal minus and plus

2022-10-12 Thread GitBox
github-actions[bot] commented on PR #13320: URL: https://github.com/apache/doris/pull/13320#issuecomment-1276487285 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 #13320: [Enhancement](function) optimize decimal minus and plus

2022-10-12 Thread GitBox
github-actions[bot] commented on PR #13320: URL: https://github.com/apache/doris/pull/13320#issuecomment-1276487343 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] gavinchou commented on a diff in pull request #13336: [fix](jsonreader) teach jsonreader to release memory

2022-10-12 Thread GitBox
gavinchou commented on code in PR #13336: URL: https://github.com/apache/doris/pull/13336#discussion_r993590746 ## be/src/exec/json_scanner.h: ## @@ -178,7 +178,14 @@ class JsonReader { std::vector> _parsed_jsonpaths; std::vector _parsed_json_root; -rapidjson::Do

[doris] branch master updated: [Enhancement](function) optimize decimal minus and plus #13320

2022-10-12 Thread yiguolei
This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/doris.git The following commit(s) were added to refs/heads/master by this push: new a77808e103 [Enhancement](function) optimize dec

[GitHub] [doris] yiguolei merged pull request #13320: [Enhancement](function) optimize decimal minus and plus

2022-10-12 Thread GitBox
yiguolei merged PR #13320: URL: https://github.com/apache/doris/pull/13320 -- 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.apa

[doris] branch master updated: [fix](regression) rowsDisjointWindows output is not ordered #13333

2022-10-12 Thread yiguolei
This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/doris.git The following commit(s) were added to refs/heads/master by this push: new 0732ccbf0f [fix](regression) rowsDisjointWindow

[GitHub] [doris] yiguolei merged pull request #13333: [fix](regression) rowsDisjointWindows output is not ordered

2022-10-12 Thread GitBox
yiguolei merged PR #1: URL: https://github.com/apache/doris/pull/1 -- 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.apa

[GitHub] [doris] morningman merged pull request #13317: [fix](test) make output of test stable

2022-10-12 Thread GitBox
morningman merged PR #13317: URL: https://github.com/apache/doris/pull/13317 -- 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: [fix](test) make output of test stable (#13317)

2022-10-12 Thread morningman
This is an automated email from the ASF dual-hosted git repository. morningman pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/doris.git The following commit(s) were added to refs/heads/master by this push: new 9b0978fad9 [fix](test) make output of test st

[GitHub] [doris] yiguolei merged pull request #13310: [regression](bloom filter) add test case for is not null

2022-10-12 Thread GitBox
yiguolei merged PR #13310: URL: https://github.com/apache/doris/pull/13310 -- 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.apa

[doris] branch master updated: [regression](bloom filter) add test case for is not null (#13310)

2022-10-12 Thread yiguolei
This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/doris.git The following commit(s) were added to refs/heads/master by this push: new f80ac34786 [regression](bloom filter) add test

[GitHub] [doris] morningman merged pull request #13305: [bugfix](compatibility) Fix a compatibility problem case by enum value changed

2022-10-12 Thread GitBox
morningman merged PR #13305: URL: https://github.com/apache/doris/pull/13305 -- 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: [bugfix](compatibility) Fix a compatibility problem case by emun value changed (#13305)

2022-10-12 Thread morningman
This is an automated email from the ASF dual-hosted git repository. morningman pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/doris.git The following commit(s) were added to refs/heads/master by this push: new a27bcbe882 [bugfix](compatibility) Fix a comp

[GitHub] [doris] yiguolei merged pull request #13306: [Bug](bloomfilter) fix concurrency bug caused by bloom filter

2022-10-12 Thread GitBox
yiguolei merged PR #13306: URL: https://github.com/apache/doris/pull/13306 -- 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.apa

[doris] branch master updated: [Bug](bloomfilter) fix concurrency bug caused by bloom filter (#13306)

2022-10-12 Thread yiguolei
This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/doris.git The following commit(s) were added to refs/heads/master by this push: new d430aec3ae [Bug](bloomfilter) fix concurrency b

[GitHub] [doris] yiguolei merged pull request #13302: [enhancement](memtracker) Print query memory usage log every second when `memory_verbose_track` is enabled

2022-10-12 Thread GitBox
yiguolei merged PR #13302: URL: https://github.com/apache/doris/pull/13302 -- 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.apa

[doris] branch master updated: [enhancement](memtracker) Print query memory usage log every second when `memory_verbose_track` is enabled (#13302)

2022-10-12 Thread yiguolei
This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/doris.git The following commit(s) were added to refs/heads/master by this push: new c494ca0ed4 [enhancement](memtracker) Print quer

[GitHub] [doris] yiguolei merged pull request #13289: [improvement](olap) cache value of has_null in ColumnNullable

2022-10-12 Thread GitBox
yiguolei merged PR #13289: URL: https://github.com/apache/doris/pull/13289 -- 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.apa

[doris] branch master updated: [improvement](olap) cache value of has_null in ColumnNullable (#13289)

2022-10-12 Thread yiguolei
This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/doris.git The following commit(s) were added to refs/heads/master by this push: new 9b590ac4cb [improvement](olap) cache value of h

[GitHub] [doris] morningman closed issue #12329: [Enhancement] doris support obs broker load

2022-10-12 Thread GitBox
morningman closed issue #12329: [Enhancement] doris support obs broker load URL: https://github.com/apache/doris/issues/12329 -- 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

[GitHub] [doris] morningman merged pull request #12781: [Enhancement](broker)Doris support obs broker load

2022-10-12 Thread GitBox
morningman merged PR #12781: URL: https://github.com/apache/doris/pull/12781 -- 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 (9b590ac4cb -> 7147c77f22)

2022-10-12 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 9b590ac4cb [improvement](olap) cache value of has_null in ColumnNullable (#13289) add 7147c77f22 [Enhancement

[GitHub] [doris] github-actions[bot] commented on pull request #12786: [fix](array-type) fix the wrong result when import array element with…

2022-10-12 Thread GitBox
github-actions[bot] commented on PR #12786: URL: https://github.com/apache/doris/pull/12786#issuecomment-1276937309 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 #12786: [fix](array-type) fix the wrong result when import array element with…

2022-10-12 Thread GitBox
github-actions[bot] commented on PR #12786: URL: https://github.com/apache/doris/pull/12786#issuecomment-1276937344 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] BiteTheDDDDt commented on a diff in pull request #13338: [Opt](fun) simd the substring function and use stack buf to speed up

2022-10-12 Thread GitBox
BiteThet commented on code in PR #13338: URL: https://github.com/apache/doris/pull/13338#discussion_r994047114 ## be/src/vec/functions/function_string.h: ## @@ -160,18 +158,23 @@ struct SubstringUtil { int size = offsets.size(); res_offsets.resize(size);

[GitHub] [doris] github-actions[bot] commented on pull request #13228: [feature](agg) support `any`,`any_value` agg functions.

2022-10-12 Thread GitBox
github-actions[bot] commented on PR #13228: URL: https://github.com/apache/doris/pull/13228#issuecomment-1276951226 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 #13228: [feature](agg) support `any`,`any_value` agg functions.

2022-10-12 Thread GitBox
github-actions[bot] commented on PR #13228: URL: https://github.com/apache/doris/pull/13228#issuecomment-1276951248 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] lide-reed commented on pull request #12498: [feature](restore) add restore new property 'reserve_dynamic_partition_enable'

2022-10-12 Thread GitBox
lide-reed commented on PR #12498: URL: https://github.com/apache/doris/pull/12498#issuecomment-1276963501 Can you create an issue for this feature where you can describe it more detail? -- This is an automated message from the Apache Git Service. To respond to the message, please log on t

[GitHub] [doris] xinyiZzz commented on pull request #13285: [improvement](memory) disable page cache and chunk allocator, optimize memory allocate size

2022-10-12 Thread GitBox
xinyiZzz commented on PR #13285: URL: https://github.com/apache/doris/pull/13285#issuecomment-1276965623 I agree, `page cache` and `chunk allocator` may hide memory issues on the code. Later we can find a time to talk about the use of the cache -- This is an automated message from

[GitHub] [doris] xinyiZzz commented on pull request #13285: [improvement](memory) disable page cache and chunk allocator, optimize memory allocate size

2022-10-12 Thread GitBox
xinyiZzz commented on PR #13285: URL: https://github.com/apache/doris/pull/13285#issuecomment-1276965810 > > Gives the performance impact of `disable page cache` and `disable chunk allocator`, and the benefits of doing so, such as increasing OOM risk because they have no gc. > > 1. C

[GitHub] [doris] zhanghengdashuaibi opened a new issue, #13341: [Feature] mysqlcdc to doris errorr transaction is not found,导致flink的算子任务一直重启,请问这个是什么问题导致的

2022-10-12 Thread GitBox
zhanghengdashuaibi opened a new issue, #13341: URL: https://github.com/apache/doris/issues/13341 ### Search before asking - [X] I had searched in the [issues](https://github.com/apache/incubator-doris/issues?q=is%3Aissue) and found no similar issues. ### Description

[GitHub] [doris] lide-reed merged pull request #12498: [feature](restore) add restore new property 'reserve_dynamic_partition_enable'

2022-10-12 Thread GitBox
lide-reed merged PR #12498: URL: https://github.com/apache/doris/pull/12498 -- 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.ap

[doris] branch master updated: [feature](restore) Add new property 'reserve_dynamic_partition_enable' to restore statement (#12498)

2022-10-12 Thread lide
This is an automated email from the ASF dual-hosted git repository. lide pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/doris.git The following commit(s) were added to refs/heads/master by this push: new e08ba8d573 [feature](restore) Add new property 're

[GitHub] [doris] github-actions[bot] commented on pull request #13216: [improve](Nereids): split otherJoinCondition with List.

2022-10-12 Thread GitBox
github-actions[bot] commented on PR #13216: URL: https://github.com/apache/doris/pull/13216#issuecomment-1276992802 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 #13216: [improve](Nereids): split otherJoinCondition with List.

2022-10-12 Thread GitBox
github-actions[bot] commented on PR #13216: URL: https://github.com/apache/doris/pull/13216#issuecomment-1276992829 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] github-actions[bot] commented on pull request #13293: [improve](Nereids): avoid duplicated stats derive.

2022-10-12 Thread GitBox
github-actions[bot] commented on PR #13293: URL: https://github.com/apache/doris/pull/13293#issuecomment-1276992913 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

  1   2   >