[GitHub] [incubator-doris] imay commented on a change in pull request #1190: Add date-function doc

2019-05-23 Thread GitBox
imay commented on a change in pull request #1190: Add date-function doc URL: https://github.com/apache/incubator-doris/pull/1190#discussion_r286801017 ## File path: docs/documentation/cn/sql-reference/sql-functions/date-functions/date_format.md ## @@ -0,0 +1,93 @@ +# date_

[GitHub] [incubator-doris] imay commented on a change in pull request #1190: Add date-function doc

2019-05-23 Thread GitBox
imay commented on a change in pull request #1190: Add date-function doc URL: https://github.com/apache/incubator-doris/pull/1190#discussion_r286800920 ## File path: docs/documentation/cn/sql-reference/sql-functions/date-functions/from_unixtime.md ## @@ -0,0 +1,40 @@ +# fro

[GitHub] [incubator-doris] morningman opened a new issue #1192: BE crashed after doing restore process

2019-05-23 Thread GitBox
morningman opened a new issue #1192: BE crashed after doing restore process URL: https://github.com/apache/incubator-doris/issues/1192 **Describe the bug** The final step of restore process is to move the downloaded files from snapshot dir to real tablet dir. After move success, the file

[GitHub] [incubator-doris] HangyuanLiu commented on a change in pull request #1190: Add date-function doc

2019-05-23 Thread GitBox
HangyuanLiu commented on a change in pull request #1190: Add date-function doc URL: https://github.com/apache/incubator-doris/pull/1190#discussion_r286808911 ## File path: docs/documentation/cn/sql-reference/sql-functions/date-functions/date_format.md ## @@ -0,0 +1,93 @@ +

[GitHub] [incubator-doris] imay merged pull request #1190: Add date-function doc

2019-05-23 Thread GitBox
imay merged pull request #1190: Add date-function doc URL: https://github.com/apache/incubator-doris/pull/1190 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] morningman opened a new pull request #1193: Fix bug that restore process in BE causes BE crash

2019-05-23 Thread GitBox
morningman opened a new pull request #1193: Fix bug that restore process in BE causes BE crash URL: https://github.com/apache/incubator-doris/pull/1193 When calling SnapshotLoader.move(), all files should be revoked if they are in GC queue, or the file may be deleted after move() succes

[GitHub] [incubator-doris] imay commented on a change in pull request #1193: Fix bug that restore process in BE causes BE crash

2019-05-23 Thread GitBox
imay commented on a change in pull request #1193: Fix bug that restore process in BE causes BE crash URL: https://github.com/apache/incubator-doris/pull/1193#discussion_r286847449 ## File path: be/src/runtime/snapshot_loader.cpp ## @@ -555,12 +568,16 @@ Status SnapshotLoa

[GitHub] [incubator-doris] imay commented on a change in pull request #1193: Fix bug that restore process in BE causes BE crash

2019-05-23 Thread GitBox
imay commented on a change in pull request #1193: Fix bug that restore process in BE causes BE crash URL: https://github.com/apache/incubator-doris/pull/1193#discussion_r286845898 ## File path: be/src/runtime/snapshot_loader.cpp ## @@ -538,6 +539,18 @@ Status SnapshotLoad

[GitHub] [incubator-doris] morningman merged pull request #1193: Fix bug that restore process in BE causes BE crash

2019-05-23 Thread GitBox
morningman merged pull request #1193: Fix bug that restore process in BE causes BE crash URL: https://github.com/apache/incubator-doris/pull/1193 This is an automated message from the Apache Git Service. To respond to the m

[GitHub] [incubator-doris] morningman merged pull request #1186: Print unfinished tablet when cancel load job

2019-05-23 Thread GitBox
morningman merged pull request #1186: Print unfinished tablet when cancel load job URL: https://github.com/apache/incubator-doris/pull/1186 This is an automated message from the Apache Git Service. To respond to the message,

[GitHub] [incubator-doris] EmmyMiao87 commented on issue #1095: Unifies load flow

2019-05-23 Thread GitBox
EmmyMiao87 commented on issue #1095: Unifies load flow URL: https://github.com/apache/incubator-doris/issues/1095#issuecomment-495203181 [https://github.com/apache/incubator-doris/pull/1191](url) This is an automated message

[GitHub] [incubator-doris] EmmyMiao87 commented on issue #1095: Unifies load flow

2019-05-23 Thread GitBox
EmmyMiao87 commented on issue #1095: Unifies load flow URL: https://github.com/apache/incubator-doris/issues/1095#issuecomment-495203643 #1191 1. Add persistence of new load 2. Change non-streaming insert to streaming insert

[GitHub] [incubator-doris] imay merged pull request #1191: Change insert into to streaming

2019-05-23 Thread GitBox
imay merged pull request #1191: Change insert into to streaming URL: https://github.com/apache/incubator-doris/pull/1191 This is an automated message from the Apache Git Service. To respond to the message, please log on to Gi

[GitHub] [incubator-doris] kangpinghuang opened a new issue #1194: Cloned files be deleted after compaction

