Re: jdbc表与业务唯一模型分桶表left join一会一会查不出数据

2025-02-19 Thread GuoLei Yi
可以提供下profile 吗,另外可以加一下微信解决快一些 Best Regards, Yi Guo Lei SelectDB The Best Cloud Native Platform for Apache Doris Tel:134-3991-0228 Email:yiguo...@gmail.com 刘琴 <1170017...@qq.com.invalid>于2025年2月17日 周一16:15写道: > Doris版本2.1.6 > > > Jdbc表与业务唯一模型分桶表left > join有时候查不出数据,按理来说一直有数据

Re: join

2024-11-23 Thread Yongqiang YANG
welcome. You can pick task from issues on github. On Sat, Nov 23, 2024 at 8:31 PM William Milefer wrote: > Hi there, I want to contribute to the open source community! >

join

2024-11-23 Thread William Milefer
Hi there, I want to contribute to the open source community!

Re: [PR] [doc](mtmv) Support more join types for query rewriting by materialized view [doris-website]

2024-03-22 Thread via GitHub
seawinde commented on PR #458: URL: https://github.com/apache/doris-website/pull/458#issuecomment-2014651323 run buildall -- 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

join in the group

2023-12-28 Thread Heng Chen
I want to join the Doris email group, thx. - To unsubscribe, e-mail: dev-unsubscr...@doris.apache.org For additional commands, e-mail: dev-h...@doris.apache.org

join the doris community

2023-01-02 Thread 刘治国
dear: apply join the doris community. BR jagger.liu

Re: bucket shuffle join导致动态分区表的单分区join时,每次join结果不一样

2022-06-21 Thread jie chen
这个bug已经修复了。现在可以把left_table的bucket默认10改成32,我测了下没有这个问题了 On Tue, Jun 21, 2022 at 10:59 姜勇辉 wrote: > *Bucket Shuffle Join* > > 问题: > > 当我在使用动态分区表left_table的单个分区join维表right_table时,发现每次join结果不一样。我不知道为什么会产生这种原因。 > > 我进行了一些分析,发现当左表left_table不是分区表时,join结果正常。下面为我的测试用例。 > > >

bucket shuffle join导致动态分区表的单分区join时,每次join结果不一样

2022-06-20 Thread 姜勇辉
Bucket Shuffle Join 问题: 当我在使用动态分区表left_table的单个分区join维表right_table时,发现每次join结果不一样。我不知道为什么会产生这种原因。 我进行了一些分析,发现当左表left_table不是分区表时,join结果正常。下面为我的测试用例。 测试Bucket Shuffle Join 1.创建left_table和right_table SQL #创建左表 create table left_table( `data_date` date, `id` int, `name` varchar(256

??????Flink mysql cdc to doris??schema join ????????doris????????

2022-05-29 Thread di wu
Hi, thanks for your question. 1. I tested it, and flink cdc imports the doris aggregation model. In the case of join and groupby, data can be written and updated normally. 2. The flink-doris-connector version 1.0.3 is based on batch-based streamload, which is controlled by parameters such as

Flink mysql cdc to doris多schema join 数据导入doris多次问题

2022-05-26 Thread Xie Josh
大家早: 最近在使用mysql flink cdc to doris时, 发现个问题, 在flink多schema进行join, group by等多个算子计算时, doris flink connector会不定时多次向doris导入数据, 导致聚合模型(sum)计算不准确.(flink1.13.6 doris1.0.0 rc03, connector版本均对应) 如以下示例可以看出, 当flink由多个schema join group by等算子计算后(flink显示有20左右个算子), flink任务执行时, 观察数据, 发现update_time在不断变化

Re: [Proposal] Support Bucket Shuffle Join for Doris

2020-08-19 Thread Zhao Chun
ecome very large. While tpc-ds has many large tables to join, I understand that the effect of colocated should be better. In addition, when it comes to bucket cutting, we should be able to push down the filtering conditions. In this way, the data in the right table has been filtered before sh

Re: [Proposal] Support Bucket Shuffle Join for Doris

2020-08-19 Thread Lee Happen
Hi Zhao Chun 1. It can only be applied to a single partition. It is similar to that when the table joins itself, it should use collocate join in the single partition scenario. The query like TPCDS is not multi partitioned, so the effect will be better. Doris don't just have partition cu

Re: [Proposal] Support Bucket Shuffle Join for Doris

2020-08-19 Thread Zhao Chun
Hi Happen I think we can only support bucket join of single partition table. But I have some concerns 1. In real use, most scenes are created with multiple partitions. The possible scenarios for this optimization are limited. 2. It will make the data stream sender more complex. Because it is

Re: [Proposal] Support Bucket Shuffle Join for Doris

