[GitHub] [incubator-doris] WingsGo commented on issue #4876: 【bug】0.12.21版本,schema change(varcahr -> int)失败

2020-11-12 Thread GitBox
WingsGo commented on issue #4876: URL: https://github.com/apache/incubator-doris/issues/4876#issuecomment-725913126 官方文档都是最新的版本,你可以测试一下0.13版本,应该已经支持了 This is an automated message from the Apache Git Service. To respond to th

[GitHub] [incubator-doris] morningman commented on pull request #4879: [Profile][UT] Fix UT and remove useless profile

2020-11-12 Thread GitBox
morningman commented on pull request #4879: URL: https://github.com/apache/incubator-doris/pull/4879#issuecomment-725924437 Quick merge to fix UT. NewDorisTest failed because another problem, will be fixed later. This is a

[GitHub] [incubator-doris] morningman merged pull request #4879: [Profile][UT] Fix UT and remove useless profile

2020-11-12 Thread GitBox
morningman merged pull request #4879: URL: https://github.com/apache/incubator-doris/pull/4879 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL abov

[incubator-doris] branch master updated (9786736 -> e992310)

2020-11-12 Thread morningman
This is an automated email from the ASF dual-hosted git repository. morningman pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/incubator-doris.git. from 9786736 Revert "[FEATURE]Check date type to avoid scan all partitions (#4756)" (#4877) add e99231

[GitHub] [incubator-doris] xinyiZzz opened a new pull request #4881: [Bug] Fix bug introduced by split RowsDelFiltered profile

2020-11-12 Thread GitBox
xinyiZzz opened a new pull request #4881: URL: https://github.com/apache/incubator-doris/pull/4881 ## Proposed changes bug introduced from pr #4825 ## Types of changes - [x] Bugfix (non-breaking change which fixes an issue)

[GitHub] [incubator-doris] morningman commented on a change in pull request #4881: [Bug] Fix bug introduced by split RowsDelFiltered profile

2020-11-12 Thread GitBox
morningman commented on a change in pull request #4881: URL: https://github.com/apache/incubator-doris/pull/4881#discussion_r521926003 ## File path: be/src/olap/rowset/beta_rowset_reader.h ## @@ -48,7 +48,7 @@ class BetaRowsetReader : public RowsetReader { RowsetSharedPt

[GitHub] [incubator-doris] xinghuayu007 commented on a change in pull request #4863: [New Feature]Support udf when loading data

2020-11-12 Thread GitBox
xinghuayu007 commented on a change in pull request #4863: URL: https://github.com/apache/incubator-doris/pull/4863#discussion_r521935026 ## File path: fe/fe-core/src/main/java/org/apache/doris/load/loadv2/BulkLoadJob.java ## @@ -324,7 +329,7 @@ public void readFields(DataInput

[GitHub] [incubator-doris] xinyiZzz commented on a change in pull request #4881: [Bug] Fix bug introduced by split RowsDelFiltered profile

2020-11-12 Thread GitBox
xinyiZzz commented on a change in pull request #4881: URL: https://github.com/apache/incubator-doris/pull/4881#discussion_r521970540 ## File path: be/src/olap/rowset/beta_rowset_reader.h ## @@ -48,7 +48,7 @@ class BetaRowsetReader : public RowsetReader { RowsetSharedPtr

[GitHub] [incubator-doris] weizuo93 opened a new issue #4882: [Proposal] Execute 'pick rowsets' before applying for permits for a compaction task

2020-11-12 Thread GitBox
weizuo93 opened a new issue #4882: URL: https://github.com/apache/incubator-doris/issues/4882 The current compaction mechanism is that there is a producer thread that has been producing compaction tasks, and the selected tablet must apply for `permits`. When a tablet could hold `permits`,

[GitHub] [incubator-doris] ccoffline commented on issue #4856: [Bug] failed to get tablet. reason=tablet does not exist

2020-11-12 Thread GitBox
ccoffline commented on issue #4856: URL: https://github.com/apache/incubator-doris/issues/4856#issuecomment-725984236 @morningman Could you please be more specific? I have 1 FE and 5 BE, having sql below ```sql CREATE DATABASE IF NOT EXISTS `test`; USE `test`; DROP TABLE IF EXIS

[GitHub] [incubator-doris] wangbo opened a new issue #4883: [BUG][BITMAP]Java Version BitmapValue deserialized failed when only has 32-bit bitmap

2020-11-12 Thread GitBox
wangbo opened a new issue #4883: URL: https://github.com/apache/incubator-doris/issues/4883 **Describe the bug** 1. add elements to ```org.apache.doris.load.loadv2.dpp.BitmapValue``` which 32-bit bitmap is enough to store 2. Serialize ```BitmapValue```, and then deserialize it will be

[GitHub] [incubator-doris] wangbo opened a new pull request #4884: (#4883) Java Version BitmapValue deserialized failed

2020-11-12 Thread GitBox
wangbo opened a new pull request #4884: URL: https://github.com/apache/incubator-doris/pull/4884 Proposed changes - [x] Bugfix (non-breaking change which fixes an issue) ## Checklist - [x] I have create an issue on (Fix #4883), and have described the bug/feature there i

[GitHub] [incubator-doris] morningman opened a new pull request #4885: [Optimize] Send fragments in batch to reduce RPC

2020-11-12 Thread GitBox
morningman opened a new pull request #4885: URL: https://github.com/apache/incubator-doris/pull/4885 ## Proposed changes This CL mainly changes: 1. Send and execute Fragments in batch In the previous implementation, a SQL execution plan may generate multiple Fragmen

[GitHub] [incubator-doris] HappenLee opened a new issue #4886: [Bug] Daily Test Failed Because of nested Stmt WithClause be replace by parent

2020-11-12 Thread GitBox
HappenLee opened a new issue #4886: URL: https://github.com/apache/incubator-doris/issues/4886 **Describe the bug** quey : ```select 1 from (with w as (select 1 from baseall where exists (select 1 from baseall)) select 1 from w ) tt;``` failed message : ```Unknown tab

[GitHub] [incubator-doris] HappenLee opened a new pull request #4887: [Bug] Fix bug #4886 and #4586 by refactoring code of method 'getDbs'

2020-11-12 Thread GitBox
HappenLee opened a new pull request #4887: URL: https://github.com/apache/incubator-doris/pull/4887 ## Proposed changes fix issue #4886 ## Types of changes What types of changes does your code introduce to Doris? _Put an `x` in the boxes that apply_ - [x] Bugfi

[GitHub] [incubator-doris] stalary opened a new issue #4888: [BUG] isDecommissioned be capacity caculate error

2020-11-12 Thread GitBox
stalary opened a new issue #4888: URL: https://github.com/apache/incubator-doris/issues/4888 **Describe the bug** isDecommissioned be capacity caculate error. I use containerized deployment of BE nodes, both using the same distributed disk. When doing data migration, the current l

[GitHub] [incubator-doris] stalary opened a new pull request #4889: MOD: modify isDecommissioned be capacity calculate rule

2020-11-12 Thread GitBox
stalary opened a new pull request #4889: URL: https://github.com/apache/incubator-doris/pull/4889 ## Proposed changes I use containerized deployment of BE nodes, both using the same distributed disk. When doing data migration, the current logic will lead to errors. For example, my d

[GitHub] [incubator-doris] e0c9 opened a new pull request #4890: [Refactor] Remove break label for readability

2020-11-12 Thread GitBox
e0c9 opened a new pull request #4890: URL: https://github.com/apache/incubator-doris/pull/4890 ## Types of changes What types of changes does your code introduce to Doris? _Put an `x` in the boxes that apply_ - [] Bugfix (non-breaking change which fixes an issue)

[GitHub] [incubator-doris] weizuo93 opened a new pull request #4891: [Optimize] Execute 'pick rowsets' before applying for permits for a compaction task

2020-11-12 Thread GitBox
weizuo93 opened a new pull request #4891: URL: https://github.com/apache/incubator-doris/pull/4891 ## Proposed changes The current compaction mechanism is that there is a producer thread that has been producing compaction tasks, and the selected tablet must apply for `permits`. When

[GitHub] [incubator-doris] wangbo commented on a change in pull request #3025: Restructure storage type to support complex types expending

2020-11-12 Thread GitBox
wangbo commented on a change in pull request #3025: URL: https://github.com/apache/incubator-doris/pull/3025#discussion_r522136742 ## File path: be/test/olap/rowset/segment_v2/column_reader_writer_test.cpp ## @@ -215,17 +216,224 @@ void test_nullable_data(uint8_t* src_data, uin

[GitHub] [incubator-doris] wangbo commented on a change in pull request #3025: Restructure storage type to support complex types expending

2020-11-12 Thread GitBox
wangbo commented on a change in pull request #3025: URL: https://github.com/apache/incubator-doris/pull/3025#discussion_r522136742 ## File path: be/test/olap/rowset/segment_v2/column_reader_writer_test.cpp ## @@ -215,17 +216,224 @@ void test_nullable_data(uint8_t* src_data, uin

[GitHub] [incubator-doris] stalary closed issue #4855: Can be routing rule matching be supported when create tables

2020-11-12 Thread GitBox
stalary closed issue #4855: URL: https://github.com/apache/incubator-doris/issues/4855 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

[GitHub] [incubator-doris] ningyanhui opened a new issue #4892: 物理机环境 源码编译报错

2020-11-12 Thread GitBox
ningyanhui opened a new issue #4892: URL: https://github.com/apache/incubator-doris/issues/4892 Scanning dependencies of target Common [ 1%] Building CXX object src/common/CMakeFiles/Common.dir/daemon.cpp.o [ 1%] Building CXX object src/common/CMakeFiles/Common.dir/status.cpp.o [

[GitHub] [incubator-doris] HappenLee commented on issue #4892: 物理机环境 源码编译报错

2020-11-12 Thread GitBox
HappenLee commented on issue #4892: URL: https://github.com/apache/incubator-doris/issues/4892#issuecomment-726489526 Hi,you can use Docker to compile Doris eazily, This is the way we strongly recommend. If you need a binary of Doris, you can find it in link:https://github.com/bai

[GitHub] [incubator-doris] ningyanhui commented on issue #4892: 物理机环境 源码编译报错

2020-11-12 Thread GitBox
ningyanhui commented on issue #4892: URL: https://github.com/apache/incubator-doris/issues/4892#issuecomment-726491923 > Hi,you can use Docker to compile Doris eazily, This is the way we strongly recommend. > > If you need a binary of Doris, you can find it in link:https://github.c

[GitHub] [incubator-doris] morningman merged pull request #4887: [Bug] Fix bug #4886 and #4586 by refactoring code of method 'getDbs'

2020-11-12 Thread GitBox
morningman merged pull request #4887: URL: https://github.com/apache/incubator-doris/pull/4887 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL abov

[incubator-doris] branch master updated (e992310 -> 69c422e)

2020-11-12 Thread morningman
This is an automated email from the ASF dual-hosted git repository. morningman pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/incubator-doris.git. from e992310 [Profile][UT] Fix UT and remove useless profile (#4879) add 69c422e [Bug] Fix bug #4886 a

[GitHub] [incubator-doris] HappenLee commented on issue #4892: 物理机环境 源码编译报错

2020-11-12 Thread GitBox
HappenLee commented on issue #4892: URL: https://github.com/apache/incubator-doris/issues/4892#issuecomment-726494844 > Sorry, company does not recommend deploying docker environment You just compile binary of Doris in Docker, no need deploying docker environment. You can copy the b

[GitHub] [incubator-doris] weizuo93 opened a new pull request #4893: [Metrics][LOG] Add metrics for compaction permits and log for merge rowsets

2020-11-12 Thread GitBox
weizuo93 opened a new pull request #4893: URL: https://github.com/apache/incubator-doris/pull/4893 ## Proposed changes 1. Add metrics to `used permits` and `waitting permits` for compaction. It would be useful to monitor `permits` hold by all executing compaction tasks and waitting

[GitHub] [incubator-doris] ningyanhui commented on issue #4892: 物理机环境 源码编译报错

2020-11-12 Thread GitBox
ningyanhui commented on issue #4892: URL: https://github.com/apache/incubator-doris/issues/4892#issuecomment-726521212 > > Sorry, company does not recommend deploying docker environment > > You just compile binary of Doris in Docker, no need deploying docker environment. You can cop

[GitHub] [incubator-doris] wyndia opened a new issue #4894: Colocate Join时部分Instance的可用内存与exec_mem_limit参数不一致

2020-11-12 Thread GitBox
wyndia opened a new issue #4894: URL: https://github.com/apache/incubator-doris/issues/4894 ## 问题描述 Doris版本:[DORIS-0.13.9-release](https://github.com/baidu-doris/incubator-doris/releases/tag/DORIS-0.13.9-release) 集群信息:15台节点(16核,32线程,64GRAM),其中一台BE与FE混部。 问题:使用Colocate Jo

[GitHub] [incubator-doris] wangbo closed pull request #4109: [Spark Load] add job granularity global dict lock

2020-11-12 Thread GitBox
wangbo closed pull request #4109: URL: https://github.com/apache/incubator-doris/pull/4109 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