2019-05-23 Thread GitBox
kangpinghuang opened a new issue #1194: Cloned files be deleted after compaction URL: https://github.com/apache/incubator-doris/issues/1194 **Describe the bug** Now compacted rowset's files will be deleted async by adding rowset to unused rowsets and if clone happens simultaneously, the

[GitHub] [incubator-doris] kangpinghuang commented on issue #1194: Cloned files be deleted after compaction

2019-05-23 Thread GitBox
kangpinghuang commented on issue #1194: Cloned files be deleted after compaction URL: https://github.com/apache/incubator-doris/issues/1194#issuecomment-495441478 The bug is files_to_check I passed is just filenames not the filepaths, while the unused rowsets's related files are managed by

[GitHub] [incubator-doris] kangpinghuang closed issue #1194: Cloned files be deleted after compaction

2019-05-23 Thread GitBox
kangpinghuang closed issue #1194: Cloned files be deleted after compaction URL: https://github.com/apache/incubator-doris/issues/1194 This is an automated message from the Apache Git Service. To respond to the message, please

[GitHub] [incubator-doris] kangpinghuang commented on issue #1194: Cloned files be deleted after compaction

2019-05-23 Thread GitBox
kangpinghuang commented on issue #1194: Cloned files be deleted after compaction URL: https://github.com/apache/incubator-doris/issues/1194#issuecomment-495442195 Fixed by #1181 This is an automated message from the Apache Gi

[GitHub] [incubator-doris] kangpinghuang opened a new issue #1195: Optimize meta tool for be_refactor

2019-05-23 Thread GitBox
kangpinghuang opened a new issue #1195: Optimize meta tool for be_refactor URL: https://github.com/apache/incubator-doris/issues/1195 There are some problems with the meta tool: 1. compile: there are compile problems 2. extensible: the code framework is not extensible to add new featur

[GitHub] [incubator-doris] kangpinghuang opened a new pull request #1196: optimize meta tool

2019-05-23 Thread GitBox
kangpinghuang opened a new pull request #1196: optimize meta tool URL: https://github.com/apache/incubator-doris/pull/1196 Fix issue #1195 This is an automated message from the Apache Git Service. To respond to the message, pl

[GitHub] [incubator-doris] morningman opened a new issue #1197: Unlimited FE audit logs may occupy too muck disk space

2019-05-23 Thread GitBox
morningman opened a new issue #1197: Unlimited FE audit logs may occupy too muck disk space URL: https://github.com/apache/incubator-doris/issues/1197 FE audit log is currently unlimited and rolling by day. We should limit the max number of audit logs ---

[GitHub] [incubator-doris] morningman opened a new pull request #1198: Modify FE sys log and audit log configuration

2019-05-23 Thread GitBox
morningman opened a new pull request #1198: Modify FE sys log and audit log configuration URL: https://github.com/apache/incubator-doris/pull/1198 Change all FE logs with suffix `MMdd` or `MMddHH`, specified by 2 new configurations: 'sys_log_roll_interval' and 'audit_log_roll_int

[GitHub] [incubator-doris] yiguolei commented on a change in pull request #1196: optimize meta tool

2019-05-23 Thread GitBox
yiguolei commented on a change in pull request #1196: optimize meta tool URL: https://github.com/apache/incubator-doris/pull/1196#discussion_r287193048 ## File path: be/src/tools/meta_tool.cpp ## @@ -29,144 +27,140 @@ #include "olap/tablet_meta_manager.h" #include "olap/o

[GitHub] [incubator-doris] imay commented on a change in pull request #1198: Modify FE sys log and audit log configuration

2019-05-23 Thread GitBox
imay commented on a change in pull request #1198: Modify FE sys log and audit log configuration URL: https://github.com/apache/incubator-doris/pull/1198#discussion_r287193816 ## File path: fe/src/main/java/org/apache/doris/common/Config.java ## @@ -18,46 +18,67 @@ package

[GitHub] [incubator-doris] morningman commented on a change in pull request #1198: Modify FE sys log and audit log configuration

2019-05-23 Thread GitBox
morningman commented on a change in pull request #1198: Modify FE sys log and audit log configuration URL: https://github.com/apache/incubator-doris/pull/1198#discussion_r287195201 ## File path: fe/src/main/java/org/apache/doris/common/Config.java ## @@ -18,46 +18,67 @@ p

[GitHub] [incubator-doris] morningman closed pull request #1198: Modify FE sys log and audit log configuration

2019-05-23 Thread GitBox
morningman closed pull request #1198: Modify FE sys log and audit log configuration URL: https://github.com/apache/incubator-doris/pull/1198 This is an automated message from the Apache Git Service. To respond to the message

[GitHub] [incubator-doris] morningman opened a new pull request #1198: Modify FE sys log and audit log configuration