2020-08-18 Thread Lee Happen
. The Network consumption of bucket shuffle join will degenerate. More machine more degradation. So Bucket shuffle join only when a single partition is queried can it play its role 2. Before the query, the partition clipping will be carried out by FE. In many query scenarios, queries are

Re: [Proposal] Support Bucket Shuffle Join for Doris

2020-08-18 Thread Zhao Chun
time column, and then the bucket is divided according to the userid row, then the same userid in different partitions will appear on different machines. In extreme cases, the same userid may appear on all machines, which may degenerate into broadcast join when joining the userid column. I think we

[Proposal] Support Bucket Shuffle Join for Doris

2020-08-18 Thread Lee Happen
Motivation At present, Doris support 3 type join: shuffle join, broadcast join, colocate join. Except colocate join,another join will lead to a lot of network consumption. For example, there a SQL A join B, the cost of network. * broadcast join: if table A is divided into three parts,the

Re: how to join Doris wechat group

2020-03-15 Thread Zhao Chun
My wechat number is ApacheZhaoc, you can add me first, then I can invite you in group Thanks, Zhao Chun Dahai Kang 于2020年3月15日周日 上午2:49写道: > Thanks. > > > Regards. > > Dahai >

how to join Doris wechat group

2020-03-14 Thread Dahai Kang
Thanks. Regards. Dahai

[GitHub] [incubator-doris] EmmyMiao87 commented on issue #1650: Where clause can't push down into the right table of JOIN clasure

2019-08-15 Thread GitBox
EmmyMiao87 commented on issue #1650: Where clause can't push down into the right table of JOIN clasure URL: https://github.com/apache/incubator-doris/issues/1650#issuecomment-521565573 This https://www.ibm.com/developerworks/data/library/techarticle/purcell/0201purcell.html provi

[GitHub] [incubator-doris] EmmyMiao87 commented on issue #1650: Where clause can't push down into the right table of JOIN clasure

2019-08-15 Thread GitBox
EmmyMiao87 commented on issue #1650: Where clause can't push down into the right table of JOIN clasure URL: https://github.com/apache/incubator-doris/issues/1650#issuecomment-521538908 The where predicate could not be pushed down when the predicate is on the outer join table.

[GitHub] [incubator-doris] worker24h opened a new issue #1650: Where clause can't push down into the right table of JOIN clasure

2019-08-14 Thread GitBox
worker24h opened a new issue #1650: Where clause can't push down into the right table of JOIN clasure URL: https://github.com/apache/incubator-doris/issues/1650 Where clause can't push down into the right table of JOIN clasure in Doris, howevery Impala or Mysql can do tha

[GitHub] [incubator-doris] imay merged pull request #1171: Threadpool should be shutdown before join()

2019-05-17 Thread GitBox
imay merged pull request #1171: Threadpool should be shutdown before join() URL: https://github.com/apache/incubator-doris/pull/1171 This is an automated message from the Apache Git Service. To respond to the message, please

[GitHub] [incubator-doris] morningman opened a new pull request #1171: Threadpool should be shutdown before join()

2019-05-17 Thread GitBox
morningman opened a new pull request #1171: Threadpool should be shutdown before join() URL: https://github.com/apache/incubator-doris/pull/1171 This is an automated message from the Apache Git Service. To respond to the

[GitHub] [incubator-doris] lide-reed merged pull request #946: Fix date issue in hash join

2019-04-17 Thread GitBox
lide-reed merged pull request #946: Fix date issue in hash join URL: https://github.com/apache/incubator-doris/pull/946 This is an automated message from the Apache Git Service. To respond to the message, please log on to

[GitHub] [incubator-doris] lide-reed opened a new pull request #946: Fix date issue in hash join

2019-04-17 Thread GitBox
lide-reed opened a new pull request #946: Fix date issue in hash join URL: https://github.com/apache/incubator-doris/pull/946 This is an automated message from the Apache Git Service. To respond to the message, please log on

[GitHub] morningman closed issue #645: Query error with union all containing join predicate

2019-02-25 Thread GitBox
morningman closed issue #645: Query error with union all containing join predicate URL: https://github.com/apache/incubator-doris/issues/645 This is an automated message from the Apache Git Service. To respond to the

[GitHub] EmmyMiao87 commented on issue #645: Query error with union all containing join predicate

2019-02-25 Thread GitBox
EmmyMiao87 commented on issue #645: Query error with union all containing join predicate URL: https://github.com/apache/incubator-doris/issues/645#issuecomment-467264103 [https://github.com/apache/incubator-doris/pull/657](url) This commit fix this bug

[GitHub] EmmyMiao87 commented on issue #645: Query error with union all containing join predicate

