[GitHub] [incubator-doris] kangpinghuang opened a new pull request #1379: Add rle page 2

2019-06-25 Thread GitBox
kangpinghuang opened a new pull request #1379: Add rle page 2 URL: https://github.com/apache/incubator-doris/pull/1379 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitH

[GitHub] [incubator-doris] morningman opened a new pull request #1380: Fix publish version task timeout

2019-06-25 Thread GitBox
morningman opened a new pull request #1380: Fix publish version task timeout URL: https://github.com/apache/incubator-doris/pull/1380 Publish version task using wrong timeout config. This is an automated message from the Apach

[GitHub] [incubator-doris] imay merged pull request #1380: Fix publish version task timeout

2019-06-25 Thread GitBox
imay merged pull request #1380: Fix publish version task timeout URL: https://github.com/apache/incubator-doris/pull/1380 This is an automated message from the Apache Git Service. To respond to the message, please log on to G

[GitHub] [incubator-doris] morningman opened a new pull request #1381: Fix column nullable property in show create table stmt result

2019-06-26 Thread GitBox
morningman opened a new pull request #1381: Fix column nullable property in show create table stmt result URL: https://github.com/apache/incubator-doris/pull/1381 Since the default nullable of a column changed to NOT NULL, result of show table stmt should show the correct nullable proper

[GitHub] [incubator-doris] imay opened a new issue #1382: Add StorageRowIterator to uniform read in storage

2019-06-26 Thread GitBox
imay opened a new issue #1382: Add StorageRowIterator to uniform read in storage URL: https://github.com/apache/incubator-doris/issues/1382 Currently in storage engine, there is too many interface to read data. Including followings 1. SegmentReader which is used to read data from Se

[GitHub] [incubator-doris] wuyunfeng opened a new pull request #1383: Modify some method for external invoking and add extra sink

2019-06-26 Thread GitBox
wuyunfeng opened a new pull request #1383: Modify some method for external invoking and add extra sink URL: https://github.com/apache/incubator-doris/pull/1383 This is an automated message from the Apache Git Service. To res

[GitHub] [incubator-doris] imay opened a new issue #1384: Add new SegmentIterator

2019-06-26 Thread GitBox
imay opened a new issue #1384: Add new SegmentIterator URL: https://github.com/apache/incubator-doris/issues/1384 according to #1382 , we should implement a new `SegmetIterator` for new format segment. This class will leverage statistics information and bloom filter to reduce data load.

[GitHub] [incubator-doris] imay opened a new issue #1385: Add SegmentWriter for new format segment

2019-06-26 Thread GitBox
imay opened a new issue #1385: Add SegmentWriter for new format segment URL: https://github.com/apache/incubator-doris/issues/1385 We should create a new SegmentWriter to write data in new format. This will arrange all kinds of data into one file. These include 1. Column data. 2

[GitHub] [incubator-doris] imay opened a new issue #1386: Add new SegmentGroupIterator

2019-06-26 Thread GitBox
imay opened a new issue #1386: Add new SegmentGroupIterator URL: https://github.com/apache/incubator-doris/issues/1386 Now we have SegmentGroup who have some segments, and these segment is ordered. And we have another class named Rowset who is container of SegmentGroup. But I think we can

[GitHub] [incubator-doris] imay opened a new issue #1387: Add new SegmentGroupWriter

2019-06-26 Thread GitBox
imay opened a new issue #1387: Add new SegmentGroupWriter URL: https://github.com/apache/incubator-doris/issues/1387 This class is same as CoumnDataWriter. we create one in order to not modify origin code. This class will write data into ordered segments in new format. This class wil

[GitHub] [incubator-doris] imay opened a new issue #1388: Add new ShortKeyIndexBuilder

2019-06-26 Thread GitBox
imay opened a new issue #1388: Add new ShortKeyIndexBuilder URL: https://github.com/apache/incubator-doris/issues/1388 In current code, short key index is written to file directly. In new format version, index will written into segment file. So we need a ShortKeyIndexBuilder which will enc

[GitHub] [incubator-doris] imay opened a new issue #1389: Support bloom filter in new format segment

2019-06-26 Thread GitBox
imay opened a new issue #1389: Support bloom filter in new format segment URL: https://github.com/apache/incubator-doris/issues/1389 We should support bloom filter in new format segment, so we can convert old data into new format without impact query's performance. This will add Bloo

[GitHub] [incubator-doris] imay opened a new issue #1390: Support zone map for column

2019-06-26 Thread GitBox
imay opened a new issue #1390: Support zone map for column URL: https://github.com/apache/incubator-doris/issues/1390 we should support zone map for column include min/max value for column page. When scan data, we can use this information to eliminate data loading. We should add a Zo

[GitHub] [incubator-doris] imay opened a new issue #1391: Add column page cache

2019-06-26 Thread GitBox
imay opened a new issue #1391: Add column page cache URL: https://github.com/apache/incubator-doris/issues/1391 We should add column page cache which can help use reduce our CPU/IO use when read same column data. #1305 ---

