[GitHub] [incubator-doris] EmmyMiao87 edited a comment on issue #7789: [Bug] 0.15.1导出hdfs报错

2022-01-18 Thread GitBox
EmmyMiao87 edited a comment on issue #7789: URL: https://github.com/apache/incubator-doris/issues/7789#issuecomment-1015174532 1. create table unique_table (k1 int, k2 int) unique key(k1) distributed by hash(k1); 2. EXPORT TABLE unique_table TO "hdfs://xxx:9000/xxx" WITH BROKER "xxx" (

[GitHub] [incubator-doris] EmmyMiao87 commented on issue #7789: [Bug] 0.15.1导出hdfs报错

2022-01-18 Thread GitBox
EmmyMiao87 commented on issue #7789: URL: https://github.com/apache/incubator-doris/issues/7789#issuecomment-1015174532 1. create table unique_table (k1 int, k2 int) unique key(k1) distributed by hash(k1); 2. EXPORT TABLE unique_table TO "hdfs://xxx:9000/xxx" WITH BROKER "xxx" ("userna

[GitHub] [incubator-doris] yiguolei commented on issue #7502: Doris Roadmap 2022

2022-01-18 Thread GitBox
yiguolei commented on issue #7502: URL: https://github.com/apache/incubator-doris/issues/7502#issuecomment-1015182922 Could use vectorized method to optimize load process?? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and

[GitHub] [incubator-doris] huzk8 closed pull request #6747: feat: use json format to improve spark connector sink compatibility

2022-01-18 Thread GitBox
huzk8 closed pull request #6747: URL: https://github.com/apache/incubator-doris/pull/6747 -- 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 unsubscribe, e-mail: commits-

[GitHub] [incubator-doris] i7xh commented on issue #7502: Doris Roadmap 2022

2022-01-18 Thread GitBox
i7xh commented on issue #7502: URL: https://github.com/apache/incubator-doris/issues/7502#issuecomment-1015191906 Why Doris need push based query engine? -- 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

[GitHub] [incubator-doris] i7xh edited a comment on issue #7502: Doris Roadmap 2022

2022-01-18 Thread GitBox
i7xh edited a comment on issue #7502: URL: https://github.com/apache/incubator-doris/issues/7502#issuecomment-1015191906 Why Doris need push based query execution engine? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and u

[GitHub] [incubator-doris] zbtzbtzbt opened a new pull request #7790: [Doc] add documents for bitwise functions

2022-01-18 Thread GitBox
zbtzbtzbt opened a new pull request #7790: URL: https://github.com/apache/incubator-doris/pull/7790 # Proposed changes Issue Number: close #xxx ## Problem Summary: Describe the overview of changes. ## Checklist(Required) 1. Does it affect the original behav

[GitHub] [incubator-doris] yiguolei commented on issue #7502: Doris Roadmap 2022

2022-01-18 Thread GitBox
yiguolei commented on issue #7502: URL: https://github.com/apache/incubator-doris/issues/7502#issuecomment-1015197025 @i7xh Two example: 1. Currently doris‘s concurrency control is based on tablet, one tablet ---> exec fragment, there is only one thread to deal with the data at que

[GitHub] [incubator-doris] zuochunwei opened a new pull request #7791: (refactor) (olap) refactor SegmentIterator

2022-01-18 Thread GitBox
zuochunwei opened a new pull request #7791: URL: https://github.com/apache/incubator-doris/pull/7791 # Proposed changes 1. BitmapRangeIterator refactor, avoid new/delete, reduce check condition 2. modify evaluate_vec, avoid set and check new_flags out of block_column_predicate->evalua

[GitHub] [incubator-doris] BiteTheDDDDt opened a new issue #7792: [Feature][Vectorized] support function topn && remove some unused code

2022-01-18 Thread GitBox
BiteThet opened a new issue #7792: URL: https://github.com/apache/incubator-doris/issues/7792 ### Search before asking - [X] I had searched in the [issues](https://github.com/apache/incubator-doris/issues?q=is%3Aissue) and found no similar issues. ### Description

[GitHub] [incubator-doris] BiteTheDDDDt opened a new pull request #7793: [Feature][Vectorized] support function topn && remove some unused code

2022-01-18 Thread GitBox
BiteThet opened a new pull request #7793: URL: https://github.com/apache/incubator-doris/pull/7793 # Proposed changes Issue Number: close #7792 ## Problem Summary: Describe the overview of changes. ## Checklist(Required) 1. Does it affect the original b

[GitHub] [incubator-doris] zenoyang opened a new issue #7794: [Enhancement](Vectorized) optimize SegmentIterator predication evaluate

2022-01-18 Thread GitBox
zenoyang opened a new issue #7794: URL: https://github.com/apache/incubator-doris/issues/7794 ### Search before asking - [X] I had searched in the [issues](https://github.com/apache/incubator-doris/issues?q=is%3Aissue) and found no similar issues. ### Description -

[GitHub] [incubator-doris] zenoyang opened a new pull request #7795: [Improvement](Vectorized) optimize SegmentIterator predication evaluate