2019-02-21 Thread GitBox
EmmyMiao87 commented on issue #645: Query error with union all containing join predicate URL: https://github.com/apache/incubator-doris/issues/645#issuecomment-465916193 Query error : select 1 from t1, t1 as t11 where t1.k1=t11.k1 union all select 2 from t1 where 1=2; The predicate 1=2

[GitHub] EmmyMiao87 commented on issue #645: Query error with VIEW containing left outer join

2019-02-21 Thread GitBox
EmmyMiao87 commented on issue #645: Query error with VIEW containing left outer join URL: https://github.com/apache/incubator-doris/issues/645#issuecomment-465903633 please change title to "Query error with union all containing join pred

[GitHub] kangkaisen closed issue #546: Colocate Join table balance bug

2019-01-24 Thread GitBox
kangkaisen closed issue #546: Colocate Join table balance bug URL: https://github.com/apache/incubator-doris/issues/546 This is an automated message from the Apache Git Service. To respond to the message, please log on

[GitHub] kangkaisen closed issue #549: Add a colocate join meta repair tool

2019-01-24 Thread GitBox
kangkaisen closed issue #549: Add a colocate join meta repair tool URL: https://github.com/apache/incubator-doris/issues/549 This is an automated message from the Apache Git Service. To respond to the message, please log on

[GitHub] kangkaisen commented on issue #549: Add a colocate join meta repair tool

2019-01-22 Thread GitBox
kangkaisen commented on issue #549: Add a colocate join meta repair tool URL: https://github.com/apache/incubator-doris/issues/549#issuecomment-456687468 Yes. Returning 404 could work. This is an automated message from the

[GitHub] imay commented on issue #549: Add a colocate join meta repair tool

2019-01-22 Thread GitBox
imay commented on issue #549: Add a colocate join meta repair tool URL: https://github.com/apache/incubator-doris/issues/549#issuecomment-456682541 @kangkaisen I think returning 404 is OK if it can stop Chrome sending request

[GitHub] kangkaisen commented on issue #549: Add a colocate join meta repair tool

2019-01-22 Thread GitBox
kangkaisen commented on issue #549: Add a colocate join meta repair tool URL: https://github.com/apache/incubator-doris/issues/549#issuecomment-456664026 @lingbin Thanks for your reminder, there still is a problem. before this pr, when request xxx:8410/favicon.ico, the Chrome will get

[GitHub] lingbin commented on issue #549: Add a colocate join meta repair tool

2019-01-22 Thread GitBox
lingbin commented on issue #549: Add a colocate join meta repair tool URL: https://github.com/apache/incubator-doris/issues/549#issuecomment-456658034 > Refer to the java doc and debug, the `HttpServerHandler.channelReadComplete` will be called many times.When the first time call

[GitHub] kangkaisen commented on issue #549: Add a colocate join meta repair tool

2019-01-22 Thread GitBox
kangkaisen commented on issue #549: Add a colocate join meta repair tool URL: https://github.com/apache/incubator-doris/issues/549#issuecomment-456649524 Refer to the java doc and debug, the `HttpServerHandler.channelReadComplete` will be called many times.When the first time call for

[GitHub] imay commented on issue #549: Add a colocate join meta repair tool

2019-01-22 Thread GitBox
imay commented on issue #549: Add a colocate join meta repair tool URL: https://github.com/apache/incubator-doris/issues/549#issuecomment-456638189 > The reason for curl failed is `HttpServerHandler.channelReadComplete` close the connect early. we shouldn't close ctx even if the a

[GitHub] kangkaisen commented on issue #549: Add a colocate join meta repair tool

2019-01-22 Thread GitBox
kangkaisen commented on issue #549: Add a colocate join meta repair tool URL: https://github.com/apache/incubator-doris/issues/549#issuecomment-456400620 The reason for curl failed is `HttpServerHandler.channelReadComplete` close the connect early. we shouldn't close ctx even i

[GitHub] kangkaisen commented on issue #549: Add a colocate join meta repair tool

2019-01-22 Thread GitBox
kangkaisen commented on issue #549: Add a colocate join meta repair tool URL: https://github.com/apache/incubator-doris/issues/549#issuecomment-456354202 After read Netty source code and debugged, I have found out the reason for all issues. I will do a full test, update the PR and explain

[GitHub] imay commented on issue #549: Add a colocate join meta repair tool

2019-01-21 Thread GitBox
imay commented on issue #549: Add a colocate join meta repair tool URL: https://github.com/apache/incubator-doris/issues/549#issuecomment-455999649 > @imay I added header "Transfer-Encoding: chunked" to java http client, which still work well. After I debugged, I think eit

