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
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
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
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
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
--
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
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
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
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.