[GitHub] [incubator-doris] imay opened a new issue #1392: Support column page compress

2019-06-26 Thread GitBox
imay opened a new issue #1392: Support column page compress URL: https://github.com/apache/incubator-doris/issues/1392 we should support page compress. for example plain binary encode page, we can use compress to make it smaller in size. #1305 --

[GitHub] [incubator-doris] kangkaisen opened a new issue #1393: Schema change job could not finished

2019-06-26 Thread GitBox
kangkaisen opened a new issue #1393: Schema change job could not finished URL: https://github.com/apache/incubator-doris/issues/1393 **Describe the bug** Just now, our user found a schema change job run a long time: ![image](https://user-images.githubusercontent.com/9894906/60170981-3

[GitHub] [incubator-doris] kangkaisen opened a new pull request #1394: Fix schema change clear alter task could not finish bug

2019-06-26 Thread GitBox
kangkaisen opened a new pull request #1394: Fix schema change clear alter task could not finish bug URL: https://github.com/apache/incubator-doris/pull/1394 For https://github.com/apache/incubator-doris/issues/1393 This is an

[GitHub] [incubator-doris] imay opened a new issue #1395: Make new format work with old format

2019-06-26 Thread GitBox
imay opened a new issue #1395: Make new format work with old format URL: https://github.com/apache/incubator-doris/issues/1395 This work will make all new format work compatible with old code. Then we can create table which will use new format. Output of compaction will be generated in new

[GitHub] [incubator-doris] morningman opened a new pull request #1396: Add a website builder of Doris documentations

2019-06-26 Thread GitBox
morningman opened a new pull request #1396: Add a website builder of Doris documentations URL: https://github.com/apache/incubator-doris/pull/1396 The build script locates in docs/website. Built with Sphinx using a theme provided by Read the Docs. ---

[GitHub] [incubator-doris] morningman merged pull request #1381: Fix column nullable property in show create table stmt result

2019-06-26 Thread GitBox
morningman merged pull request #1381: Fix column nullable property in show create table stmt result URL: https://github.com/apache/incubator-doris/pull/1381 This is an automated message from the Apache Git Service. To respon

[GitHub] [incubator-doris] imay merged pull request #1396: Add a website builder of Doris documentations

2019-06-26 Thread GitBox
imay merged pull request #1396: Add a website builder of Doris documentations URL: https://github.com/apache/incubator-doris/pull/1396 This is an automated message from the Apache Git Service. To respond to the message, pleas

[GitHub] [incubator-doris] imay merged pull request #1383: Modify some method for external invoking and add extra sink

2019-06-26 Thread GitBox
imay merged pull request #1383: Modify some method for external invoking and add extra sink URL: https://github.com/apache/incubator-doris/pull/1383 This is an automated message from the Apache Git Service. To respond to the

[GitHub] [incubator-doris] kangkaisen closed pull request #1394: Fix schema change clear alter task could not finish bug

2019-06-26 Thread GitBox
kangkaisen closed pull request #1394: Fix schema change clear alter task could not finish bug URL: https://github.com/apache/incubator-doris/pull/1394 This is an automated message from the Apache Git Service. To respond to t

[GitHub] [incubator-doris] gaodayue commented on a change in pull request #1379: Add rle page

2019-06-26 Thread GitBox
gaodayue commented on a change in pull request #1379: Add rle page URL: https://github.com/apache/incubator-doris/pull/1379#discussion_r297617809 ## File path: be/src/olap/rowset/segment_v2/rle_page.h ## @@ -0,0 +1,255 @@ +// Licensed to the Apache Software Foundation (ASF)

[GitHub] [incubator-doris] gaodayue commented on a change in pull request #1379: Add rle page

2019-06-26 Thread GitBox
gaodayue commented on a change in pull request #1379: Add rle page URL: https://github.com/apache/incubator-doris/pull/1379#discussion_r297619170 ## File path: be/src/olap/rowset/segment_v2/rle_page.h ## @@ -0,0 +1,255 @@ +// Licensed to the Apache Software Foundation (ASF)

[GitHub] [incubator-doris] kangpinghuang opened a new pull request #1397: fix garbage collect bug

2019-06-26 Thread GitBox
kangpinghuang opened a new pull request #1397: fix garbage collect bug URL: https://github.com/apache/incubator-doris/pull/1397 This is an automated message from the Apache Git Service. To respond to the message, please log o

[GitHub] [incubator-doris] gaodayue commented on a change in pull request #1379: Add rle page

2019-06-26 Thread GitBox
gaodayue commented on a change in pull request #1379: Add rle page URL: https://github.com/apache/incubator-doris/pull/1379#discussion_r297644227 ## File path: be/src/olap/types.cpp ## @@ -62,6 +62,7 @@ TypeInfoResolver::TypeInfoResolver() { add_mapping(); add_map

[GitHub] [incubator-doris] gaodayue commented on a change in pull request #1379: Add rle page

