[incubator-doris] branch master updated: [Bug] Fix bug that double unregister the resource pool in runtime state (#3458)

2020-05-03 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/incubator-doris.git The following commit(s) were added to refs/heads/master by this push: new 101c7c1 [Bug] Fix bug that double

[GitHub] [incubator-doris] morningman opened a new pull request #3461: [Decommission] Support NOT dropping BE after decommission

2020-05-03 Thread GitBox
morningman opened a new pull request #3461: URL: https://github.com/apache/incubator-doris/pull/3461 Add a new config `drop_backend_after_decommission` in FE. if this config is false, the BE will not be dropped after finishing decommission operation. This new config is try to solve

[GitHub] [incubator-doris] morningman opened a new issue #3460: [Help] Not easy to balance the data when adding new disk to BE

2020-05-03 Thread GitBox
morningman opened a new issue #3460: URL: https://github.com/apache/incubator-doris/issues/3460 **Is your feature request related to a problem? Please describe.** When adding new disks to BE, the data can not do automatic balance among disks within the BE. **Describe the solution

[GitHub] [incubator-doris] sduzh opened a new pull request #3459: remove unnecessary if condition

2020-05-03 Thread GitBox
sduzh opened a new pull request #3459: URL: https://github.com/apache/incubator-doris/pull/3459 if `_opts.conditions` is `nullptr`, the set `cids` would be empty. This is an automated message from the Apache Git Service. To

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

2020-05-03 Thread GitBox
kangkaisen commented on issue #3452: URL: https://github.com/apache/incubator-doris/issues/3452#issuecomment-623232256 @chaoyli Of course. we could support right join and full out join. But inner join and left join are more common, and this PR has been tested in MeiTuan prod env two years

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

2020-05-03 Thread GitBox
kangkaisen commented on a change in pull request #3453: URL: https://github.com/apache/incubator-doris/pull/3453#discussion_r419193503 ## File path: fe/src/main/java/org/apache/doris/planner/SingleNodePlanner.java ## @@ -72,6 +72,8 @@ import java.util.Map; import java.util.UU

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

2020-05-03 Thread GitBox
kangkaisen commented on a change in pull request #3453: URL: https://github.com/apache/incubator-doris/pull/3453#discussion_r419193526 ## File path: fe/src/main/java/org/apache/doris/planner/SingleNodePlanner.java ## @@ -1372,6 +1414,24 @@ private PlanNode createScanNode(Analyz

[incubator-doris] branch master updated: [Fix] Fix bug that rowset meta is deleted after compaction (#3451)

2020-05-03 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 a592205 [Fix] Fix bug that rowset

[GitHub] [incubator-doris] kangkaisen commented on issue #3442: [Memory Engine] Add MemTablet type to TabletMeta

2020-05-03 Thread GitBox
kangkaisen commented on issue #3442: URL: https://github.com/apache/incubator-doris/issues/3442#issuecomment-623223611 >we may need more discussions about how to make the table data model and create table syntax/semantics more consistent. OK ---

[GitHub] [incubator-doris] morningman opened a new pull request #3458: [Bug] Fix bug that double unregister the resource pool in runtime state

2020-05-03 Thread GitBox
morningman opened a new pull request #3458: URL: https://github.com/apache/incubator-doris/pull/3458 The resource pool in runtime state will be automatically unregistered when deconstructing the RuntimeState. So no need to unregister it when closing the plan fragment executor. F

[GitHub] [incubator-doris] morningman opened a new issue #3457: [Bug] BE crash when running in LSAN mode

2020-05-03 Thread GitBox
morningman opened a new issue #3457: URL: https://github.com/apache/incubator-doris/issues/3457 **Describe the bug** BE will crash when calling `ThreadResourceMgr::unregister_pool` in LSAN compilation mode. **To Reproduce** Compile the BE with LSAN, and run the cluster. Add the

[GitHub] [incubator-doris] chaoyli commented on issue #3452: Support simple transitivity on join predicate pushdown

2020-05-03 Thread GitBox
chaoyli commented on issue #3452: URL: https://github.com/apache/incubator-doris/issues/3452#issuecomment-623220172 ``` select t1.id, t1.value, t2.value from t1 right join t2 on t1.id = t2.id where t2.id > 1 ``` I think this query is also can be pushed down?

[incubator-doris] branch master updated: [metrics] Make DorisMetrics to be a real singleton (#3417)

2020-05-03 Thread lichaoyong
This is an automated email from the ASF dual-hosted git repository. lichaoyong 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 b58b1b3 [metrics] Make DorisMetric

[GitHub] [incubator-doris] morningman commented on issue #3455: Be memory increase

2020-05-03 Thread GitBox
morningman commented on issue #3455: URL: https://github.com/apache/incubator-doris/issues/3455#issuecomment-623124704 Maybe you could try to compile the Doris with LSAN, and deploy one of your BE, to see what can happen. http://doris.incubator.apache.org/master/zh-CN/developer-guide/d

[GitHub] [incubator-doris] decster commented on issue #3442: [Memory Engine] Add MemTablet type to TabletMeta

2020-05-03 Thread GitBox
decster commented on issue #3442: URL: https://github.com/apache/incubator-doris/issues/3442#issuecomment-623112875 > i.e. olap engine have aggr/uniq/duplicate model, while this storage engine only have standard table+primary key semantics More about how the memory engine data model

[GitHub] [incubator-doris] decster commented on issue #3442: [Memory Engine] Add MemTablet type to TabletMeta

2020-05-03 Thread GitBox
decster commented on issue #3442: URL: https://github.com/apache/incubator-doris/issues/3442#issuecomment-623109292 The original design is to reuse the existing property `storage_medium = memory` and data is persistent on SSD, this introduces little change, it won't change the syntax or a

[incubator-doris] branch master updated: Fix build failure after binutils-dev 2.34 (#3449)

2020-05-03 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/incubator-doris.git The following commit(s) were added to refs/heads/master by this push: new d948af6 Fix build failure after bi

[incubator-doris] branch master updated: [UT] Fix UT bug (#3456)

2020-05-03 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/incubator-doris.git The following commit(s) were added to refs/heads/master by this push: new da4d2d2 [UT] Fix UT bug (#3456) da

[GitHub] [incubator-doris] morningman commented on a change in pull request #3453: Support simple transitivity on join predicate pushdown

2020-05-03 Thread GitBox
morningman commented on a change in pull request #3453: URL: https://github.com/apache/incubator-doris/pull/3453#discussion_r419065058 ## File path: fe/src/main/java/org/apache/doris/planner/SingleNodePlanner.java ## @@ -1347,6 +1349,45 @@ private PlanNode createScanNode(Analyz