[GitHub] [doris] nextdreamblue commented on a diff in pull request #10464: [Bug] fix create table like when having sequence column

2022-06-30 Thread GitBox
nextdreamblue commented on code in PR #10464: URL: https://github.com/apache/doris/pull/10464#discussion_r910677895 ## regression-test/data/data_model/unique/test_unique_table_like.out: ## @@ -5,11 +5,13 @@ int_value INT Yes false \N REPLACE char_value CH

[GitHub] [doris] morrySnow commented on issue #10489: [Bug] Unsupported correlated subquery: SELECT

2022-06-30 Thread GitBox
morrySnow commented on issue #10489: URL: https://github.com/apache/doris/issues/10489#issuecomment-1170858543 This issue is caused by using incorrect scope when resolve names under union. u can get around this problem by naming each table by a union alias temporarily. I will fix it later.

[GitHub] [doris] k-i-d-d opened a new issue, #10513: [Bug] Deadlock when cancel query in tcmalloc hook during add_block

2022-06-30 Thread GitBox
k-i-d-d opened a new issue, #10513: URL: https://github.com/apache/doris/issues/10513 ### 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 d9f2da8cf0cfc6

[GitHub] [doris] k-i-d-d opened a new pull request, #10514: [fix] (mem tracker) Fix cancel query deadlock during add_block, and query pool tracker error cancel query

2022-06-30 Thread GitBox
k-i-d-d opened a new pull request, #10514: URL: https://github.com/apache/doris/pull/10514 # Proposed changes Issue Number: close #10513 ## Problem Summary: 1. Avoid deadlock when calling SenderQueue::cancel() in tcmalloc hook. 2. The limit of the query pool mem tracke

[GitHub] [doris] morrySnow commented on issue #10489: [Bug] Unsupported correlated subquery: SELECT

2022-06-30 Thread GitBox
morrySnow commented on issue #10489: URL: https://github.com/apache/doris/issues/10489#issuecomment-1170894776 bug was introduced by [#7357](https://github.com/apache/doris/pull/7357). disable predicate infer by `set enable_infer_predicate = false;` should work. -- This is an automated me

[GitHub] [doris] yinzhijian commented on a diff in pull request #10415: [feature](nereids) Support analyze for test SSB

2022-06-30 Thread GitBox
yinzhijian commented on code in PR #10415: URL: https://github.com/apache/doris/pull/10415#discussion_r910724625 ## fe/fe-core/src/main/java/org/apache/doris/nereids/trees/expressions/ExpressionConverter.java: ## @@ -134,16 +130,16 @@ public Expr visitLiteral(Literal literal, P

[GitHub] [doris] EnglishVillage commented on issue #10495: flink Connect to Doris BE{host='172.16.50.4', port=9060}failed

2022-06-30 Thread GitBox
EnglishVillage commented on issue #10495: URL: https://github.com/apache/doris/issues/10495#issuecomment-1170900699 > > > Whether your flink service can connect to be node? > > > > > > yes, The ip of the external network can access be, but the ip of the internal network cannot acc

[GitHub] [doris] qidaye commented on a diff in pull request #9895: [Enhancement](DOE) Step1: Fe generates the DSL and is used to explain

2022-06-30 Thread GitBox
qidaye commented on code in PR #9895: URL: https://github.com/apache/doris/pull/9895#discussion_r910727643 ## fe/fe-core/src/main/java/org/apache/doris/external/elasticsearch/QueryBuilders.java: ## @@ -172,19 +183,65 @@ abstract static class QueryBuilder { * @throws IO

[GitHub] [doris] sumtumn commented on pull request #10476: [fix] fix api of table schema in http v2

2022-06-30 Thread GitBox
sumtumn commented on PR #10476: URL: https://github.com/apache/doris/pull/10476#issuecomment-1170915454 > It should be consistent, but does the v2 version already have users using it? changing it maybe makes it unusable for them? I think this api is not usable before this fix, because

[GitHub] [doris] github-actions[bot] commented on pull request #10415: [feature](nereids) Support analyze for test SSB

2022-06-30 Thread GitBox
github-actions[bot] commented on PR #10415: URL: https://github.com/apache/doris/pull/10415#issuecomment-1170921377 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] EmmyMiao87 merged pull request #10415: [feature](nereids) Support analyze for test SSB

2022-06-30 Thread GitBox
EmmyMiao87 merged PR #10415: URL: https://github.com/apache/doris/pull/10415 -- 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

[GitHub] [doris] yinzhijian commented on a diff in pull request #10415: [feature](nereids) Support analyze for test SSB

2022-06-30 Thread GitBox
yinzhijian commented on code in PR #10415: URL: https://github.com/apache/doris/pull/10415#discussion_r910752345 ## fe/fe-core/src/main/java/org/apache/doris/nereids/trees/expressions/ExpressionConverter.java: ## @@ -44,19 +45,14 @@ * Used to convert expression of new optimize