2019-06-26 Thread GitBox
gaodayue commented on a change in pull request #1379: Add rle page URL: https://github.com/apache/incubator-doris/pull/1379#discussion_r297633133 ## File path: be/src/olap/rowset/segment_v2/rle_page.h ## @@ -0,0 +1,255 @@ +// Licensed to the Apache Software Foundation (ASF)

[GitHub] [incubator-doris] gaodayue opened a new pull request #1398: Fix a bug of v2 ColumnReader when reading not-null column

2019-06-26 Thread GitBox
gaodayue opened a new pull request #1398: Fix a bug of v2 ColumnReader when reading not-null column URL: https://github.com/apache/incubator-doris/pull/1398 This is an automated message from the Apache Git Service. To respon

[GitHub] [incubator-doris] zhaomingzhu opened a new issue #1399: llvm 无法编译

2019-06-26 Thread GitBox
zhaomingzhu opened a new issue #1399: llvm 无法编译 URL: https://github.com/apache/incubator-doris/issues/1399 环境: 1)OS centos7.2 2)gcc --version gcc (GCC) 5.4.0 3)cmake --version cmake version 3.4.3 3)rpm -qa|grep libstdc **libstdc++-devel-4.8.5-36.el7.x86_64 libstdc++-4

[GitHub] [incubator-doris] imay commented on issue #1399: llvm 无法编译

2019-06-26 Thread GitBox
imay commented on issue #1399: llvm 无法编译 URL: https://github.com/apache/incubator-doris/issues/1399#issuecomment-505913192 0.9.0是老版本了,建议使用0.10版本。 还有就是建议使用我们的Docker环境进行编译 This is an automated message from the Apache Git

[GitHub] [incubator-doris] imay merged pull request #1398: Fix a bug of v2 ColumnReader when reading not-null column

2019-06-26 Thread GitBox
imay merged pull request #1398: Fix a bug of v2 ColumnReader when reading not-null column URL: https://github.com/apache/incubator-doris/pull/1398 This is an automated message from the Apache Git Service. To respond to the m

[GitHub] [incubator-doris] yiguolei opened a new pull request #1400: Acquire rs readers at the beginning of the olapscanner

2019-06-26 Thread GitBox
yiguolei opened a new pull request #1400: Acquire rs readers at the beginning of the olapscanner URL: https://github.com/apache/incubator-doris/pull/1400 This is an automated message from the Apache Git Service. To respond t

[GitHub] [incubator-doris] kangpinghuang commented on a change in pull request #1400: Acquire rs readers at the beginning of the olapscanner

2019-06-26 Thread GitBox
kangpinghuang commented on a change in pull request #1400: Acquire rs readers at the beginning of the olapscanner URL: https://github.com/apache/incubator-doris/pull/1400#discussion_r298002733 ## File path: fe/src/main/java/org/apache/doris/common/Config.java ## @@ -483,9

[GitHub] [incubator-doris] kangpinghuang commented on a change in pull request #1400: Acquire rs readers at the beginning of the olapscanner

2019-06-26 Thread GitBox
kangpinghuang commented on a change in pull request #1400: Acquire rs readers at the beginning of the olapscanner URL: https://github.com/apache/incubator-doris/pull/1400#discussion_r298000905 ## File path: be/src/olap/reader.cpp ## @@ -452,7 +452,8 @@ OLAPStatus Reader::_

[GitHub] [incubator-doris] kangpinghuang commented on a change in pull request #1400: Acquire rs readers at the beginning of the olapscanner

2019-06-26 Thread GitBox
kangpinghuang commented on a change in pull request #1400: Acquire rs readers at the beginning of the olapscanner URL: https://github.com/apache/incubator-doris/pull/1400#discussion_r298000144 ## File path: be/src/exec/olap_scanner.cpp ## @@ -474,6 +488,13 @@ Status OlapSc

[GitHub] [incubator-doris] imay commented on a change in pull request #1400: Acquire rs readers at the beginning of the olapscanner

2019-06-26 Thread GitBox
imay commented on a change in pull request #1400: Acquire rs readers at the beginning of the olapscanner URL: https://github.com/apache/incubator-doris/pull/1400#discussion_r298015789 ## File path: be/src/exec/olap_scanner.cpp ## @@ -150,6 +150,20 @@ Status OlapScanner::_i

[GitHub] [incubator-doris] yiguolei commented on a change in pull request #1400: Acquire rs readers at the beginning of the olapscanner

2019-06-26 Thread GitBox
yiguolei commented on a change in pull request #1400: Acquire rs readers at the beginning of the olapscanner URL: https://github.com/apache/incubator-doris/pull/1400#discussion_r298016412 ## File path: fe/src/main/java/org/apache/doris/common/Config.java ## @@ -483,9 +483,

[GitHub] [incubator-doris] yiguolei commented on a change in pull request #1400: Acquire rs readers at the beginning of the olapscanner