2022-01-18 Thread GitBox
zenoyang opened a new pull request #7795: URL: https://github.com/apache/incubator-doris/pull/7795 # Proposed changes Issue Number: #7794 1. Using SIMD to speed up rowid selection 2. Use `make_unique` instead of reset 3. `block->clear_column_data()` removes the for loop

[GitHub] [incubator-doris] wangbo commented on a change in pull request #7795: [Improvement](Vectorized) optimize SegmentIterator predication evaluate

2022-01-18 Thread GitBox
wangbo commented on a change in pull request #7795: URL: https://github.com/apache/incubator-doris/pull/7795#discussion_r786766718 ## File path: be/src/olap/rowset/segment_v2/segment_iterator.cpp ## @@ -671,7 +673,7 @@ void SegmentIterator::_vec_init_lazy_materialization() {

[GitHub] [incubator-doris] wangbo commented on a change in pull request #7795: [Improvement](Vectorized) optimize SegmentIterator predication evaluate

2022-01-18 Thread GitBox
wangbo commented on a change in pull request #7795: URL: https://github.com/apache/incubator-doris/pull/7795#discussion_r786808199 ## File path: be/src/olap/rowset/segment_v2/segment_iterator.cpp ## @@ -807,10 +809,31 @@ void SegmentIterator::_evaluate_vectorization_predicate(

[GitHub] [incubator-doris] wangbo opened a new pull request #7796: [Vectorized][Enhancement] SIMD fill sel_rowid_idx

2022-01-18 Thread GitBox
wangbo opened a new pull request #7796: URL: https://github.com/apache/incubator-doris/pull/7796 # Proposed changes A very simple fix. ## Problem Summary: Describe the overview of changes. ## Checklist(Required) 1. Does it affect the original behavior: (Yes

[incubator-doris-website] branch master updated: update cron-deploy-website.yml

2022-01-18 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-website.git The following commit(s) were added to refs/heads/master by this push: new 25fc693 update cron-deploy

[GitHub] [incubator-doris] JNSimba commented on pull request #7457: [Feature][flink-connector] support flink delete option

2022-01-18 Thread GitBox
JNSimba commented on pull request #7457: URL: https://github.com/apache/incubator-doris/pull/7457#issuecomment-1015552412 only when it is judged to be a unique model, perform the delete operation. -- This is an automated message from the Apache Git Service. To respond to the message, plea

[GitHub] [incubator-doris] zenoyang commented on a change in pull request #7795: [Improvement](Vectorized) optimize SegmentIterator predication evaluate

2022-01-18 Thread GitBox
zenoyang commented on a change in pull request #7795: URL: https://github.com/apache/incubator-doris/pull/7795#discussion_r787336118 ## File path: be/src/olap/rowset/segment_v2/segment_iterator.cpp ## @@ -671,7 +673,7 @@ void SegmentIterator::_vec_init_lazy_materialization() {

[GitHub] [incubator-doris] zenoyang commented on a change in pull request #7795: [Improvement](Vectorized) optimize SegmentIterator predication evaluate

2022-01-18 Thread GitBox
zenoyang commented on a change in pull request #7795: URL: https://github.com/apache/incubator-doris/pull/7795#discussion_r787336407 ## File path: be/src/olap/rowset/segment_v2/segment_iterator.cpp ## @@ -807,10 +809,31 @@ void SegmentIterator::_evaluate_vectorization_predicat

[GitHub] [incubator-doris] morningman merged pull request #7773: [fix][chore](thrift) Fix warning when generate cpp code by thrift IDL file and use strict mode

2022-01-18 Thread GitBox
morningman merged pull request #7773: URL: https://github.com/apache/incubator-doris/pull/7773 -- 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 unsubscribe, e-mail: com

[GitHub] [incubator-doris] morningman closed issue #7765: [Bug] if the query based on a column that with index, the result does not meet the expectation

2022-01-18 Thread GitBox
morningman closed issue #7765: URL: https://github.com/apache/incubator-doris/issues/7765 -- 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 unsubscribe, e-mail: commits-

[GitHub] [incubator-doris] morningman merged pull request #7788: [fix](bitmap-index) Fix bug that bitmap index may return wrong result.

2022-01-18 Thread GitBox
morningman merged pull request #7788: URL: https://github.com/apache/incubator-doris/pull/7788 -- 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 unsubscribe, e-mail: com

[GitHub] [incubator-doris] wangbo commented on a change in pull request #7795: [Improvement](Vectorized) optimize SegmentIterator predication evaluate

2022-01-18 Thread GitBox
wangbo commented on a change in pull request #7795: URL: https://github.com/apache/incubator-doris/pull/7795#discussion_r787345637 ## File path: be/src/olap/rowset/segment_v2/segment_iterator.cpp ## @@ -671,7 +673,7 @@ void SegmentIterator::_vec_init_lazy_materialization() {

[incubator-doris] branch master updated (5fc0a9f -> aacbc96)

2022-01-18 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 5fc0a9f [improvement](Load) Cancel the load job ASAP when encounter unqualified data (#6319) add

[incubator-doris] branch master updated (aacbc96 -> 7574d39)

2022-01-18 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 aacbc96 [fix][chore](thrift) Fix warning when generate cpp code by thrift IDL file and use strict mode