2019-05-23 Thread GitBox
morningman opened a new pull request #1198: Modify FE sys log and audit log configuration URL: https://github.com/apache/incubator-doris/pull/1198 Change all FE logs with suffix `MMdd` or `MMddHH`, specified by 2 new configurations: 'sys_log_roll_interval' and 'audit_log_roll_int

[GitHub] [incubator-doris] morningman merged pull request #1198: Modify FE sys log and audit log configuration

2019-05-23 Thread GitBox
morningman merged pull request #1198: Modify FE sys log and audit log configuration URL: https://github.com/apache/incubator-doris/pull/1198 This is an automated message from the Apache Git Service. To respond to the message

[GitHub] [incubator-doris] chaoyli opened a new pull request #1199: Change BUILD_TYPE to RELEASE for be_refactor

2019-05-23 Thread GitBox
chaoyli opened a new pull request #1199: Change BUILD_TYPE to RELEASE for be_refactor URL: https://github.com/apache/incubator-doris/pull/1199 This is an automated message from the Apache Git Service. To respond to the messa

[GitHub] [incubator-doris] chaoyli merged pull request #1199: Change BUILD_TYPE to RELEASE for be_refactor

2019-05-23 Thread GitBox
chaoyli merged pull request #1199: Change BUILD_TYPE to RELEASE for be_refactor URL: https://github.com/apache/incubator-doris/pull/1199 This is an automated message from the Apache Git Service. To respond to the message, ple

[GitHub] [incubator-doris] chaoyli opened a new pull request #1200: Merge refactor code into master

2019-05-24 Thread GitBox
chaoyli opened a new pull request #1200: Merge refactor code into master URL: https://github.com/apache/incubator-doris/pull/1200 1. Refactoring be is to clarify the structure the codes. 2. Use unique id to indicate a rowset. Nameing rowset with tablet_id and version will lead to

[GitHub] [incubator-doris] morningman opened a new issue #1201: Too many thrift connection from BE to FE

2019-05-24 Thread GitBox
morningman opened a new issue #1201: Too many thrift connection from BE to FE URL: https://github.com/apache/incubator-doris/issues/1201 **Describe the bug** The Client Cache in BE is currently unlimited, which may cache a lot of thrift client. --

[GitHub] [incubator-doris] morningman opened a new pull request #1202: Add max cache size to ClientCache in BE

2019-05-24 Thread GitBox
morningman opened a new pull request #1202: Add max cache size to ClientCache in BE URL: https://github.com/apache/incubator-doris/pull/1202 Currently, unlimited client cache pool may cause too many connections in FE ISSUE: #1201

[GitHub] [incubator-doris] imay commented on a change in pull request #1202: Add max cache size to ClientCache in BE

2019-05-24 Thread GitBox
imay commented on a change in pull request #1202: Add max cache size to ClientCache in BE URL: https://github.com/apache/incubator-doris/pull/1202#discussion_r287296622 ## File path: be/src/runtime/client_cache.cpp ## @@ -135,15 +135,26 @@ Status ClientCacheHelper::create_

[GitHub] [incubator-doris] imay commented on a change in pull request #1202: Add max cache size to ClientCache in BE

2019-05-24 Thread GitBox
imay commented on a change in pull request #1202: Add max cache size to ClientCache in BE URL: https://github.com/apache/incubator-doris/pull/1202#discussion_r287294679 ## File path: be/src/runtime/client_cache.cpp ## @@ -201,6 +212,14 @@ void ClientCacheHelper::test_shutd

[GitHub] [incubator-doris] imay commented on a change in pull request #1202: Add max cache size to ClientCache in BE

2019-05-24 Thread GitBox
imay commented on a change in pull request #1202: Add max cache size to ClientCache in BE URL: https://github.com/apache/incubator-doris/pull/1202#discussion_r287297438 ## File path: be/src/runtime/client_cache.h ## @@ -108,6 +112,9 @@ class ClientCacheHelper { // Met

[GitHub] [incubator-doris] morningman commented on a change in pull request #1202: Add max cache size to ClientCache in BE

2019-05-24 Thread GitBox
morningman commented on a change in pull request #1202: Add max cache size to ClientCache in BE URL: https://github.com/apache/incubator-doris/pull/1202#discussion_r287336208 ## File path: be/src/runtime/client_cache.cpp ## @@ -201,6 +212,14 @@ void ClientCacheHelper::test

[GitHub] [incubator-doris] morningman commented on a change in pull request #1202: Add max cache size to ClientCache in BE

2019-05-24 Thread GitBox
morningman commented on a change in pull request #1202: Add max cache size to ClientCache in BE URL: https://github.com/apache/incubator-doris/pull/1202#discussion_r287336346 ## File path: be/src/runtime/client_cache.cpp ## @@ -135,15 +135,26 @@ Status ClientCacheHelper::c

[GitHub] [incubator-doris] morningman commented on a change in pull request #1202: Add max cache size to ClientCache in BE

2019-05-24 Thread GitBox
morningman commented on a change in pull request #1202: Add max cache size to ClientCache in BE URL: https://github.com/apache/incubator-doris/pull/1202#discussion_r287336441 ## File path: be/src/runtime/client_cache.h ## @@ -108,6 +112,9 @@ class ClientCacheHelper {