2019-06-26 Thread GitBox
yiguolei commented on a change in pull request #1400: Acquire rs readers at the beginning of the olapscanner URL: https://github.com/apache/incubator-doris/pull/1400#discussion_r298016335 ## File path: be/src/exec/olap_scanner.cpp ## @@ -150,6 +150,20 @@ Status OlapScanner

[GitHub] [incubator-doris] yiguolei commented on a change in pull request #1400: Acquire rs readers at the beginning of the olapscanner

2019-06-26 Thread GitBox
yiguolei commented on a change in pull request #1400: Acquire rs readers at the beginning of the olapscanner URL: https://github.com/apache/incubator-doris/pull/1400#discussion_r298016514 ## File path: be/src/olap/reader.cpp ## @@ -452,7 +452,8 @@ OLAPStatus Reader::_captu

[GitHub] [incubator-doris] yiguolei commented on a change in pull request #1400: Acquire rs readers at the beginning of the olapscanner

2019-06-26 Thread GitBox
yiguolei commented on a change in pull request #1400: Acquire rs readers at the beginning of the olapscanner URL: https://github.com/apache/incubator-doris/pull/1400#discussion_r298016738 ## File path: be/src/exec/olap_scanner.cpp ## @@ -474,6 +488,13 @@ Status OlapScanner

[GitHub] [incubator-doris] kangpinghuang commented on a change in pull request #1400: Acquire rs readers at the beginning of the olapscanner

2019-06-26 Thread GitBox
kangpinghuang commented on a change in pull request #1400: Acquire rs readers at the beginning of the olapscanner URL: https://github.com/apache/incubator-doris/pull/1400#discussion_r298018184 ## File path: be/src/olap/reader.cpp ## @@ -452,7 +452,8 @@ OLAPStatus Reader::_

[GitHub] [incubator-doris] imay merged pull request #1400: Acquire rs readers at the beginning of the olapscanner

2019-06-27 Thread GitBox
imay merged pull request #1400: Acquire rs readers at the beginning of the olapscanner URL: https://github.com/apache/incubator-doris/pull/1400 This is an automated message from the Apache Git Service. To respond to the mess

[GitHub] [incubator-doris] chaoyli merged pull request #1397: fix garbage collect bug

2019-06-27 Thread GitBox
chaoyli merged pull request #1397: fix garbage collect bug URL: https://github.com/apache/incubator-doris/pull/1397 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub

[GitHub] [incubator-doris] morningman opened a new pull request #1401: Add log for unstable table when doing alter job

2019-06-27 Thread GitBox
morningman opened a new pull request #1401: Add log for unstable table when doing alter job URL: https://github.com/apache/incubator-doris/pull/1401 Add a INFO level log when encountering unstable table in alter job This is a

[GitHub] [incubator-doris] kangpinghuang opened a new pull request #1402: Fix gc coredump

2019-06-27 Thread GitBox
kangpinghuang opened a new pull request #1402: Fix gc coredump URL: https://github.com/apache/incubator-doris/pull/1402 This is an automated message from the Apache Git Service. To respond to the message, please log on to Git

[GitHub] [incubator-doris] wuyunfeng opened a new pull request #1403: Add some field for extrernal service

2019-06-27 Thread GitBox
wuyunfeng opened a new pull request #1403: Add some field for extrernal service URL: https://github.com/apache/incubator-doris/pull/1403 This is an automated message from the Apache Git Service. To respond to the message, ple

[GitHub] [incubator-doris] kangpinghuang commented on a change in pull request #1379: Add rle page

2019-06-27 Thread GitBox
kangpinghuang commented on a change in pull request #1379: Add rle page URL: https://github.com/apache/incubator-doris/pull/1379#discussion_r298135072 ## File path: be/src/olap/rowset/segment_v2/rle_page.h ## @@ -0,0 +1,255 @@ +// Licensed to the Apache Software Foundation

[GitHub] [incubator-doris] kangpinghuang commented on a change in pull request #1379: Add rle page

2019-06-27 Thread GitBox
kangpinghuang commented on a change in pull request #1379: Add rle page URL: https://github.com/apache/incubator-doris/pull/1379#discussion_r298135107 ## File path: be/src/olap/rowset/segment_v2/rle_page.h ## @@ -0,0 +1,255 @@ +// Licensed to the Apache Software Foundation

[GitHub] [incubator-doris] kangpinghuang commented on a change in pull request #1379: Add rle page

2019-06-27 Thread GitBox
kangpinghuang commented on a change in pull request #1379: Add rle page URL: https://github.com/apache/incubator-doris/pull/1379#discussion_r298140649 ## File path: be/src/olap/rowset/segment_v2/rle_page.h ## @@ -0,0 +1,255 @@ +// Licensed to the Apache Software Foundation

[GitHub] [incubator-doris] kangpinghuang commented on a change in pull request #1379: Add rle page