[GitHub] kangkaisen commented on issue #549: Add a colocate join meta repair tool

2019-01-21 Thread GitBox
kangkaisen commented on issue #549: Add a colocate join meta repair tool URL: https://github.com/apache/incubator-doris/issues/549#issuecomment-455984204 @imay I added header "Transfer-Encoding: chunked" to java http client, which still work well. After I debugged, I think

[GitHub] imay commented on issue #549: Add a colocate join meta repair tool

2019-01-21 Thread GitBox
imay commented on issue #549: Add a colocate join meta repair tool URL: https://github.com/apache/incubator-doris/issues/549#issuecomment-455980791 @kangkaisen I found that curl's request has HTTP header "Transfer-Encoding: chunked". Maybe this encoding type cause

[GitHub] kangkaisen commented on issue #549: Add a colocate join meta repair tool

2019-01-20 Thread GitBox
kangkaisen commented on issue #549: Add a colocate join meta repair tool URL: https://github.com/apache/incubator-doris/issues/549#issuecomment-455975626 for java Http client ``` Request request = asyncHttpClient.preparePut(url).setBody(content) .setHeader

[GitHub] imay commented on issue #549: Add a colocate join meta repair tool

2019-01-20 Thread GitBox
imay commented on issue #549: Add a colocate join meta repair tool URL: https://github.com/apache/incubator-doris/issues/549#issuecomment-455955335 > Yes. I used `curl -v` and added ` --location-trusted` option. > > ``` > [#2#kangkaisen@kks ~ 11:00:22]$seq 1 10 | a

[GitHub] kangkaisen commented on issue #549: Add a colocate join meta repair tool

2019-01-20 Thread GitBox
kangkaisen commented on issue #549: Add a colocate join meta repair tool URL: https://github.com/apache/incubator-doris/issues/549#issuecomment-455946067 Yes. I used `curl -v` and added ` --location-trusted` option. ``` [#2#kangkaisen@kks ~ 11:00:22]$seq 1 10 | awk '{OF

[GitHub] imay commented on issue #549: Add a colocate join meta repair tool

2019-01-20 Thread GitBox
imay commented on issue #549: Add a colocate join meta repair tool URL: https://github.com/apache/incubator-doris/issues/549#issuecomment-455945319 @kangkaisen Could you provide more details when executing `LoadAction` with curl. You can use `curl -v` to print more information

[GitHub] kangkaisen commented on issue #549: Add a colocate join meta repair tool

2019-01-20 Thread GitBox
kangkaisen commented on issue #549: Add a colocate join meta repair tool URL: https://github.com/apache/incubator-doris/issues/549#issuecomment-455936589 last Friday, After I have developed the initial version and tested the FE Http API. **I found there were some `100-continue` http header

[GitHub] morningman commented on issue #549: Add a colocate join meta repair tool

2019-01-17 Thread GitBox
morningman commented on issue #549: Add a colocate join meta repair tool URL: https://github.com/apache/incubator-doris/issues/549#issuecomment-455439206 > Doris can redirect HTTP request to master, you can refer to "http/rest/MultiStart.java", call `redirectToMaster` can red

[GitHub] imay commented on issue #549: Add a colocate join meta repair tool

2019-01-17 Thread GitBox
imay commented on issue #549: Add a colocate join meta repair tool URL: https://github.com/apache/incubator-doris/issues/549#issuecomment-455438577 > @morningman > > > There is a serious problem that if the metadata has error, the Frontend instance may not even able

[GitHub] kangkaisen commented on issue #549: Add a colocate join meta repair tool

2019-01-16 Thread GitBox
kangkaisen commented on issue #549: Add a colocate join meta repair tool URL: https://github.com/apache/incubator-doris/issues/549#issuecomment-455071498 > By the way, this issue #540 you may need to know. And we decided to unify the tablet balance operation in this new framew

[GitHub] kangkaisen commented on issue #549: Add a colocate join meta repair tool

2019-01-16 Thread GitBox
kangkaisen commented on issue #549: Add a colocate join meta repair tool URL: https://github.com/apache/incubator-doris/issues/549#issuecomment-455070963 @morningman >There is a serious problem that if the metadata has error, the Frontend instance may not even able to start,

[GitHub] kangkaisen commented on issue #549: Add a colocate join meta repair tool

2019-01-16 Thread GitBox
kangkaisen commented on issue #549: Add a colocate join meta repair tool URL: https://github.com/apache/incubator-doris/issues/549#issuecomment-455069634 OK. I agree with you. I also prefer HTTP. > I think HTTP or SQL is OK. CommandLine need admin to login in the host where serv

[GitHub] morningman merged pull request #547: Fix colocate join balance bug