[GitHub] [incubator-doris] morningman commented on a change in pull request #1202: Add max cache size to ClientCache in BE

2019-05-24 Thread GitBox
morningman commented on a change in pull request #1202: Add max cache size to ClientCache in BE URL: https://github.com/apache/incubator-doris/pull/1202#discussion_r287336441 ## File path: be/src/runtime/client_cache.h ## @@ -108,6 +112,9 @@ class ClientCacheHelper {

[GitHub] [incubator-doris] imay commented on a change in pull request #1202: Add max cache size to ClientCache in BE

2019-05-24 Thread GitBox
imay commented on a change in pull request #1202: Add max cache size to ClientCache in BE URL: https://github.com/apache/incubator-doris/pull/1202#discussion_r287351687 ## File path: be/src/runtime/client_cache.h ## @@ -89,7 +89,11 @@ class ClientCacheHelper { private:

[GitHub] [incubator-doris] imay commented on a change in pull request #1202: Add max cache size to ClientCache in BE

2019-05-24 Thread GitBox
imay commented on a change in pull request #1202: Add max cache size to ClientCache in BE URL: https://github.com/apache/incubator-doris/pull/1202#discussion_r287351860 ## File path: fe/src/main/java/org/apache/doris/qe/Coordinator.java ## @@ -667,8 +667,11 @@ private void

[GitHub] [incubator-doris] imay commented on a change in pull request #1202: Add max cache size to ClientCache in BE

2019-05-24 Thread GitBox
imay commented on a change in pull request #1202: Add max cache size to ClientCache in BE URL: https://github.com/apache/incubator-doris/pull/1202#discussion_r287359123 ## File path: be/src/runtime/client_cache.cpp ## @@ -135,15 +135,23 @@ Status ClientCacheHelper::create_

[GitHub] [incubator-doris] imay merged pull request #1202: Add max cache size to ClientCache in BE

2019-05-24 Thread GitBox
imay merged pull request #1202: Add max cache size to ClientCache in BE URL: https://github.com/apache/incubator-doris/pull/1202 This is an automated message from the Apache Git Service. To respond to the message, please log

[GitHub] [incubator-doris] skyler-tao opened a new issue #1203: compile be error using docker image

2019-05-24 Thread GitBox
skyler-tao opened a new issue #1203: compile be error using docker image URL: https://github.com/apache/incubator-doris/issues/1203 **Describe the bug** On my Mac, I have installed docker, so I use the docker image apachedoris/doris-dev:build-env to compile the source code. fe is ok,

[GitHub] [incubator-doris] imay commented on issue #1203: compile be error using docker image

2019-05-25 Thread GitBox
imay commented on issue #1203: compile be error using docker image URL: https://github.com/apache/incubator-doris/issues/1203#issuecomment-495887745 Hi it seems like you meet a GCC error not a Doris problem. Maybe there is no enough memory for compilation. You can change `PARALLE

[GitHub] [incubator-doris] skyler-tao closed issue #1203: compile be error using docker image

2019-05-26 Thread GitBox
skyler-tao closed issue #1203: compile be error using docker image URL: https://github.com/apache/incubator-doris/issues/1203 This is an automated message from the Apache Git Service. To respond to the message, please log on

[GitHub] [incubator-doris] skyler-tao commented on issue #1203: compile be error using docker image

2019-05-26 Thread GitBox
skyler-tao commented on issue #1203: compile be error using docker image URL: https://github.com/apache/incubator-doris/issues/1203#issuecomment-496054327 Yes, you're right. This is an automated message from the Apache Git Se

[GitHub] [incubator-doris] HangyuanLiu opened a new pull request #1204: Support arbitrary kafka properties

2019-05-27 Thread GitBox
HangyuanLiu opened a new pull request #1204: Support arbitrary kafka properties URL: https://github.com/apache/incubator-doris/pull/1204 Support arbitrary kafka parameters and can be expanded in the future This is an automated

[GitHub] [incubator-doris] HangyuanLiu opened a new issue #1205: Support arbitrary kafka parameters

2019-05-27 Thread GitBox
HangyuanLiu opened a new issue #1205: Support arbitrary kafka parameters URL: https://github.com/apache/incubator-doris/issues/1205 **Is your feature request related to a problem? Please describe.** Support arbitrary kafka parameters like kafka shell "bin/kafka-console-consumer.sh --prop

[GitHub] [incubator-doris] imay commented on a change in pull request #1204: Support arbitrary kafka properties

2019-05-27 Thread GitBox
imay commented on a change in pull request #1204: Support arbitrary kafka properties URL: https://github.com/apache/incubator-doris/pull/1204#discussion_r287684743 ## File path: be/src/runtime/routine_load/data_consumer.cpp ## @@ -72,6 +72,13 @@ Status KafkaDataConsumer::i

[GitHub] [incubator-doris] imay commented on a change in pull request #1204: Support arbitrary kafka properties