2019-06-27 Thread GitBox
kangpinghuang commented on a change in pull request #1379: Add rle page URL: https://github.com/apache/incubator-doris/pull/1379#discussion_r298140673 ## File path: be/src/olap/types.cpp ## @@ -62,6 +62,7 @@ TypeInfoResolver::TypeInfoResolver() { add_mapping(); ad

[GitHub] [incubator-doris] EmmyMiao87 opened a new pull request #1404: Use load job v2 in default

2019-06-27 Thread GitBox
EmmyMiao87 opened a new pull request #1404: Use load job v2 in default URL: https://github.com/apache/incubator-doris/pull/1404 This is an automated message from the Apache Git Service. To respond to the message, please log o

[GitHub] [incubator-doris] EmmyMiao87 opened a new pull request #1405: Get table name from DataSourceInfo instead of DataDesc

2019-06-27 Thread GitBox
EmmyMiao87 opened a new pull request #1405: Get table name from DataSourceInfo instead of DataDesc URL: https://github.com/apache/incubator-doris/pull/1405 This is an automated message from the Apache Git Service. To respond

[GitHub] [incubator-doris] gaodayue commented on issue #1379: Add rle page

2019-06-27 Thread GitBox
gaodayue commented on issue #1379: Add rle page URL: https://github.com/apache/incubator-doris/pull/1379#issuecomment-506347272 LGTM This is an automated message from the Apache Git Service. To respond to the message, please l

[GitHub] [incubator-doris] imay commented on a change in pull request #1404: Use load job v2 in default

2019-06-27 Thread GitBox
imay commented on a change in pull request #1404: Use load job v2 in default URL: https://github.com/apache/incubator-doris/pull/1404#discussion_r298196602 ## File path: fe/src/main/java/org/apache/doris/qe/DdlExecutor.java ## @@ -116,10 +116,10 @@ public static void execut

[GitHub] [incubator-doris] imay merged pull request #1403: Add some field for extrernal service

2019-06-27 Thread GitBox
imay merged pull request #1403: Add some field for extrernal service URL: https://github.com/apache/incubator-doris/pull/1403 This is an automated message from the Apache Git Service. To respond to the message, please log on

[GitHub] [incubator-doris] imay merged pull request #1379: Add rle page

2019-06-27 Thread GitBox
imay merged pull request #1379: Add rle page URL: https://github.com/apache/incubator-doris/pull/1379 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the UR

[GitHub] [incubator-doris] wuyunfeng opened a new pull request #1406: Add schema_hash for TTabletVersionInfo and modify some field name

2019-06-27 Thread GitBox
wuyunfeng opened a new pull request #1406: Add schema_hash for TTabletVersionInfo and modify some field name URL: https://github.com/apache/incubator-doris/pull/1406 TScanRangeParams require the schema_hash This is an automat

[GitHub] [incubator-doris] wuyunfeng closed pull request #1406: Add schema_hash for TTabletVersionInfo and modify some field name

2019-06-27 Thread GitBox
wuyunfeng closed pull request #1406: Add schema_hash for TTabletVersionInfo and modify some field name URL: https://github.com/apache/incubator-doris/pull/1406 This is an automated message from the Apache Git Service. To res

[GitHub] [incubator-doris] EmmyMiao87 opened a new issue #1407: The broker load is cancelled with error 'tablet writer writer failed'

2019-06-27 Thread GitBox
EmmyMiao87 opened a new issue #1407: The broker load is cancelled with error 'tablet writer writer failed' URL: https://github.com/apache/incubator-doris/issues/1407 **Describe the bug** The broker load is cancelled with reason 'tablet writer writer failed'. The olap engine find the exi

[GitHub] [incubator-doris] EmmyMiao87 edited a comment on issue #1407: The broker load is cancelled with error 'tablet writer writer failed'

2019-06-27 Thread GitBox
EmmyMiao87 edited a comment on issue #1407: The broker load is cancelled with error 'tablet writer writer failed' URL: https://github.com/apache/incubator-doris/issues/1407#issuecomment-506586717 Also, I close the compress of snappy. ---

[GitHub] [incubator-doris] EmmyMiao87 commented on issue #1407: The broker load is cancelled with error 'tablet writer writer failed'

2019-06-27 Thread GitBox
EmmyMiao87 commented on issue #1407: The broker load is cancelled with error 'tablet writer writer failed' URL: https://github.com/apache/incubator-doris/issues/1407#issuecomment-506586717 Also, I close the compross of snappy. --

[GitHub] [incubator-doris] kangpinghuang commented on issue #1382: Add StorageRowIterator to uniform read in storage

2019-06-27 Thread GitBox
kangpinghuang commented on issue #1382: Add StorageRowIterator to uniform read in storage URL: https://github.com/apache/incubator-doris/issues/1382#issuecomment-506594469 I think StorageRowwiseIterator is a better name because it returns RowBlock, not a row -

[GitHub] [incubator-doris] kangpinghuang opened a new issue #1408: Add dict encoding page