[GitHub] [doris] yinzhijian commented on a diff in pull request #10415: [feature](nereids) Support analyze for test SSB

2022-06-30 Thread GitBox
yinzhijian commented on code in PR #10415: URL: https://github.com/apache/doris/pull/10415#discussion_r910757341 ## fe/fe-core/src/main/java/org/apache/doris/nereids/trees/expressions/ExpressionConverter.java: ## @@ -44,19 +45,14 @@ * Used to convert expression of new optimize

[GitHub] [doris] yiguolei commented on a diff in pull request #10506: [improvement]Add reading by rowids to speed up lazy materialization

2022-06-30 Thread GitBox
yiguolei commented on code in PR #10506: URL: https://github.com/apache/doris/pull/10506#discussion_r910758161 ## be/src/olap/rowset/segment_v2/rle_page.h: ## @@ -254,6 +254,38 @@ class RlePageDecoder : public PageDecoder { return Status::OK(); }; +Status rea

[GitHub] [doris] compasses commented on issue #1389: Support bloom filter in new format segment

2022-06-30 Thread GitBox
compasses commented on issue #1389: URL: https://github.com/apache/doris/issues/1389#issuecomment-1170944075 @kangpinghuang Hi, maybe it's long time ago, I dig the bloom filter code recently, and there are some optimize direction todo. Here I just curious during write, why we just calcula

[GitHub] [doris] yqzdy1207 commented on issue #10383: [Bug] Failed to obtain fragment data

2022-06-30 Thread GitBox
yqzdy1207 commented on issue #10383: URL: https://github.com/apache/doris/issues/10383#issuecomment-1170957286 目前我也遇到了这个问题,Doris 1.0 ES 8.2.3 ERROR 1105 (HY000): errCode = 2, detailMessage = fetch es table [test] metadata failure: index[test] not found -- This is an automated mess

[GitHub] [doris] stalary commented on issue #10383: [Bug] Failed to obtain fragment data

2022-06-30 Thread GitBox
stalary commented on issue #10383: URL: https://github.com/apache/doris/issues/10383#issuecomment-1170959092 > 目前我也遇到了这个问题,Doris 1.0 ES 8.2.3 > > ERROR 1105 (HY000): errCode = 2, detailMessage = fetch es table [test] metadata failure: index[test] not found 1.1 has fixed this is

[GitHub] [doris] qidaye commented on a diff in pull request #9583: [Feature] Support es external table not assign schema

2022-06-30 Thread GitBox
qidaye commented on code in PR #9583: URL: https://github.com/apache/doris/pull/9583#discussion_r910788339 ## fe/fe-core/src/main/java/org/apache/doris/external/elasticsearch/EsUtil.java: ## @@ -87,12 +93,129 @@ public static JSONObject getJsonObject(JSONObject jsonObject, Stri

[GitHub] [doris] stalary commented on a diff in pull request #9583: [Feature] Support es external table not assign schema

2022-06-30 Thread GitBox
stalary commented on code in PR #9583: URL: https://github.com/apache/doris/pull/9583#discussion_r910794922 ## fe/fe-core/src/main/java/org/apache/doris/external/elasticsearch/EsUtil.java: ## @@ -87,12 +93,129 @@ public static JSONObject getJsonObject(JSONObject jsonObject, Str

[GitHub] [doris] k-i-d-d opened a new issue, #10516: [Bug] BE hangs at startup, stuck in tcmalloc hook call `ExecEnv::GetInstance()`

2022-06-30 Thread GitBox
k-i-d-d opened a new issue, #10516: URL: https://github.com/apache/doris/issues/10516 ### 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 77b1565b96e916

[GitHub] [doris] k-i-d-d opened a new pull request, #10517: [fix] (mem tracker) Fix BE hangs at startup, stuck in tcmalloc hook call ExecEnv::GetInstance()

2022-06-30 Thread GitBox
k-i-d-d opened a new pull request, #10517: URL: https://github.com/apache/doris/pull/10517 # Proposed changes Issue Number: close #10516 ## Problem Summary: 1. Added flag `exec_env_existed` to indicate whether ExecEnv Instance is created. 2. Remove DCHECK in `ThreadMe

[GitHub] [doris] BiteTheDDDDt opened a new pull request, #10518: [Chore][Vectorized] remove unused collator

2022-06-30 Thread GitBox
BiteThet opened a new pull request, #10518: URL: https://github.com/apache/doris/pull/10518 # Proposed changes Issue Number: close #xxx ## Problem Summary: Describe the overview of changes. ## Checklist(Required) 1. Does it affect the original behavior:

[GitHub] [doris] morrySnow opened a new pull request, #10519: [fix](planner)infer predicate generate infered predicate using wrong information from another scope

2022-06-30 Thread GitBox
morrySnow opened a new pull request, #10519: URL: https://github.com/apache/doris/pull/10519 # Proposed changes This PR fix a bug in predicate inference. The original predicate inference compare two slot without SlotId. This will arise an error when a query has SetOperand and m