2019-05-27 Thread GitBox
imay commented on a change in pull request #1204: Support arbitrary kafka properties URL: https://github.com/apache/incubator-doris/pull/1204#discussion_r287687112 ## File path: fe/src/main/java/org/apache/doris/load/routineload/KafkaRoutineLoadJob.java ## @@ -367,6 +381,

[GitHub] [incubator-doris] imay commented on a change in pull request #1204: Support arbitrary kafka properties

2019-05-27 Thread GitBox
imay commented on a change in pull request #1204: Support arbitrary kafka properties URL: https://github.com/apache/incubator-doris/pull/1204#discussion_r287684683 ## File path: be/src/runtime/routine_load/data_consumer.cpp ## @@ -72,6 +72,13 @@ Status KafkaDataConsumer::i

[GitHub] [incubator-doris] imay commented on a change in pull request #1204: Support arbitrary kafka properties

2019-05-27 Thread GitBox
imay commented on a change in pull request #1204: Support arbitrary kafka properties URL: https://github.com/apache/incubator-doris/pull/1204#discussion_r287686336 ## File path: fe/src/main/java/org/apache/doris/analysis/CreateRoutineLoadStmt.java ## @@ -394,6 +400,17 @@

[GitHub] [incubator-doris] morningman commented on a change in pull request #1204: Support arbitrary kafka properties

2019-05-27 Thread GitBox
morningman commented on a change in pull request #1204: Support arbitrary kafka properties URL: https://github.com/apache/incubator-doris/pull/1204#discussion_r287692307 ## File path: be/src/runtime/routine_load/data_consumer.cpp ## @@ -72,6 +72,13 @@ Status KafkaDataConsu

[GitHub] [incubator-doris] HangyuanLiu opened a new pull request #1206: Add some date time function doc

2019-05-27 Thread GitBox
HangyuanLiu opened a new pull request #1206: Add some date time function doc URL: https://github.com/apache/incubator-doris/pull/1206 Add some date time function doc This is an automated message from the Apache Git Service. To

[GitHub] [incubator-doris] imay merged pull request #1206: Add some date time function doc

2019-05-27 Thread GitBox
imay merged pull request #1206: Add some date time function doc URL: https://github.com/apache/incubator-doris/pull/1206 This is an automated message from the Apache Git Service. To respond to the message, please log on to Gi

[GitHub] [incubator-doris] kangpinghuang opened a new pull request #1207: Fix tablet size overflow bug

2019-05-27 Thread GitBox
kangpinghuang opened a new pull request #1207: Fix tablet size overflow bug URL: https://github.com/apache/incubator-doris/pull/1207 This is an automated message from the Apache Git Service. To respond to the message, please

[GitHub] [incubator-doris] imay merged pull request #1207: Fix tablet size overflow bug

2019-05-27 Thread GitBox
imay merged pull request #1207: Fix tablet size overflow bug URL: https://github.com/apache/incubator-doris/pull/1207 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHu

[GitHub] [incubator-doris] imay commented on a change in pull request #1204: Support arbitrary kafka properties

2019-05-27 Thread GitBox
imay commented on a change in pull request #1204: Support arbitrary kafka properties URL: https://github.com/apache/incubator-doris/pull/1204#discussion_r287737689 ## File path: fe/src/main/java/org/apache/doris/load/routineload/KafkaRoutineLoadJob.java ## @@ -96,6 +99,10

[GitHub] [incubator-doris] morningman commented on a change in pull request #1204: Support arbitrary kafka properties

2019-05-27 Thread GitBox
morningman commented on a change in pull request #1204: Support arbitrary kafka properties URL: https://github.com/apache/incubator-doris/pull/1204#discussion_r287907056 ## File path: docs/help/Contents/Data Manipulation/routine_load.md ## @@ -157,6 +157,13 @@

[GitHub] [incubator-doris] morningman merged pull request #1204: Support arbitrary kafka properties

2019-05-27 Thread GitBox
morningman merged pull request #1204: Support arbitrary kafka properties URL: https://github.com/apache/incubator-doris/pull/1204 This is an automated message from the Apache Git Service. To respond to the message, please log

[GitHub] [incubator-doris] morningman closed issue #1205: Support arbitrary kafka parameters

2019-05-27 Thread GitBox
morningman closed issue #1205: Support arbitrary kafka parameters URL: https://github.com/apache/incubator-doris/issues/1205 This is an automated message from the Apache Git Service. To respond to the message, please log on t

[GitHub] [incubator-doris] HangyuanLiu opened a new pull request #1208: Fix datediff function

2019-05-27 Thread GitBox
HangyuanLiu opened a new pull request #1208: Fix datediff function URL: https://github.com/apache/incubator-doris/pull/1208 Fix the datediff function to compatible with MySQL function logic The DATEDIFF function only uses the date part for calculations and ignores the time part ---

[GitHub] [incubator-doris] imay commented on a change in pull request #1208: Fix datediff function