2019-06-27 Thread GitBox
kangpinghuang opened a new issue #1408: Add dict encoding page URL: https://github.com/apache/incubator-doris/issues/1408 related to #1305 add dict encoding page for binary/string type data. This is an automated messag

[GitHub] [incubator-doris] yiguolei commented on a change in pull request #1401: Add report version for publish task

2019-06-27 Thread GitBox
yiguolei commented on a change in pull request #1401: Add report version for publish task URL: https://github.com/apache/incubator-doris/pull/1401#discussion_r298472317 ## File path: fe/src/main/java/org/apache/doris/master/MasterImpl.java ## @@ -559,9 +559,17 @@ private v

[GitHub] [incubator-doris] kangpinghuang opened a new pull request #1409: Add dict page

2019-06-28 Thread GitBox
kangpinghuang opened a new pull request #1409: Add dict page URL: https://github.com/apache/incubator-doris/pull/1409 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHu

[GitHub] [incubator-doris] HangyuanLiu opened a new pull request #1410: Fix binary plain page relocate bug

2019-06-28 Thread GitBox
HangyuanLiu opened a new pull request #1410: Fix binary plain page relocate bug URL: https://github.com/apache/incubator-doris/pull/1410 Fix binary plain page relocate bug This is an automated message from the Apache Git Servi

[GitHub] [incubator-doris] mccoding opened a new issue #1411: can't connect doris by metabse

2019-06-28 Thread GitBox
mccoding opened a new issue #1411: can't connect doris by metabse URL: https://github.com/apache/incubator-doris/issues/1411 **Describe the bug** can't connect doris by metabse **To Reproduce** Steps to reproduce the behavior: 1. add a new database in metabse 2. you will

[GitHub] [incubator-doris] morningman commented on a change in pull request #1401: Add report version for publish task

2019-06-28 Thread GitBox
morningman commented on a change in pull request #1401: Add report version for publish task URL: https://github.com/apache/incubator-doris/pull/1401#discussion_r298566509 ## File path: fe/src/main/java/org/apache/doris/master/MasterImpl.java ## @@ -559,9 +559,17 @@ private

[GitHub] [incubator-doris] imay merged pull request #1401: Add report version for publish task

2019-06-28 Thread GitBox
imay merged pull request #1401: Add report version for publish task URL: https://github.com/apache/incubator-doris/pull/1401 This is an automated message from the Apache Git Service. To respond to the message, please log on t

[GitHub] [incubator-doris] EmmyMiao87 opened a new pull request #1412: Fix the core in dpp sink by sum of int128

2019-06-28 Thread GitBox
EmmyMiao87 opened a new pull request #1412: Fix the core in dpp sink by sum of int128 URL: https://github.com/apache/incubator-doris/pull/1412 This is an automated message from the Apache Git Service. To respond to the messa

[GitHub] [incubator-doris] imay merged pull request #1412: Fix the core in dpp sink by sum of int128

2019-06-28 Thread GitBox
imay merged pull request #1412: Fix the core in dpp sink by sum of int128 URL: https://github.com/apache/incubator-doris/pull/1412 This is an automated message from the Apache Git Service. To respond to the message, please lo

[GitHub] [incubator-doris] imay merged pull request #1410: Fix binary plain page relocate bug

2019-06-28 Thread GitBox
imay merged pull request #1410: Fix binary plain page relocate bug URL: https://github.com/apache/incubator-doris/pull/1410 This is an automated message from the Apache Git Service. To respond to the message, please log on to

[GitHub] [incubator-doris] imay merged pull request #1404: Use load job v2 in default

2019-06-28 Thread GitBox
imay merged pull request #1404: Use load job v2 in default URL: https://github.com/apache/incubator-doris/pull/1404 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub

[GitHub] [incubator-doris] imay merged pull request #1405: Get table name from DataSourceInfo instead of DataDesc

2019-06-28 Thread GitBox
imay merged pull request #1405: Get table name from DataSourceInfo instead of DataDesc URL: https://github.com/apache/incubator-doris/pull/1405 This is an automated message from the Apache Git Service. To respond to the mess

[GitHub] [incubator-doris] LiangchangZ commented on a change in pull request #1332: Doris sink for Spark Structured Streaming

2019-06-28 Thread GitBox
LiangchangZ commented on a change in pull request #1332: Doris sink for Spark Structured Streaming URL: https://github.com/apache/incubator-doris/pull/1332#discussion_r298788108 ## File path: extension/spark-sink/src/main/resources/META-INF/services/org.apache.spark.sql.sources.Dat

[GitHub] [incubator-doris] LiangchangZ commented on a change in pull request #1332: Doris sink for Spark Structured Streaming

2019-06-28 Thread GitBox
LiangchangZ commented on a change in pull request #1332: Doris sink for Spark Structured Streaming URL: https://github.com/apache/incubator-doris/pull/1332#discussion_r298789848 ## File path: extension/spark-sink/src/main/scala/org/apache/spark/sql/palo/PaloSinkProvider.scala

[GitHub] [incubator-doris] LiangchangZ commented on a change in pull request #1332: Doris sink for Spark Structured Streaming

