[GitHub] [incubator-doris] wangbo opened a new pull request #3456: UT bug fix for commit (#3336)

2020-05-02 Thread GitBox
wangbo opened a new pull request #3456: URL: https://github.com/apache/incubator-doris/pull/3456 There is a UT bug for (#3336) . SSD cooldowntime shouldn't be fix time in UT; This is an automated message from the Apach

[incubator-doris] branch master updated: Update doris-on-es.md (#3441)

2020-05-02 Thread kangkaisen
This is an automated email from the ASF dual-hosted git repository. kangkaisen pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-doris.git The following commit(s) were added to refs/heads/master by this push: new 2cb4027 Update doris-on-es.md (#34

[incubator-doris] branch master updated: Update doris-on-es.md (#3446)

2020-05-02 Thread kangkaisen
This is an automated email from the ASF dual-hosted git repository. kangkaisen pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-doris.git The following commit(s) were added to refs/heads/master by this push: new a1500eb Update doris-on-es.md (#34

[GitHub] [incubator-doris] fanlongmengjd opened a new issue #3455: Be memory increase

2020-05-02 Thread GitBox
fanlongmengjd opened a new issue #3455: URL: https://github.com/apache/incubator-doris/issues/3455 **Describe the bug** A clear and concise description of what the bug is. 1. Be restart 2. There were a routine loads which topic had 2-5 billion data 3. Be memory increased from 2

[GitHub] [incubator-doris] fanlongmengjd commented on issue #3370: [Bug] Routine loads don't consume kafka topic

2020-05-02 Thread GitBox
fanlongmengjd commented on issue #3370: URL: https://github.com/apache/incubator-doris/issues/3370#issuecomment-622992395 yes, sounds like that. I use :admin set frontend config("catalog_trash_expire_second" = "60") to workaround this problem, but i don't know the root cause --

[GitHub] [incubator-doris] stalary opened a new pull request #3454: [Doris On ES] Split /_cluster/state to [indexName/_mappings, indexName/_search_shards]

2020-05-02 Thread GitBox
stalary opened a new pull request #3454: URL: https://github.com/apache/incubator-doris/pull/3454 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL a

[GitHub] [incubator-doris] kangkaisen commented on a change in pull request #3396: (#3395)calculate 'case when expr' when possible

2020-05-02 Thread GitBox
kangkaisen commented on a change in pull request #3396: URL: https://github.com/apache/incubator-doris/pull/3396#discussion_r418955391 ## File path: fe/src/test/java/org/apache/doris/utframe/UtFrameUtils.java ## @@ -96,6 +100,34 @@ public static StatementBase parseAndAnalyzeStm

[GitHub] [incubator-doris] kangkaisen opened a new pull request #3453: Support simple transitivity on join predicate pushdown

2020-05-02 Thread GitBox
kangkaisen opened a new pull request #3453: URL: https://github.com/apache/incubator-doris/pull/3453 For #3452 Current implement is very simply and conservative, because our query planner is error-prone. After we implement the new query planner, we could do this work by `Pre

[GitHub] [incubator-doris] kangkaisen opened a new issue #3452: Support simple transitivity on join predicate pushdown

2020-05-02 Thread GitBox
kangkaisen opened a new issue #3452: URL: https://github.com/apache/incubator-doris/issues/3452 For query: ``` select t1.id, t1.value, t2.value from t1 left join t2 on t1.id = t2.id where t1.id > 1 ``` We infer new predicate `t2.id > 1` and pushdown it to t2 Scannode.