2019-05-27 Thread GitBox
imay commented on a change in pull request #1208: Fix datediff function URL: https://github.com/apache/incubator-doris/pull/1208#discussion_r287918807 ## File path: fe/src/main/java/org/apache/doris/rewrite/FEFunctions.java ## @@ -55,9 +55,16 @@ @FEFunction(name = "

[GitHub] [incubator-doris] imay merged pull request #1208: Fix datediff function

2019-05-28 Thread GitBox
imay merged pull request #1208: Fix datediff function URL: https://github.com/apache/incubator-doris/pull/1208 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and

[GitHub] [incubator-doris] yiguolei opened a new pull request #1209: Olapsnapshot converter not set tablet uid correctly

2019-05-28 Thread GitBox
yiguolei opened a new pull request #1209: Olapsnapshot converter not set tablet uid correctly URL: https://github.com/apache/incubator-doris/pull/1209 This is an automated message from the Apache Git Service. To respond to

[GitHub] [incubator-doris] chaoyli merged pull request #1209: Olapsnapshot converter not set tablet uid correctly

2019-05-28 Thread GitBox
chaoyli merged pull request #1209: Olapsnapshot converter not set tablet uid correctly URL: https://github.com/apache/incubator-doris/pull/1209 This is an automated message from the Apache Git Service. To respond to the mes

[GitHub] [incubator-doris] chenhao7253886 opened a new pull request #1210: Add optimization with cost and fix unit test

2019-05-28 Thread GitBox
chenhao7253886 opened a new pull request #1210: Add optimization with cost and fix unit test URL: https://github.com/apache/incubator-doris/pull/1210 This is an automated message from the Apache Git Service. To respond to th

[GitHub] [incubator-doris] yiguolei opened a new pull request #1211: Change FileDownloader to http client

2019-05-28 Thread GitBox
yiguolei opened a new pull request #1211: Change FileDownloader to http client URL: https://github.com/apache/incubator-doris/pull/1211 This is an automated message from the Apache Git Service. To respond to the message, plea

[GitHub] [incubator-doris] chaoyli merged pull request #1211: Change FileDownloader to http client

2019-05-28 Thread GitBox
chaoyli merged pull request #1211: Change FileDownloader to http client URL: https://github.com/apache/incubator-doris/pull/1211 This is an automated message from the Apache Git Service. To respond to the message, please log

[GitHub] [incubator-doris] kangpinghuang commented on a change in pull request #1211: Change FileDownloader to http client

2019-05-28 Thread GitBox
kangpinghuang commented on a change in pull request #1211: Change FileDownloader to http client URL: https://github.com/apache/incubator-doris/pull/1211#discussion_r288369936 ## File path: be/src/olap/task/engine_batch_load_task.cpp ## @@ -218,96 +172,94 @@ void EngineBatc

[GitHub] [incubator-doris] kangpinghuang commented on a change in pull request #1211: Change FileDownloader to http client

2019-05-28 Thread GitBox
kangpinghuang commented on a change in pull request #1211: Change FileDownloader to http client URL: https://github.com/apache/incubator-doris/pull/1211#discussion_r288370468 ## File path: be/src/olap/task/engine_batch_load_task.cpp ## @@ -316,11 +268,9 @@ AgentStatus Engi

[GitHub] [incubator-doris] kangpinghuang commented on a change in pull request #1211: Change FileDownloader to http client

2019-05-28 Thread GitBox
kangpinghuang commented on a change in pull request #1211: Change FileDownloader to http client URL: https://github.com/apache/incubator-doris/pull/1211#discussion_r288370338 ## File path: be/src/olap/task/engine_batch_load_task.cpp ## @@ -218,96 +172,94 @@ void EngineBatc

[GitHub] [incubator-doris] kangpinghuang commented on a change in pull request #1211: Change FileDownloader to http client

2019-05-28 Thread GitBox
kangpinghuang commented on a change in pull request #1211: Change FileDownloader to http client URL: https://github.com/apache/incubator-doris/pull/1211#discussion_r288369590 ## File path: be/src/olap/task/engine_batch_load_task.cpp ## @@ -113,45 +113,31 @@ AgentStatus Eng

[GitHub] [incubator-doris] kangpinghuang commented on a change in pull request #1211: Change FileDownloader to http client

2019-05-28 Thread GitBox
kangpinghuang commented on a change in pull request #1211: Change FileDownloader to http client URL: https://github.com/apache/incubator-doris/pull/1211#discussion_r288370414 ## File path: be/src/olap/task/engine_batch_load_task.cpp ## @@ -218,96 +172,94 @@ void EngineBatc

[GitHub] [incubator-doris] kangpinghuang commented on a change in pull request #1211: Change FileDownloader to http client

2019-05-28 Thread GitBox
kangpinghuang commented on a change in pull request #1211: Change FileDownloader to http client URL: https://github.com/apache/incubator-doris/pull/1211#discussion_r288370375 ## File path: be/src/olap/task/engine_batch_load_task.cpp ## @@ -218,96 +172,94 @@ void EngineBatc