2019-01-16 Thread GitBox
morningman merged pull request #547: Fix colocate join balance bug URL: https://github.com/apache/incubator-doris/pull/547 This is an automated message from the Apache Git Service. To respond to the message, please log on

[GitHub] morningman commented on issue #549: Add a colocate join meta repair tool

2019-01-16 Thread GitBox
morningman commented on issue #549: Add a colocate join meta repair tool URL: https://github.com/apache/incubator-doris/issues/549#issuecomment-455063070 By the way, this issue #540 you may need to know. And we decided to unify the tablet balance operation in this new framework

[GitHub] morningman commented on issue #549: Add a colocate join meta repair tool

2019-01-16 Thread GitBox
morningman commented on issue #549: Add a colocate join meta repair tool URL: https://github.com/apache/incubator-doris/issues/549#issuecomment-455062272 There is a serious problem that if the metadata has error, the Frontend instance may not even able to start, so that both HTTP or SQL

[GitHub] imay commented on issue #549: Add a colocate join meta repair tool

2019-01-16 Thread GitBox
imay commented on issue #549: Add a colocate join meta repair tool URL: https://github.com/apache/incubator-doris/issues/549#issuecomment-455053722 I think HTTP or SQL is OK. CommandLine need admin to login in the host where service locates on, so it's not convenient. For HTT

[GitHub] kangkaisen opened a new issue #549: Add a colocate join meta repair tool

2019-01-16 Thread GitBox
kangkaisen opened a new issue #549: Add a colocate join meta repair tool URL: https://github.com/apache/incubator-doris/issues/549 refer to https://github.com/apache/incubator-doris/issues/546 If our code has bug, the colocate meta maybe wrong. So we should add more Test and a repair

[GitHub] kangkaisen opened a new pull request #547: Fix colocate join balance bug

2019-01-16 Thread GitBox
kangkaisen opened a new pull request #547: Fix colocate join balance bug URL: https://github.com/apache/incubator-doris/pull/547 Fix the colocate join balance bug in [546](https://github.com/apache/incubator-doris/issues/546

[GitHub] kangkaisen opened a new issue #546: Colocate Join table balance bug

2019-01-16 Thread GitBox
kangkaisen opened a new issue #546: Colocate Join table balance bug URL: https://github.com/apache/incubator-doris/issues/546 **Describe the bug** Yestoday, I expanded 5 BEs to one prod cluster. when colocate table balance, there was a error ``` 2019-01-16 12:44:31,901 INFO 341

[GitHub] kangkaisen closed issue #245: Colocate Join

2019-01-10 Thread GitBox
kangkaisen closed issue #245: Colocate Join URL: https://github.com/apache/incubator-doris/issues/245 This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL

[GitHub] fireofsun opened a new issue #435: 等值join 被判定为 非等值join

2018-12-14 Thread GitBox
fireofsun opened a new issue #435: 等值join 被判定为 非等值join URL: https://github.com/apache/incubator-doris/issues/435 **Describe the bug** 等值outer left join被判断为 non-equal LEFT OUTER JOIN **To Reproduce** Steps to reproduce the behavior: 数据库中存在orders表,该表包含Cost_Item 列,运行以下

[GitHub] morningman closed pull request #246: Colocate Join (#245)

2018-12-06 Thread GitBox
morningman closed pull request #246: Colocate Join (#245) URL: https://github.com/apache/incubator-doris/pull/246 This is a PR merged from a forked repository. As GitHub hides the original diff on merge, it is displayed below for the sake of provenance: As this is a foreign pull request

[GitHub] morningman commented on a change in pull request #246: Colocate Join (#245)

2018-12-06 Thread GitBox
morningman commented on a change in pull request #246: Colocate Join (#245) URL: https://github.com/apache/incubator-doris/pull/246#discussion_r239309523 ## File path: fe/src/main/java/org/apache/doris/catalog/Catalog.java ## @@ -3270,6 +3309,33 @@ private Table

[GitHub] morningman commented on a change in pull request #246: Colocate Join (#245)

2018-12-06 Thread GitBox
morningman commented on a change in pull request #246: Colocate Join (#245) URL: https://github.com/apache/incubator-doris/pull/246#discussion_r239304424 ## File path: fe/src/main/java/org/apache/doris/catalog/ColocateTableUtils.java ## @@ -0,0 +1,104 @@ +// Licensed to

[GitHub] morningman commented on a change in pull request #246: Colocate Join (#245)

2018-12-06 Thread GitBox
morningman commented on a change in pull request #246: Colocate Join (#245) URL: https://github.com/apache/incubator-doris/pull/246#discussion_r239303221 ## File path: fe/src/main/java/org/apache/doris/catalog/ColocateTableIndex.java ## @@ -0,0 +1,366 @@ +// Licensed to