[GitHub] [doris] yiguolei opened a new pull request, #10520: [refactor] Remove mini load

2022-06-30 Thread GitBox
yiguolei opened a new pull request, #10520: URL: https://github.com/apache/doris/pull/10520 # Proposed changes Issue Number: close #xxx ## Problem Summary: Mini load is deprecated for long time. Remove miniload related code in this PR. ## Checklist(Required)

[GitHub] [doris] zhengshiJ commented on a diff in pull request #10481: [feature](nereids) Adjust plan execution flow and fix physical bugs

2022-06-30 Thread GitBox
zhengshiJ commented on code in PR #10481: URL: https://github.com/apache/doris/pull/10481#discussion_r910828405 ## fe/fe-core/src/main/java/org/apache/doris/nereids/NereidsPlanner.java: ## @@ -94,16 +97,39 @@ public PhysicalPlan plan(LogicalPlan plan, PhysicalProperties outputP

[GitHub] [doris] github-actions[bot] commented on pull request #10514: [fix] (mem tracker) Fix cancel query deadlock during add_block, and query pool tracker error cancel query

2022-06-30 Thread GitBox
github-actions[bot] commented on PR #10514: URL: https://github.com/apache/doris/pull/10514#issuecomment-1171005020 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 #10514: [fix] (mem tracker) Fix cancel query deadlock during add_block, and query pool tracker error cancel query

2022-06-30 Thread GitBox
github-actions[bot] commented on PR #10514: URL: https://github.com/apache/doris/pull/10514#issuecomment-1171005070 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] AshinGau opened a new pull request, #10521: [feature-wip](multi-catalog) end to end to support multi-catalog

2022-06-30 Thread GitBox
AshinGau opened a new pull request, #10521: URL: https://github.com/apache/doris/pull/10521 ## What is changed Get through the previous pull requests that support multi-catalog, and end to end to achieve multi-catalog. ## Usage ### Add catalog ``` MySQL [tpch1]> create cat

[GitHub] [doris] morrySnow commented on a diff in pull request #10499: [Feature](neireids) Add support of ProjectNode in PlanTranslator

2022-06-30 Thread GitBox
morrySnow commented on code in PR #10499: URL: https://github.com/apache/doris/pull/10499#discussion_r910830149 ## fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/translator/PhysicalPlanTranslator.java: ## @@ -94,17 +100,20 @@ public PlanFragment visitPhysicalAggre

[GitHub] [doris] cambyzju opened a new pull request, #10522: [fix] block dump_one_line assert error

2022-06-30 Thread GitBox
cambyzju opened a new pull request, #10522: URL: https://github.com/apache/doris/pull/10522 # Proposed changes Issue Number: close #xxx ## Problem Summary: While debug, we need to dump data in block, but it can not dump all columns. Because the assert inside function B