[GitHub] [incubator-doris] kangpinghuang commented on a change in pull request #1211: Change FileDownloader to http client

2019-05-28 Thread GitBox
kangpinghuang commented on a change in pull request #1211: Change FileDownloader to http client URL: https://github.com/apache/incubator-doris/pull/1211#discussion_r288369809 ## File path: be/src/olap/task/engine_batch_load_task.cpp ## @@ -218,96 +172,94 @@ void EngineBatc

[GitHub] [incubator-doris] wengad82 opened a new issue #1212: bin/start_fe.sh: line 59: /home/doris/run/fe/conf/fe.conf: No such file or directory

2019-05-28 Thread GitBox
wengad82 opened a new issue #1212: bin/start_fe.sh: line 59: /home/doris/run/fe/conf/fe.conf: No such file or directory URL: https://github.com/apache/incubator-doris/issues/1212 Dockerfile: > FROM centos:7.2.1511 RUN mkdir /home/doris/run/ -p # copy jdk and doris binar

[GitHub] [incubator-doris] morningman commented on issue #1212: bin/start_fe.sh: line 59: /home/doris/run/fe/conf/fe.conf: No such file or directory

2019-05-28 Thread GitBox
morningman commented on issue #1212: bin/start_fe.sh: line 59: /home/doris/run/fe/conf/fe.conf: No such file or directory URL: https://github.com/apache/incubator-doris/issues/1212#issuecomment-496769155 You can first attach to the container, and see if there has file: `/home/doris/run/fe

[GitHub] [incubator-doris] morningman closed issue #1201: Too many thrift connection from BE to FE

2019-05-28 Thread GitBox
morningman closed issue #1201: Too many thrift connection from BE to FE URL: https://github.com/apache/incubator-doris/issues/1201 This is an automated message from the Apache Git Service. To respond to the message, please lo

[GitHub] [incubator-doris] imay opened a new pull request #1213: Add spatial func

2019-05-28 Thread GitBox
imay opened a new pull request #1213: Add spatial func URL: https://github.com/apache/incubator-doris/pull/1213 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and

[GitHub] [incubator-doris] wengad82 commented on issue #1212: bin/start_fe.sh: line 59: /home/doris/run/fe/conf/fe.conf: No such file or directory

2019-05-28 Thread GitBox
wengad82 commented on issue #1212: bin/start_fe.sh: line 59: /home/doris/run/fe/conf/fe.conf: No such file or directory URL: https://github.com/apache/incubator-doris/issues/1212#issuecomment-496771712 yes,theres is a fe.conf under /home/doris/run/fe/conf [root@study conf]# docker e

[GitHub] [incubator-doris] kangkaisen opened a new issue #1214: cannot find symbol when compile FE with JDK 12

2019-05-28 Thread GitBox
kangkaisen opened a new issue #1214: cannot find symbol when compile FE with JDK 12 URL: https://github.com/apache/incubator-doris/issues/1214 **Describe the bug** The following error will occur when compile FE with JDK 12: ``` [ERROR] /home/kangkaisen/palo/fe/src/main/java/org/ap

[GitHub] [incubator-doris] kangkaisen opened a new pull request #1215: Remove unnecessary import sun.security.ssl.Debug

2019-05-28 Thread GitBox
kangkaisen opened a new pull request #1215: Remove unnecessary import sun.security.ssl.Debug URL: https://github.com/apache/incubator-doris/pull/1215 Fix https://github.com/apache/incubator-doris/issues/1214 This is an autom

[GitHub] [incubator-doris] kangkaisen closed issue #1216: Doris Stream Load API response has changed in Doris 0.10

2019-05-28 Thread GitBox
kangkaisen closed issue #1216: Doris Stream Load API response has changed in Doris 0.10 URL: https://github.com/apache/incubator-doris/issues/1216 This is an automated message from the Apache Git Service. To respond to the m

[GitHub] [incubator-doris] kangkaisen opened a new issue #1216: Doris Stream Load API response has changed in Doris 0.10

2019-05-28 Thread GitBox
kangkaisen opened a new issue #1216: Doris Stream Load API response has changed in Doris 0.10 URL: https://github.com/apache/incubator-doris/issues/1216 The old response is : ``` { "Status": "Success", "Message": "OK", "NumberLoadedRows": 2, "NumberFiltered

[GitHub] [incubator-doris] imay commented on issue #1214: cannot find symbol when compile FE with JDK 12

2019-05-28 Thread GitBox
imay commented on issue #1214: cannot find symbol when compile FE with JDK 12 URL: https://github.com/apache/incubator-doris/issues/1214#issuecomment-496780110 > Besides, **I think we should add a [maven-checkstyle-plugin](https://maven.apache.org/plugins/maven-checkstyle-plugin/) to chec

[GitHub] [incubator-doris] imay closed issue #1214: cannot find symbol when compile FE with JDK 12