2019-06-28 Thread GitBox
LiangchangZ commented on a change in pull request #1332: Doris sink for Spark Structured Streaming URL: https://github.com/apache/incubator-doris/pull/1332#discussion_r298790079 ## File path: extension/spark-sink/src/main/scala/org/apache/spark/sql/palo/PaloWriter.scala ##

[GitHub] [incubator-doris] LiangchangZ commented on a change in pull request #1332: Doris sink for Spark Structured Streaming

2019-06-28 Thread GitBox
LiangchangZ commented on a change in pull request #1332: Doris sink for Spark Structured Streaming URL: https://github.com/apache/incubator-doris/pull/1332#discussion_r298790322 ## File path: extension/spark-sink/src/main/scala/org/apache/spark/sql/palo/PaloBulkLoadTask.scala

[GitHub] [incubator-doris] LiangchangZ commented on a change in pull request #1332: Doris sink for Spark Structured Streaming

2019-06-28 Thread GitBox
LiangchangZ commented on a change in pull request #1332: Doris sink for Spark Structured Streaming URL: https://github.com/apache/incubator-doris/pull/1332#discussion_r298790368 ## File path: extension/spark-sink/src/main/scala/org/apache/spark/sql/palo/PaloBulkLoadTask.scala

[GitHub] [incubator-doris] LiangchangZ commented on a change in pull request #1332: Doris sink for Spark Structured Streaming

2019-06-28 Thread GitBox
LiangchangZ commented on a change in pull request #1332: Doris sink for Spark Structured Streaming URL: https://github.com/apache/incubator-doris/pull/1332#discussion_r298790424 ## File path: extension/spark-sink/src/main/scala/org/apache/spark/sql/palo/PaloWriter.scala ##

[GitHub] [incubator-doris] LiangchangZ commented on a change in pull request #1332: Doris sink for Spark Structured Streaming

2019-06-28 Thread GitBox
LiangchangZ commented on a change in pull request #1332: Doris sink for Spark Structured Streaming URL: https://github.com/apache/incubator-doris/pull/1332#discussion_r298790440 ## File path: extension/spark-sink/src/main/scala/org/apache/spark/sql/palo/PaloBulkLoadTask.scala

[GitHub] [incubator-doris] imay opened a new pull request #1413: Add short key index builder, decoder, iterator

2019-06-29 Thread GitBox
imay opened a new pull request #1413: Add short key index builder, decoder, iterator URL: https://github.com/apache/incubator-doris/pull/1413 #1388 This is an automated message from the Apache Git Service. To respond to the

[GitHub] [incubator-doris] morningman opened a new pull request #1414: Collect all documents to Doris code base

2019-06-30 Thread GitBox
morningman opened a new pull request #1414: Collect all documents to Doris code base URL: https://github.com/apache/incubator-doris/pull/1414 Move the documents on Doris GitHub wiki to Doris code base. And all documents since now should be edited and save in Doris code base. ---

[GitHub] [incubator-doris] imay merged pull request #1414: Collect all documents to Doris code base

2019-06-30 Thread GitBox
imay merged pull request #1414: Collect all documents to Doris code base URL: https://github.com/apache/incubator-doris/pull/1414 This is an automated message from the Apache Git Service. To respond to the message, please log

[GitHub] [incubator-doris] chaoyli merged pull request #1402: Fix gc coredump

2019-06-30 Thread GitBox
chaoyli merged pull request #1402: Fix gc coredump URL: https://github.com/apache/incubator-doris/pull/1402 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use

[GitHub] [incubator-doris] EmmyMiao87 opened a new pull request #1415: Change error msg of mini load when PUBLISH_TIMEOUT

2019-06-30 Thread GitBox
EmmyMiao87 opened a new pull request #1415: Change error msg of mini load when PUBLISH_TIMEOUT URL: https://github.com/apache/incubator-doris/pull/1415 This is an automated message from the Apache Git Service. To respond to

[GitHub] [incubator-doris] zhaomingzhu commented on issue #1399: llvm 无法编译

2019-06-30 Thread GitBox
zhaomingzhu commented on issue #1399: llvm 无法编译 URL: https://github.com/apache/incubator-doris/issues/1399#issuecomment-507140831 使用最新版本编译还是报错,不知道问题出在哪 1) In file included from /export/incubator-doris-0.10.0-rc04/be/src/util/bfd_parser.cpp:18:0: /export/incubator-doris-0.10.0-rc04/b

[GitHub] [incubator-doris] imay commented on issue #1399: llvm 无法编译

2019-07-01 Thread GitBox
imay commented on issue #1399: llvm 无法编译 URL: https://github.com/apache/incubator-doris/issues/1399#issuecomment-507142582 You can install libbfd with `yum install elfutils-devel` This is an automated message from the Apache

[GitHub] [incubator-doris] imay edited a comment on issue #1399: llvm 无法编译