[GitHub] morningman commented on a change in pull request #246: Colocate Join (#245)

2018-12-06 Thread GitBox
morningman commented on a change in pull request #246: Colocate Join (#245) URL: https://github.com/apache/incubator-doris/pull/246#discussion_r228831444 ## File path: fe/src/com/baidu/palo/catalog/Catalog.java ## @@ -2569,6 +2601,13 @@ public void addPartition(Database db

[GitHub] morningman commented on a change in pull request #246: Colocate Join (#245)

2018-12-06 Thread GitBox
morningman commented on a change in pull request #246: Colocate Join (#245) URL: https://github.com/apache/incubator-doris/pull/246#discussion_r239303500 ## File path: fe/src/main/java/org/apache/doris/catalog/ColocateTableIndex.java ## @@ -0,0 +1,366 @@ +// Licensed to

[GitHub] kangkaisen commented on issue #246: Colocate Join (#245)

2018-12-04 Thread GitBox
kangkaisen commented on issue #246: Colocate Join (#245) URL: https://github.com/apache/incubator-doris/pull/246#issuecomment-444340012 Rebase this commit. This is an automated message from the Apache Git Service. To respond

[GitHub] kangkaisen commented on issue #246: Colocate Join (#245)

2018-11-25 Thread GitBox
kangkaisen commented on issue #246: Colocate Join (#245) URL: https://github.com/apache/incubator-doris/pull/246#issuecomment-441442465 Add more comment for `ColocateTableBalancer` This is an automated message from the Apache

[GitHub] kangkaisen commented on a change in pull request #246: Colocate Join (#245)

2018-11-19 Thread GitBox
kangkaisen commented on a change in pull request #246: Colocate Join (#245) URL: https://github.com/apache/incubator-doris/pull/246#discussion_r234602144 ## File path: fe/src/main/java/org/apache/doris/planner/OlapScanNode.java ## @@ -565,12 +576,20 @@ private void

[GitHub] kangkaisen commented on a change in pull request #246: Colocate Join (#245)

2018-11-19 Thread GitBox
kangkaisen commented on a change in pull request #246: Colocate Join (#245) URL: https://github.com/apache/incubator-doris/pull/246#discussion_r234601205 ## File path: fe/src/main/java/org/apache/doris/clone/ColocateTableBalancer.java ## @@ -0,0 +1,573 @@ +// Licensed to

[GitHub] imay commented on a change in pull request #246: Colocate Join (#245)

2018-11-18 Thread GitBox
imay commented on a change in pull request #246: Colocate Join (#245) URL: https://github.com/apache/incubator-doris/pull/246#discussion_r234484894 ## File path: fe/src/main/java/org/apache/doris/planner/OlapScanNode.java ## @@ -565,12 +576,20 @@ private void

[GitHub] imay commented on a change in pull request #246: Colocate Join (#245)

2018-11-18 Thread GitBox
imay commented on a change in pull request #246: Colocate Join (#245) URL: https://github.com/apache/incubator-doris/pull/246#discussion_r234484747 ## File path: fe/src/main/java/org/apache/doris/clone/ColocateTableBalancer.java ## @@ -0,0 +1,573 @@ +// Licensed to the

[GitHub] kangkaisen commented on issue #246: Colocate Join (#245)

2018-11-15 Thread GitBox
kangkaisen commented on issue #246: Colocate Join (#245) URL: https://github.com/apache/incubator-doris/pull/246#issuecomment-439266895 OK,Thanks you. This is an automated message from the Apache Git Service. To respond to

[GitHub] imay commented on issue #246: Colocate Join (#245)

2018-11-15 Thread GitBox
imay commented on issue #246: Colocate Join (#245) URL: https://github.com/apache/incubator-doris/pull/246#issuecomment-439265399 > Hi. @imay Is there any question about this PR? If not, I will resolve the conflict and rebase the commit. Some things have hindered me, so I have

[GitHub] kangkaisen commented on issue #246: Colocate Join (#245)

2018-11-15 Thread GitBox
kangkaisen commented on issue #246: Colocate Join (#245) URL: https://github.com/apache/incubator-doris/pull/246#issuecomment-439264541 Hi. @imay Is there any question about this PR? If not, I will resolve the conflict and rebase the commit

[GitHub] kangkaisen commented on issue #246: Colocate Join (#245)

2018-11-09 Thread GitBox
kangkaisen commented on issue #246: Colocate Join (#245) URL: https://github.com/apache/incubator-doris/pull/246#issuecomment-437289508 Add help doc for colocate join. This is an automated message from the Apache Git Service