2019-05-28 Thread GitBox
imay closed issue #1214: cannot find symbol when compile FE with JDK 12 URL: https://github.com/apache/incubator-doris/issues/1214 This is an automated message from the Apache Git Service. To respond to the message, please lo

[GitHub] [incubator-doris] imay merged pull request #1215: Remove unnecessary import sun.security.ssl.Debug

2019-05-28 Thread GitBox
imay merged pull request #1215: Remove unnecessary import sun.security.ssl.Debug URL: https://github.com/apache/incubator-doris/pull/1215 This is an automated message from the Apache Git Service. To respond to the message, pl

[GitHub] [incubator-doris] imay closed pull request #1213: Add spatial func

2019-05-28 Thread GitBox
imay closed pull request #1213: Add spatial func URL: https://github.com/apache/incubator-doris/pull/1213 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use th

[GitHub] [incubator-doris] imay opened a new pull request #1213: Add spatial func

2019-05-28 Thread GitBox
imay opened a new pull request #1213: Add spatial func URL: https://github.com/apache/incubator-doris/pull/1213 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and

[GitHub] [incubator-doris] kangkaisen commented on issue #1214: cannot find symbol when compile FE with JDK 12

2019-05-28 Thread GitBox
kangkaisen commented on issue #1214: cannot find symbol when compile FE with JDK 12 URL: https://github.com/apache/incubator-doris/issues/1214#issuecomment-496795347 OK. I could do this work, but I am busy recently. I will do this work when I have time. Before I do it, I will discus

[GitHub] [incubator-doris] chaoyli commented on a change in pull request #1200: Merge refactor code into master

2019-05-28 Thread GitBox
chaoyli commented on a change in pull request #1200: Merge refactor code into master URL: https://github.com/apache/incubator-doris/pull/1200#discussion_r287940884 ## File path: be/src/exec/olap_scanner.cpp ## @@ -80,29 +80,30 @@ Status OlapScanner::_prepare( strt

[GitHub] [incubator-doris] chaoyli commented on a change in pull request #1200: Merge refactor code into master

2019-05-28 Thread GitBox
chaoyli commented on a change in pull request #1200: Merge refactor code into master URL: https://github.com/apache/incubator-doris/pull/1200#discussion_r288398316 ## File path: be/src/olap/task/engine_clone_task.cpp ## @@ -0,0 +1,903 @@ +// Licensed to the Apache Software

[GitHub] [incubator-doris] chaoyli commented on a change in pull request #1200: Merge refactor code into master

2019-05-28 Thread GitBox
chaoyli commented on a change in pull request #1200: Merge refactor code into master URL: https://github.com/apache/incubator-doris/pull/1200#discussion_r288380781 ## File path: be/src/olap/olap_snapshot_converter.cpp ## @@ -0,0 +1,531 @@ +// Licensed to the Apache Softwar

[GitHub] [incubator-doris] chaoyli commented on a change in pull request #1200: Merge refactor code into master

2019-05-28 Thread GitBox
chaoyli commented on a change in pull request #1200: Merge refactor code into master URL: https://github.com/apache/incubator-doris/pull/1200#discussion_r288398752 ## File path: be/src/olap/task/engine_clone_task.cpp ## @@ -0,0 +1,903 @@ +// Licensed to the Apache Software

[GitHub] [incubator-doris] chaoyli commented on a change in pull request #1200: Merge refactor code into master

2019-05-28 Thread GitBox
chaoyli commented on a change in pull request #1200: Merge refactor code into master URL: https://github.com/apache/incubator-doris/pull/1200#discussion_r288378703 ## File path: be/src/olap/data_dir.cpp ## @@ -0,0 +1,1011 @@ +// Licensed to the Apache Software Foundation (

[GitHub] [incubator-doris] chaoyli commented on a change in pull request #1200: Merge refactor code into master

2019-05-28 Thread GitBox
chaoyli commented on a change in pull request #1200: Merge refactor code into master URL: https://github.com/apache/incubator-doris/pull/1200#discussion_r288394171 ## File path: be/src/olap/data_dir.cpp ## @@ -0,0 +1,1011 @@ +// Licensed to the Apache Software Foundation (

[GitHub] [incubator-doris] chaoyli commented on a change in pull request #1200: Merge refactor code into master

2019-05-28 Thread GitBox
chaoyli commented on a change in pull request #1200: Merge refactor code into master URL: https://github.com/apache/incubator-doris/pull/1200#discussion_r288380282 ## File path: be/src/olap/olap_snapshot_converter.cpp ## @@ -0,0 +1,531 @@ +// Licensed to the Apache Softwar

[GitHub] [incubator-doris] chaoyli commented on a change in pull request #1200: Merge refactor code into master

2019-05-28 Thread GitBox
chaoyli commented on a change in pull request #1200: Merge refactor code into master URL: https://github.com/apache/incubator-doris/pull/1200#discussion_r288381230 ## File path: be/src/olap/olap_snapshot_converter.cpp ## @@ -0,0 +1,531 @@ +// Licensed to the Apache Softwar

<    1   2   3   4   5   6   7   8   9   10   >