[doris] 02/13: [fix](random-distribution) Make aggregate keys table with replace type columns and unique keys table can only have hash distribution to make data computing correctly (#10414)

2022-06-30 Thread morningman
This is an automated email from the ASF dual-hosted git repository. morningman pushed a commit to branch dev-1.0.1 in repository https://gitbox.apache.org/repos/asf/doris.git commit d51a8d2131131cb4ff93157fa3b58efd87f17cc9 Author: caiconghui <55968745+caicong...@users.noreply.github.com> AuthorDa

[doris] 10/13: [hotfix](dev-1.0.1) fix send fragment stuck bug

2022-06-30 Thread morningman
This is an automated email from the ASF dual-hosted git repository. morningman pushed a commit to branch dev-1.0.1 in repository https://gitbox.apache.org/repos/asf/doris.git commit 6f649184be1b95b67d54c685ae12355d24bc6f9b Author: morningman AuthorDate: Wed Jun 29 20:01:38 2022 +0800 [hotfi

[doris] branch dev-1.0.1 updated (6d98f6a43e -> 3948ef23b5)

2022-06-30 Thread morningman
This is an automated email from the ASF dual-hosted git repository. morningman pushed a change to branch dev-1.0.1 in repository https://gitbox.apache.org/repos/asf/doris.git discard 6d98f6a43e fix bug (#10509) omit 589b44eddf [hotfix](dev-1.0.1) fix send fragment stuck bug omit 73a7545

[doris] 04/13: [hotfix] add rm -f to avoid build failed

2022-06-30 Thread morningman
This is an automated email from the ASF dual-hosted git repository. morningman pushed a commit to branch dev-1.0.1 in repository https://gitbox.apache.org/repos/asf/doris.git commit 1b03e68d1103877240af4188e12edde64fa33a5a Author: morningman AuthorDate: Mon Jun 27 09:41:48 2022 +0800 [hotfi

[doris] 07/13: [hotfix](dev-1.0.1) remove incubating

2022-06-30 Thread morningman
This is an automated email from the ASF dual-hosted git repository. morningman pushed a commit to branch dev-1.0.1 in repository https://gitbox.apache.org/repos/asf/doris.git commit 40a5673d4c62e1e34dce1bfb84d6ed3078efd161 Author: morningman AuthorDate: Wed Jun 29 12:26:00 2022 +0800 [hotfi

[doris] 01/13: [fix](doe) fix doe on es v8 (#10391)

2022-06-30 Thread morningman
This is an automated email from the ASF dual-hosted git repository. morningman pushed a commit to branch dev-1.0.1 in repository https://gitbox.apache.org/repos/asf/doris.git commit ef176deafa31ba55b89a962f0083ccd408fd65c2 Author: Stalary AuthorDate: Sun Jun 26 09:51:29 2022 +0800 [fix](doe

[doris] 09/13: [hotfix](dev-1.0.1) modify stop_be and disable meta_tool build by default

2022-06-30 Thread morningman
This is an automated email from the ASF dual-hosted git repository. morningman pushed a commit to branch dev-1.0.1 in repository https://gitbox.apache.org/repos/asf/doris.git commit 7caa1eb6abc342b1ee6caddffdc7bf8bd72af7d2 Author: morningman AuthorDate: Wed Jun 29 15:00:30 2022 +0800 [hotfi

[doris] 06/13: [hotfix] change hive, broker, iceberg table query to non-vec engine

2022-06-30 Thread morningman
This is an automated email from the ASF dual-hosted git repository. morningman pushed a commit to branch dev-1.0.1 in repository https://gitbox.apache.org/repos/asf/doris.git commit 36bbe02f96cf2dd6d8370b5ff7cc5cee0a924c5d Author: morningman AuthorDate: Fri Jun 24 13:03:04 2022 +0800 [hotfi

[doris] 13/13: [bugfix]fix bitmap function bug (#10477)

2022-06-30 Thread morningman
This is an automated email from the ASF dual-hosted git repository. morningman pushed a commit to branch dev-1.0.1 in repository https://gitbox.apache.org/repos/asf/doris.git commit 3948ef23b5d7336f3998d38e911127dce80ad19b Author: starocean999 <40539150+starocean...@users.noreply.github.com> Auth

[doris] 11/13: [hotfix](dev-1.0.1) fix inline view bug for vec engine

2022-06-30 Thread morningman
This is an automated email from the ASF dual-hosted git repository. morningman pushed a commit to branch dev-1.0.1 in repository https://gitbox.apache.org/repos/asf/doris.git commit 108085330a7f0ff8083f501e53e12ae92d74905b Author: EmmyMiao87 <522274...@qq.com> AuthorDate: Fri Jun 24 12:29:02 2022

[doris] 12/13: [hotfix](dev-1.0.1) BE prevent core by nullable not suit in hash join node

2022-06-30 Thread morningman
This is an automated email from the ASF dual-hosted git repository. morningman pushed a commit to branch dev-1.0.1 in repository https://gitbox.apache.org/repos/asf/doris.git commit 9177ccd30af9321a5ade5845fe7c87c71c9a7ab9 Author: lihaopeng AuthorDate: Sun Jun 26 23:55:21 2022 +0800 [hotfix

[doris] 03/13: [fix](backup) fix mkdir failed (#10422) (#10423)

2022-06-30 Thread morningman
This is an automated email from the ASF dual-hosted git repository. morningman pushed a commit to branch dev-1.0.1 in repository https://gitbox.apache.org/repos/asf/doris.git commit ade515225c42b62f81a837507a3f4448d205fcea Author: HB <137497...@qq.com> AuthorDate: Sun Jun 26 09:55:48 2022 +0800

[doris] 08/13: [log] add more error info for hdfs reader writer (#10475)

2022-06-30 Thread morningman
This is an automated email from the ASF dual-hosted git repository. morningman pushed a commit to branch dev-1.0.1 in repository https://gitbox.apache.org/repos/asf/doris.git commit 926138c6a031677e44211e0f707ad404a6ff06d8 Author: Mingyu Chen AuthorDate: Wed Jun 29 12:02:27 2022 +0800 [log]

[doris] 05/13: [improvement]change shard num of page cache to 1024 to reduce lock contention (#10449)

2022-06-30 Thread morningman
This is an automated email from the ASF dual-hosted git repository. morningman pushed a commit to branch dev-1.0.1 in repository https://gitbox.apache.org/repos/asf/doris.git commit 4ff62b32b43873889ec92a92dbfee05a818b0c71 Author: Yongqiang YANG <98214048+dataroar...@users.noreply.github.com> Aut

[GitHub] [doris] EmmyMiao87 commented on a diff in pull request #10499: [Feature](neireids) Add support of ProjectNode in PlanTranslator

2022-06-30 Thread GitBox
EmmyMiao87 commented on code in PR #10499: URL: https://github.com/apache/doris/pull/10499#discussion_r910847024 ## fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/translator/PhysicalPlanTranslator.java: ## @@ -138,8 +147,13 @@ public PlanFragment visitPhysicalOlap

[GitHub] [doris] wangbo commented on a diff in pull request #10506: [improvement]Add reading by rowids to speed up lazy materialization

2022-06-30 Thread GitBox
wangbo commented on code in PR #10506: URL: https://github.com/apache/doris/pull/10506#discussion_r910854608 ## be/src/olap/rowset/segment_v2/bitshuffle_page.h: ## @@ -408,6 +408,32 @@ class BitShufflePageDecoder : public PageDecoder { return Status::OK(); }; +

[GitHub] [doris] github-actions[bot] commented on pull request #10519: [fix](planner)infer predicate generate infered predicate using wrong information from another scope

2022-06-30 Thread GitBox
github-actions[bot] commented on PR #10519: URL: https://github.com/apache/doris/pull/10519#issuecomment-1171034379 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 opened a new pull request, #10523: [feature-wip](multi-catalog) Modify the persist method about data source

2022-06-30 Thread GitBox
morningman opened a new pull request, #10523: URL: https://github.com/apache/doris/pull/10523 # Proposed changes Issue Number: close #xxx ## Problem Summary: This CL mainly changes: 1. Add ID for data source 2. Modify the persist info of create/drop/alter catalog op

[GitHub] [doris] BiteTheDDDDt opened a new issue, #10524: [Bug] core dump on is_column_const

2022-06-30 Thread GitBox
BiteThet opened a new issue, #10524: URL: https://github.com/apache/doris/issues/10524 ### 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 master

[GitHub] [doris] github-actions[bot] commented on pull request #10520: [refactor](load) Remove mini load

2022-06-30 Thread GitBox
github-actions[bot] commented on PR #10520: URL: https://github.com/apache/doris/pull/10520#issuecomment-1171062828 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 #10520: [refactor](load) Remove mini load

2022-06-30 Thread GitBox
github-actions[bot] commented on PR #10520: URL: https://github.com/apache/doris/pull/10520#issuecomment-1171062850 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] wangbo commented on a diff in pull request #10506: [improvement]Add reading by rowids to speed up lazy materialization

2022-06-30 Thread GitBox
wangbo commented on code in PR #10506: URL: https://github.com/apache/doris/pull/10506#discussion_r910893618 ## be/src/olap/rowset/segment_v2/segment_iterator.cpp: ## @@ -699,28 +699,12 @@ void SegmentIterator::_vec_init_lazy_materialization() { // Step 2: check non-predi

[GitHub] [doris] BiteTheDDDDt opened a new pull request, #10525: [Bug][Vectorized] fix timestamp(datetime) not regist right

2022-06-30 Thread GitBox
BiteThet opened a new pull request, #10525: URL: https://github.com/apache/doris/pull/10525 # Proposed changes Issue Number: close #10524 ## Problem Summary: Describe the overview of changes. ## Checklist(Required) 1. Does it affect the original behavior

[GitHub] [doris] jackwener opened a new pull request, #10526: [style](*): keep line break.

2022-06-30 Thread GitBox
jackwener opened a new pull request, #10526: URL: https://github.com/apache/doris/pull/10526 # Proposed changes Issue Number: close #xxx ## Problem Summary: Keep line break for IDEA-style. ## Checklist(Required) 1. Does it affect the original behavior: No

[GitHub] [doris] aihai opened a new issue, #10527: [Doc]Change the download url for the binary package

2022-06-30 Thread GitBox
aihai opened a new issue, #10527: URL: https://github.com/apache/doris/issues/10527 ### 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 77b1565b96e916cb

[GitHub] [doris] aihai opened a new pull request, #10528: [Doc]Change the download url for the binary package #10527

2022-06-30 Thread GitBox
aihai opened a new pull request, #10528: URL: https://github.com/apache/doris/pull/10528 # Proposed changes Issue Number: close #10527 ## Problem Summary: Describe the overview of changes. ## Checklist(Required) 1. Does it affect the original behavior: (Yes

[GitHub] [doris] liaoxin01 opened a new pull request, #10529: [feature-wip](unique-key-merge-on-write) add primary key index

2022-06-30 Thread GitBox
liaoxin01 opened a new pull request, #10529: URL: https://github.com/apache/doris/pull/10529 # Proposed changes See the DISP-18:https://cwiki.apache.org/confluence/display/DORIS/DSIP-018%3A+Support+Merge-On-Write+implementation+for+UNIQUE+KEY+data+model This patch is for step 1.1 i

[GitHub] [doris] morningman merged pull request #10481: [feature](nereids) Adjust plan execution flow and fix physical bugs

2022-06-30 Thread GitBox
morningman merged PR #10481: URL: https://github.com/apache/doris/pull/10481 -- 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](nereids) Adjust plan execution flow and fix physical bugs (#10481)

2022-06-30 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 aae619ef2c [feature-wip](nereids) Adjust plan

[GitHub] [doris] javaerjiang commented on issue #6100: ERROR 2013 (HY000): Lost connection to MySQL server at 'reading initial communication packet', system error: 0

2022-06-30 Thread GitBox
javaerjiang commented on issue #6100: URL: https://github.com/apache/doris/issues/6100#issuecomment-1171141179 > You must make sure to use the same JDK Version to build FE and run the FE. I met this problem and solved it in your way. Thank you very much. -- This is an automated mess

[GitHub] [doris] github-actions[bot] commented on pull request #10347: [style](*): fix declarationOrder error by rearrange code

2022-06-30 Thread GitBox
github-actions[bot] commented on PR #10347: URL: https://github.com/apache/doris/pull/10347#issuecomment-1171144801 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] yinzhijian opened a new pull request, #10530: [fix](nereids) expr.accept(visitor) should be called instead of visitor.visit(expr)

2022-06-30 Thread GitBox
yinzhijian opened a new pull request, #10530: URL: https://github.com/apache/doris/pull/10530 # Proposed changes Issue Number: close #xxx ## Problem Summary: 1. because visitor.visit is the default method and not the actual handler, expr.accept(visitor) should be called

[GitHub] [doris] github-actions[bot] commented on pull request #10525: [Bug][Vectorized] fix timestamp(datetime) not regist right

2022-06-30 Thread GitBox
github-actions[bot] commented on PR #10525: URL: https://github.com/apache/doris/pull/10525#issuecomment-1171158378 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] EmmyMiao87 commented on a diff in pull request #10462: [Enhancement](Nereids) push down predicate through join

2022-06-30 Thread GitBox
EmmyMiao87 commented on code in PR #10462: URL: https://github.com/apache/doris/pull/10462#discussion_r910968327 ## fe/fe-core/src/main/java/org/apache/doris/nereids/rules/rewrite/logical/PushPredicateThroughJoin.java: ## @@ -0,0 +1,150 @@ +// Licensed to the Apache Software Fou

[GitHub] [doris] EmmyMiao87 commented on a diff in pull request #10462: [Enhancement](Nereids) push down predicate through join

2022-06-30 Thread GitBox
EmmyMiao87 commented on code in PR #10462: URL: https://github.com/apache/doris/pull/10462#discussion_r910968848 ## fe/fe-core/src/main/java/org/apache/doris/nereids/rules/rewrite/logical/PushPredicateThroughJoin.java: ## @@ -0,0 +1,150 @@ +// Licensed to the Apache Software Fou

[GitHub] [doris] zhannngchen commented on a diff in pull request #10529: [feature-wip](unique-key-merge-on-write) add primary key index

2022-06-30 Thread GitBox
zhannngchen commented on code in PR #10529: URL: https://github.com/apache/doris/pull/10529#discussion_r910970255 ## be/src/olap/primary_key_index.h: ## @@ -0,0 +1,80 @@ +// Licensed to the Apache Software Foundation (ASF) under one +// or more contributor license agreements. S

[GitHub] [doris] github-actions[bot] commented on pull request #10529: [feature-wip](unique-key-merge-on-write) add primary key index

2022-06-30 Thread GitBox
github-actions[bot] commented on PR #10529: URL: https://github.com/apache/doris/pull/10529#issuecomment-1171167201 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 #10501: [fix](Insert) fix 5 concurrent "insert...select..." OOM

2022-06-30 Thread GitBox
github-actions[bot] commented on PR #10501: URL: https://github.com/apache/doris/pull/10501#issuecomment-1171172567 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 #10501: [fix](Insert) fix 5 concurrent "insert...select..." OOM

2022-06-30 Thread GitBox
github-actions[bot] commented on PR #10501: URL: https://github.com/apache/doris/pull/10501#issuecomment-1171172592 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] morrySnow opened a new pull request, #10531: [fix](Nereids) fix some bugs before plantranslator

2022-06-30 Thread GitBox
morrySnow opened a new pull request, #10531: URL: https://github.com/apache/doris/pull/10531 # Proposed changes fix below bugs: - StmtExecutor could not call NereidsPlanner#plan correctly - JobBatch push List into List - implementation rule set not include all implementation r

[GitHub] [doris] yiguolei closed issue #10505: [Enhancement] Reduce times of seeking in lazy materialization read

2022-06-30 Thread GitBox
yiguolei closed issue #10505: [Enhancement] Reduce times of seeking in lazy materialization read URL: https://github.com/apache/doris/issues/10505 -- 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] yiguolei merged pull request #10506: [improvement]Add reading by rowids to speed up lazy materialization

2022-06-30 Thread GitBox
yiguolei merged PR #10506: URL: https://github.com/apache/doris/pull/10506 -- 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]Add reading by rowids to speed up lazy materialization (#10506)

2022-06-30 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 18ad8ebfbb [improvement]Add reading by rowids t

[GitHub] [doris] Kikyou1997 commented on a diff in pull request #10499: [Feature](neireids) Add support of ProjectNode in PlanTranslator

2022-06-30 Thread GitBox
Kikyou1997 commented on code in PR #10499: URL: https://github.com/apache/doris/pull/10499#discussion_r911002150 ## fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/translator/PhysicalPlanTranslator.java: ## @@ -138,8 +147,13 @@ public PlanFragment visitPhysicalOlap

[GitHub] [doris] github-actions[bot] commented on pull request #10522: [fix] block dump_one_line assert error

2022-06-30 Thread GitBox
github-actions[bot] commented on PR #10522: URL: https://github.com/apache/doris/pull/10522#issuecomment-1171195277 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 #10522: [fix] block dump_one_line assert error

2022-06-30 Thread GitBox
github-actions[bot] commented on PR #10522: URL: https://github.com/apache/doris/pull/10522#issuecomment-1171195316 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] Kikyou1997 commented on a diff in pull request #10499: [Feature](neireids) Add support of ProjectNode in PlanTranslator

2022-06-30 Thread GitBox
Kikyou1997 commented on code in PR #10499: URL: https://github.com/apache/doris/pull/10499#discussion_r911009838 ## fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/translator/PhysicalPlanTranslator.java: ## @@ -138,8 +147,13 @@ public PlanFragment visitPhysicalOlap

[GitHub] [doris] whutpencil opened a new issue, #10532: [Bug] what does doris_be_memory_allocated_bytes mean

2022-06-30 Thread GitBox
whutpencil opened a new issue, #10532: URL: https://github.com/apache/doris/issues/10532 ### 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-rc04

[GitHub] [doris] 924060929 commented on a diff in pull request #10499: [Feature](neireids) Add support of ProjectNode in PlanTranslator

2022-06-30 Thread GitBox
924060929 commented on code in PR #10499: URL: https://github.com/apache/doris/pull/10499#discussion_r911057735 ## fe/fe-core/src/main/java/org/apache/doris/nereids/trees/expressions/FindFunction.java: ## @@ -0,0 +1,55 @@ +// Licensed to the Apache Software Foundation (ASF) unde

[GitHub] [doris] 924060929 commented on a diff in pull request #10499: [Feature](neireids) Add support of ProjectNode in PlanTranslator

2022-06-30 Thread GitBox
924060929 commented on code in PR #10499: URL: https://github.com/apache/doris/pull/10499#discussion_r911057735 ## fe/fe-core/src/main/java/org/apache/doris/nereids/trees/expressions/FindFunction.java: ## @@ -0,0 +1,55 @@ +// Licensed to the Apache Software Foundation (ASF) unde

[GitHub] [doris] luozenglin opened a new pull request, #10533: [feature][tracing] Support query tracing to improve doris observabil…

2022-06-30 Thread GitBox
luozenglin opened a new pull request, #10533: URL: https://github.com/apache/doris/pull/10533 …ity by introducing OpenTelemetry. The collection of query traces is implemented in fe and be, and the spans are exported to zipkin. # Proposed changes Issue Number: close #xxx

[GitHub] [doris] spaces-X commented on a diff in pull request #10084: [feature-wip](vectorized) Support block aggregate in scanner

2022-06-30 Thread GitBox
spaces-X commented on code in PR #10084: URL: https://github.com/apache/doris/pull/10084#discussion_r911079204 ## be/src/vec/olap/block_reader.cpp: ## @@ -154,6 +177,49 @@ Status BlockReader::init(const ReaderParams& read_params) { return Status::OK(); } +Status BlockRea

[GitHub] [doris] morningman commented on a diff in pull request #10521: [feature-wip](multi-catalog) end to end to support multi-catalog

2022-06-30 Thread GitBox
morningman commented on code in PR #10521: URL: https://github.com/apache/doris/pull/10521#discussion_r910840777 ## fe/fe-core/src/main/java/org/apache/doris/qe/ShowExecutor.java: ## @@ -647,7 +650,13 @@ private void handleShowPartitionId() throws AnalysisException { priva

[GitHub] [doris-flink-connector] JNSimba merged pull request #41: FIX: fix wrap null

2022-06-30 Thread GitBox
JNSimba merged PR #41: URL: https://github.com/apache/doris-flink-connector/pull/41 -- 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-flink-connector] branch master updated: FIX: fix wrap null (#41)

2022-06-30 Thread diwu
This is an automated email from the ASF dual-hosted git repository. diwu pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/doris-flink-connector.git The following commit(s) were added to refs/heads/master by this push: new ab3bf15 FIX: fix wrap null (#41) a

[GitHub] [doris-flink-connector] JNSimba merged pull request #34: add 2pc config

2022-06-30 Thread GitBox
JNSimba merged PR #34: URL: https://github.com/apache/doris-flink-connector/pull/34 -- 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-flink-connector] branch master updated: [optimization] add disable 2pc config (#34)

2022-06-30 Thread diwu
This is an automated email from the ASF dual-hosted git repository. diwu pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/doris-flink-connector.git The following commit(s) were added to refs/heads/master by this push: new 81952c0 [optimization] add disable

[GitHub] [doris] Kikyou1997 commented on a diff in pull request #10499: [Feature](neireids) Add support of ProjectNode in PlanTranslator

2022-06-30 Thread GitBox
Kikyou1997 commented on code in PR #10499: URL: https://github.com/apache/doris/pull/10499#discussion_r911146142 ## fe/fe-core/src/main/java/org/apache/doris/nereids/trees/expressions/FindFunction.java: ## @@ -0,0 +1,55 @@ +// Licensed to the Apache Software Foundation (ASF) und

[GitHub] [doris] Kikyou1997 commented on a diff in pull request #10499: [Feature](neireids) Add support of ProjectNode in PlanTranslator

2022-06-30 Thread GitBox
Kikyou1997 commented on code in PR #10499: URL: https://github.com/apache/doris/pull/10499#discussion_r911146736 ## fe/fe-core/src/main/java/org/apache/doris/nereids/trees/expressions/FindFunction.java: ## @@ -0,0 +1,55 @@ +// Licensed to the Apache Software Foundation (ASF) und

[GitHub] [doris] yiguolei merged pull request #10520: [refactor](load) Remove mini load

2022-06-30 Thread GitBox
yiguolei merged PR #10520: URL: https://github.com/apache/doris/pull/10520 -- 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: [refactor](load) Remove mini load (#10520)

2022-06-30 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 aab7dc956f [refactor](load) Remove mini load (#

[GitHub] [doris] englefly opened a new pull request, #10534: [hotfix] abort load task if pending data exceed limit in table sink

2022-06-30 Thread GitBox
englefly opened a new pull request, #10534: URL: https://github.com/apache/doris/pull/10534 # Proposed changes abort load task if pending data exceed limit (500M) in table sink Issue Number: close #xxx ## Problem Summary: Describe the overview of changes. ## Che

[GitHub] [doris] morningman commented on a diff in pull request #10512: [feature] (vectorization)parquet push down support

2022-06-30 Thread GitBox
morningman commented on code in PR #10512: URL: https://github.com/apache/doris/pull/10512#discussion_r911199096 ## be/src/exec/arrow/parquet_reader.cpp: ## @@ -118,6 +126,7 @@ Status ParquetReaderWrap::init_reader(const std::vector& tuple_ } void ParquetReaderWrap::close()

[GitHub] [doris] wsjz commented on pull request #10512: [feature] (vectorization)parquet push down support

2022-06-30 Thread GitBox
wsjz commented on PR #10512: URL: https://github.com/apache/doris/pull/10512#issuecomment-1171432393 这是来自QQ邮箱的假期自动回复邮件。 好,我最近正在休假中   您,无法亲自回复您的邮件。我将在假期结束后,尽快给您回复。 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub an

[GitHub] [doris] yiguolei closed issue #10524: [Bug] core dump on is_column_const

2022-06-30 Thread GitBox
yiguolei closed issue #10524: [Bug] core dump on is_column_const URL: https://github.com/apache/doris/issues/10524 -- 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 unsubscrib

[GitHub] [doris] yiguolei merged pull request #10525: [Bug][Vectorized] fix timestamp(datetime) not regist right

2022-06-30 Thread GitBox
yiguolei merged PR #10525: URL: https://github.com/apache/doris/pull/10525 -- 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][Vectorized] fix timestamp(datetime) not regist right (#10525)

2022-06-30 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 7571263ed7 [Bug][Vectorized] fix timestamp(date

[GitHub] [doris] stalary commented on a diff in pull request #9583: [Feature] Support es external table not assign schema

2022-06-30 Thread GitBox
stalary commented on code in PR #9583: URL: https://github.com/apache/doris/pull/9583#discussion_r911516109 ## fe/fe-core/src/main/java/org/apache/doris/external/elasticsearch/EsUtil.java: ## @@ -87,12 +93,129 @@ public static JSONObject getJsonObject(JSONObject jsonObject, Str

[GitHub] [doris] github-actions[bot] commented on pull request #10327: [Enhancement] modify comment " to ' compat mysql.

2022-06-30 Thread GitBox
github-actions[bot] commented on PR #10327: URL: https://github.com/apache/doris/pull/10327#issuecomment-1171812353 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] morningman closed issue #10203: [Enhancement] Show create table Comment use single quotes

2022-06-30 Thread GitBox
morningman closed issue #10203: [Enhancement] Show create table Comment use single quotes URL: https://github.com/apache/doris/issues/10203 -- 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 speci

  1   2   >