[GitHub] kangkaisen commented on issue #246: Colocate Join (#245)

2018-11-07 Thread GitBox
kangkaisen commented on issue #246: Colocate Join (#245) URL: https://github.com/apache/incubator-doris/pull/246#issuecomment-436899215 OK, I will add design doc and help doc later. This is an automated message from the

[GitHub] imay commented on issue #246: Colocate Join (#245)

2018-11-07 Thread GitBox
imay commented on issue #246: Colocate Join (#245) URL: https://github.com/apache/incubator-doris/pull/246#issuecomment-436895765 @kangkaisen Could you add some `help doc` to this PR, which help user to use this feature

[GitHub] imay commented on a change in pull request #246: Colocate Join (#245)

2018-11-07 Thread GitBox
imay commented on a change in pull request #246: Colocate Join (#245) URL: https://github.com/apache/incubator-doris/pull/246#discussion_r231782409 ## File path: fe/src/main/java/org/apache/doris/analysis/ModifyTablePropertiesClause.java ## @@ -44,9 +45,15 @@ public void

[GitHub] kangkaisen commented on issue #246: Colocate Join (#245)

2018-11-07 Thread GitBox
kangkaisen commented on issue #246: Colocate Join (#245) URL: https://github.com/apache/incubator-doris/pull/246#issuecomment-436886368 @imay Update this commit. Please review. Thanks! This is an automated message from the

[GitHub] kangkaisen commented on a change in pull request #246: Colocate Join (#245)

2018-11-07 Thread GitBox
kangkaisen commented on a change in pull request #246: Colocate Join (#245) URL: https://github.com/apache/incubator-doris/pull/246#discussion_r231748478 ## File path: fe/src/main/java/org/apache/doris/catalog/Catalog.java ## @@ -3376,12 +3477,36 @@ private Table

[GitHub] kangkaisen commented on a change in pull request #246: Colocate Join (#245)

2018-11-07 Thread GitBox
kangkaisen commented on a change in pull request #246: Colocate Join (#245) URL: https://github.com/apache/incubator-doris/pull/246#discussion_r231748118 ## File path: fe/src/main/java/org/apache/doris/analysis/ModifyTablePropertiesClause.java ## @@ -44,9 +45,15 @@ public

[GitHub] imay commented on a change in pull request #246: Colocate Join (#245)

2018-11-07 Thread GitBox
imay commented on a change in pull request #246: Colocate Join (#245) URL: https://github.com/apache/incubator-doris/pull/246#discussion_r231485965 ## File path: fe/src/main/java/org/apache/doris/catalog/Catalog.java ## @@ -3376,12 +3477,36 @@ private Table createOlapTable

[GitHub] imay commented on a change in pull request #246: Colocate Join (#245)

2018-11-07 Thread GitBox
imay commented on a change in pull request #246: Colocate Join (#245) URL: https://github.com/apache/incubator-doris/pull/246#discussion_r231483011 ## File path: fe/src/main/java/org/apache/doris/analysis/ModifyTablePropertiesClause.java ## @@ -44,9 +45,15 @@ public void

[GitHub] kangkaisen commented on a change in pull request #246: Colocate Join (#245)

2018-11-07 Thread GitBox
kangkaisen commented on a change in pull request #246: Colocate Join (#245) URL: https://github.com/apache/incubator-doris/pull/246#discussion_r231466570 ## File path: fe/src/main/java/org/apache/doris/planner/DistributedPlanner.java ## @@ -395,6 +414,81 @@ private

[GitHub] kangkaisen commented on a change in pull request #246: Colocate Join (#245)

2018-11-07 Thread GitBox
kangkaisen commented on a change in pull request #246: Colocate Join (#245) URL: https://github.com/apache/incubator-doris/pull/246#discussion_r231466178 ## File path: fe/src/main/java/org/apache/doris/planner/DistributedPlanner.java ## @@ -395,6 +414,81 @@ private

[GitHub] kangkaisen commented on a change in pull request #246: Colocate Join (#245)

2018-11-07 Thread GitBox
kangkaisen commented on a change in pull request #246: Colocate Join (#245) URL: https://github.com/apache/incubator-doris/pull/246#discussion_r231462410 ## File path: fe/src/main/java/org/apache/doris/catalog/Catalog.java ## @@ -4542,6 +4722,34 @@ public void

[GitHub] kangkaisen commented on a change in pull request #246: Colocate Join (#245)

2018-11-07 Thread GitBox
kangkaisen commented on a change in pull request #246: Colocate Join (#245) URL: https://github.com/apache/incubator-doris/pull/246#discussion_r231459500 ## File path: fe/src/main/java/org/apache/doris/catalog/Catalog.java ## @@ -3376,12 +3477,36 @@ private Table