2019-07-01 Thread GitBox
imay edited a comment on issue #1399: llvm 无法编译 URL: https://github.com/apache/incubator-doris/issues/1399#issuecomment-507142582 You can install libbfd with `yum install binutils-devel zlib-devel libcurl-devel elfutils-devel` --

[GitHub] [incubator-doris] zttaotao2013 opened a new issue #1416: ETL_SUBMIT_FAIL problem

2019-07-01 Thread GitBox
zttaotao2013 opened a new issue #1416: ETL_SUBMIT_FAIL problem URL: https://github.com/apache/incubator-doris/issues/1416 我搭建了3fe + 3be + 3broker的doris测试环境,计划对存储于hdfs目录中的数据使用Broker进行批量入库,我定义了一个任务: load label data_load_1 data infile ( "hdfs://192.168.0.2:8020/doris/data/*.nb"

[GitHub] [incubator-doris] imay commented on issue #1416: ETL_SUBMIT_FAIL problem

2019-07-01 Thread GitBox
imay commented on issue #1416: ETL_SUBMIT_FAIL problem URL: https://github.com/apache/incubator-doris/issues/1416#issuecomment-507160933 当前broker导入需要把数据都加载到内存中,然后完成排序操作再写入到磁盘中。 我们新版本的导入已经可以不需要全部加载到内存中了,这个值是可以改大的。你可以修改max_bytes_per_broker_scanner的值 ---

[GitHub] [incubator-doris] imay merged pull request #1415: Change error msg of mini load when PUBLISH_TIMEOUT

2019-07-01 Thread GitBox
imay merged pull request #1415: Change error msg of mini load when PUBLISH_TIMEOUT URL: https://github.com/apache/incubator-doris/pull/1415 This is an automated message from the Apache Git Service. To respond to the message,

[GitHub] [incubator-doris] zttaotao2013 commented on issue #1416: ETL_SUBMIT_FAIL problem

2019-07-01 Thread GitBox
zttaotao2013 commented on issue #1416: ETL_SUBMIT_FAIL problem URL: https://github.com/apache/incubator-doris/issues/1416#issuecomment-507166559 是在fe或be的配置文件中改么?我用mysql set 命令提示没有这个变量 This is an automated message from the Apa

[GitHub] [incubator-doris] imay commented on issue #1416: ETL_SUBMIT_FAIL problem

2019-07-01 Thread GitBox
imay commented on issue #1416: ETL_SUBMIT_FAIL problem URL: https://github.com/apache/incubator-doris/issues/1416#issuecomment-507168539 > 是在fe或be的配置文件中改么?我用mysql set 命令提示没有这个变量 fe.conf max_bytes_per_broker_scanner = x

[GitHub] [incubator-doris] gaodayue commented on a change in pull request #1413: Add short key index builder, decoder, iterator

2019-07-01 Thread GitBox
gaodayue commented on a change in pull request #1413: Add short key index builder, decoder, iterator URL: https://github.com/apache/incubator-doris/pull/1413#discussion_r298932728 ## File path: be/src/olap/short_key_index.h ## @@ -0,0 +1,183 @@ +// Licensed to the Apache S

[GitHub] [incubator-doris] gaodayue commented on a change in pull request #1413: Add short key index builder, decoder, iterator

2019-07-01 Thread GitBox
gaodayue commented on a change in pull request #1413: Add short key index builder, decoder, iterator URL: https://github.com/apache/incubator-doris/pull/1413#discussion_r298902873 ## File path: be/src/olap/short_key_index.h ## @@ -0,0 +1,183 @@ +// Licensed to the Apache S

[GitHub] [incubator-doris] gaodayue commented on a change in pull request #1413: Add short key index builder, decoder, iterator

2019-07-01 Thread GitBox
gaodayue commented on a change in pull request #1413: Add short key index builder, decoder, iterator URL: https://github.com/apache/incubator-doris/pull/1413#discussion_r298863266 ## File path: be/src/olap/short_key_index.h ## @@ -0,0 +1,183 @@ +// Licensed to the Apache S

[GitHub] [incubator-doris] gaodayue commented on a change in pull request #1413: Add short key index builder, decoder, iterator

2019-07-01 Thread GitBox
gaodayue commented on a change in pull request #1413: Add short key index builder, decoder, iterator URL: https://github.com/apache/incubator-doris/pull/1413#discussion_r298914147 ## File path: be/src/olap/olap_index.cpp ## @@ -50,41 +53,64 @@ MemIndex::~MemIndex() {

[GitHub] [incubator-doris] gaodayue commented on a change in pull request #1413: Add short key index builder, decoder, iterator

2019-07-01 Thread GitBox
gaodayue commented on a change in pull request #1413: Add short key index builder, decoder, iterator URL: https://github.com/apache/incubator-doris/pull/1413#discussion_r298932675 ## File path: be/src/olap/short_key_index.h ## @@ -0,0 +1,183 @@ +// Licensed to the Apache S

<    7   8   9   10   11   12   13   14   15   16   >