[GitHub] kangkaisen commented on a change in pull request #246: Colocate Join (#245)

2018-11-07 Thread GitBox
kangkaisen commented on a change in pull request #246: Colocate Join (#245) URL: https://github.com/apache/incubator-doris/pull/246#discussion_r231451880 ## File path: fe/src/main/java/org/apache/doris/catalog/Catalog.java ## @@ -3376,12 +3477,36 @@ private Table

[GitHub] kangkaisen commented on a change in pull request #246: Colocate Join (#245)

2018-11-07 Thread GitBox
kangkaisen commented on a change in pull request #246: Colocate Join (#245) URL: https://github.com/apache/incubator-doris/pull/246#discussion_r231450932 ## File path: fe/src/main/java/org/apache/doris/catalog/Catalog.java ## @@ -3334,7 +3428,14 @@ private Table

[GitHub] kangkaisen commented on a change in pull request #246: Colocate Join (#245)

2018-11-07 Thread GitBox
kangkaisen commented on a change in pull request #246: Colocate Join (#245) URL: https://github.com/apache/incubator-doris/pull/246#discussion_r231448920 ## File path: fe/src/main/java/org/apache/doris/catalog/Catalog.java ## @@ -3261,6 +3302,59 @@ private Table

[GitHub] kangkaisen commented on a change in pull request #246: Colocate Join (#245)

2018-11-07 Thread GitBox
kangkaisen commented on a change in pull request #246: Colocate Join (#245) URL: https://github.com/apache/incubator-doris/pull/246#discussion_r231448812 ## File path: fe/src/main/java/org/apache/doris/catalog/Catalog.java ## @@ -3261,6 +3302,59 @@ private Table

[GitHub] kangkaisen commented on a change in pull request #246: Colocate Join (#245)

2018-11-07 Thread GitBox
kangkaisen commented on a change in pull request #246: Colocate Join (#245) URL: https://github.com/apache/incubator-doris/pull/246#discussion_r231448629 ## File path: fe/src/main/java/org/apache/doris/catalog/Catalog.java ## @@ -2712,6 +2744,13 @@ public void addPartition

[GitHub] kangkaisen commented on a change in pull request #246: Colocate Join (#245)

2018-11-07 Thread GitBox
kangkaisen commented on a change in pull request #246: Colocate Join (#245) URL: https://github.com/apache/incubator-doris/pull/246#discussion_r231446980 ## File path: fe/src/main/java/org/apache/doris/analysis/ModifyTablePropertiesClause.java ## @@ -44,9 +45,15 @@ public

[GitHub] imay commented on a change in pull request #246: Colocate Join (#245)

2018-11-07 Thread GitBox
imay commented on a change in pull request #246: Colocate Join (#245) URL: https://github.com/apache/incubator-doris/pull/246#discussion_r231440902 ## File path: fe/src/main/java/org/apache/doris/planner/DistributedPlanner.java ## @@ -395,6 +414,81 @@ private PlanFragment

[GitHub] imay commented on a change in pull request #246: Colocate Join (#245)

2018-11-07 Thread GitBox
imay commented on a change in pull request #246: Colocate Join (#245) URL: https://github.com/apache/incubator-doris/pull/246#discussion_r231428989 ## File path: fe/src/main/java/org/apache/doris/catalog/Catalog.java ## @@ -2712,6 +2744,13 @@ public void addPartition

[GitHub] imay commented on a change in pull request #246: Colocate Join (#245)

2018-11-07 Thread GitBox
imay commented on a change in pull request #246: Colocate Join (#245) URL: https://github.com/apache/incubator-doris/pull/246#discussion_r231433443 ## File path: fe/src/main/java/org/apache/doris/catalog/Catalog.java ## @@ -3334,7 +3428,14 @@ private Table createOlapTable

[GitHub] imay commented on a change in pull request #246: Colocate Join (#245)

2018-11-07 Thread GitBox
imay commented on a change in pull request #246: Colocate Join (#245) URL: https://github.com/apache/incubator-doris/pull/246#discussion_r231438618 ## File path: fe/src/main/java/org/apache/doris/catalog/Catalog.java ## @@ -4542,6 +4722,34 @@ public void replayRenameTable

[GitHub] imay commented on a change in pull request #246: Colocate Join (#245)

2018-11-07 Thread GitBox
imay commented on a change in pull request #246: Colocate Join (#245) URL: https://github.com/apache/incubator-doris/pull/246#discussion_r231430755 ## File path: fe/src/main/java/org/apache/doris/catalog/Catalog.java ## @@ -3261,6 +3302,59 @@ private Table createOlapTable

  1   2   >