worker24h commented on a change in pull request #1173: load data from Parquet
file (Issues #911)
URL: https://github.com/apache/incubator-doris/pull/1173#discussion_r289669312
##
File path: be/src/exec/parquet_reader.h
##
@@ -0,0 +1,105 @@
+// Licensed to the Apache Softwa
worker24h commented on a change in pull request #1173: load data from Parquet
file (Issues #911)
URL: https://github.com/apache/incubator-doris/pull/1173#discussion_r289669307
##
File path: be/src/exec/parquet_reader.h
##
@@ -0,0 +1,105 @@
+// Licensed to the Apache Softwa
worker24h commented on a change in pull request #1173: load data from Parquet
file (Issues #911)
URL: https://github.com/apache/incubator-doris/pull/1173#discussion_r289669341
##
File path: fe/src/main/java/org/apache/doris/catalog/BrokerTable.java
##
@@ -202,7 +218,7 @@ p
worker24h commented on a change in pull request #1173: load data from Parquet
file (Issues #911)
URL: https://github.com/apache/incubator-doris/pull/1173#discussion_r289669329
##
File path: be/src/exec/parquet_reader.cpp
##
@@ -0,0 +1,461 @@
+// Licensed to the Apache Soft
worker24h commented on a change in pull request #1173: load data from Parquet
file (Issues #911)
URL: https://github.com/apache/incubator-doris/pull/1173#discussion_r289669338
##
File path: be/src/exec/local_file_reader.cpp
##
@@ -14,13 +14,15 @@
// KIND, either express o
worker24h commented on a change in pull request #1173: load data from Parquet
file (Issues #911)
URL: https://github.com/apache/incubator-doris/pull/1173#discussion_r289669326
##
File path: be/src/exec/parquet_reader.cpp
##
@@ -0,0 +1,461 @@
+// Licensed to the Apache Soft
morningman opened a new issue #1234: SSL support in routine load with kafka
URL: https://github.com/apache/incubator-doris/issues/1234
Some Kafka cluster enables the encryption and authentication with SSL, which
need client to offer certification file or client public/private key files when
morningman opened a new pull request #1235: Support SSL authentication with
Kafka in routine load job
URL: https://github.com/apache/incubator-doris/pull/1235
1. Implement a Small File Manager which allows user to upload small files,
save them in Doris and use them later. Details can be fo
kangkaisen commented on a change in pull request #1235: Support SSL
authentication with Kafka in routine load job
URL: https://github.com/apache/incubator-doris/pull/1235#discussion_r289695500
##
File path:
docs/documentation/cn/administrator-guide/http-actions/fe_get_log_file.md
kangpinghuang commented on a change in pull request #1235: Support SSL
authentication with Kafka in routine load job
URL: https://github.com/apache/incubator-doris/pull/1235#discussion_r289701527
##
File path:
docs/documentation/cn/administrator-guide/load-data/routine-load-manual.
kangkaisen commented on a change in pull request #1235: Support SSL
authentication with Kafka in routine load job
URL: https://github.com/apache/incubator-doris/pull/1235#discussion_r289695500
##
File path:
docs/documentation/cn/administrator-guide/http-actions/fe_get_log_file.md
kangkaisen commented on a change in pull request #1235: Support SSL
authentication with Kafka in routine load job
URL: https://github.com/apache/incubator-doris/pull/1235#discussion_r289696806
##
File path: docs/help/Contents/Data Definition/ddl_stmt.md
##
@@ -595,9 +595,9
kangkaisen commented on a change in pull request #1235: Support SSL
authentication with Kafka in routine load job
URL: https://github.com/apache/incubator-doris/pull/1235#discussion_r289698255
##
File path: fe/src/main/java/org/apache/doris/analysis/CreateFileStmt.java
##
imay commented on a change in pull request #1235: Support SSL authentication
with Kafka in routine load job
URL: https://github.com/apache/incubator-doris/pull/1235#discussion_r289712195
##
File path: fe/src/main/java/org/apache/doris/common/util/KafkaUtil.java
##
@@ -0,0
imay commented on a change in pull request #1235: Support SSL authentication
with Kafka in routine load job
URL: https://github.com/apache/incubator-doris/pull/1235#discussion_r289713077
##
File path: fe/src/test/java/org/apache/doris/common/util/SmallFileMgrTest.java
##
@
imay opened a new issue #1236: Bad performance when query a table which has
many columns(100+)
URL: https://github.com/apache/incubator-doris/issues/1236
**Describe the bug**
When query two columns in a wide table (`table1`) which has many columns, in
this case is 178 columns.
I
imay commented on issue #1236: Bad performance when query a table which has
many columns(100+)
URL:
https://github.com/apache/incubator-doris/issues/1236#issuecomment-498170972
When I looked into code, I found the only difference between these two query
is that in wide table, we will crea
EmmyMiao87 opened a new pull request #1237: Change strategy of incorrect data
URL: https://github.com/apache/incubator-doris/pull/1237
This change adds a config named enable_load_strict which is used to prohibit
the incorrect data.
When the config is set to false, the incorrect data will
imay opened a new pull request #1238: Reduce memory RowBlock needed
URL: https://github.com/apache/incubator-doris/pull/1238
Before RowBlock will reserve memory for all columns in schema, even if
it is not queried. Which will cause bad performance when quering wide
table.
In thi
kangkaisen opened a new issue #1239: IllegalArgumentException when
loadLoadJobsV2
URL: https://github.com/apache/incubator-doris/issues/1239
**Describe the bug**
```
java.lang.IllegalArgumentException: No enum constant
org.apache.doris.load.EtlJobType.
at java.base/java.l
kangkaisen opened a new pull request #1240: Fix IllegalArgumentException in
LoadManager
URL: https://github.com/apache/incubator-doris/pull/1240
Fix https://github.com/apache/incubator-doris/issues/1239
This is an automated m
morningman commented on a change in pull request #1237: Change strategy of
incorrect data
URL: https://github.com/apache/incubator-doris/pull/1237#discussion_r289786192
##
File path: be/src/common/config.h
##
@@ -419,6 +419,11 @@ namespace config {
// same cache size
kangpinghuang opened a new pull request #1241: Add new format file api
URL: https://github.com/apache/incubator-doris/pull/1241
This is an automated message from the Apache Git Service.
To respond to the message, please log o
imay opened a new issue #1242: Upgrade BRPC to 0.9.5
URL: https://github.com/apache/incubator-doris/issues/1242
**Describe the bug**
We use json2pb in our UT, but we meet BRPC's
[bug](https://github.com/apache/incubator-brpc/issues/283).
So we need to upgrade our BRPC depende
imay opened a new pull request #1243: Upgrade brpc to 0.9.5
URL: https://github.com/apache/incubator-doris/pull/1243
Fix #1242
This is an automated message from the Apache Git Service.
To respond to the message, please log on
imay commented on issue #1242: Upgrade BRPC to 0.9.5
URL:
https://github.com/apache/incubator-doris/issues/1242#issuecomment-498287464
apache/incubator-brpc#283
This is an automated message from the Apache Git Service.
To res
kangkaisen commented on a change in pull request #1235: Support SSL
authentication with Kafka in routine load job
URL: https://github.com/apache/incubator-doris/pull/1235#discussion_r289698255
##
File path: fe/src/main/java/org/apache/doris/analysis/CreateFileStmt.java
##
kangkaisen commented on a change in pull request #1235: Support SSL
authentication with Kafka in routine load job
URL: https://github.com/apache/incubator-doris/pull/1235#discussion_r289696806
##
File path: docs/help/Contents/Data Definition/ddl_stmt.md
##
@@ -595,9 +595,9
kangpinghuang commented on a change in pull request #1238: Reduce memory
RowBlock needed
URL: https://github.com/apache/incubator-doris/pull/1238#discussion_r290095012
##
File path: be/src/olap/row_block.cpp
##
@@ -314,51 +115,29 @@ void RowBlock::clear() {
}
void RowB
imay commented on a change in pull request #1238: Reduce memory RowBlock needed
URL: https://github.com/apache/incubator-doris/pull/1238#discussion_r290099274
##
File path: be/src/olap/row_block.cpp
##
@@ -314,51 +115,29 @@ void RowBlock::clear() {
}
void RowBlock::_com
imay closed pull request #1243: Upgrade brpc to 0.9.5
URL: https://github.com/apache/incubator-doris/pull/1243
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and u
imay opened a new pull request #1243: Upgrade brpc to 0.9.5
URL: https://github.com/apache/incubator-doris/pull/1243
Fix #1242
This is an automated message from the Apache Git Service.
To respond to the message, please log on
morningman commented on a change in pull request #1235: Support SSL
authentication with Kafka in routine load job
URL: https://github.com/apache/incubator-doris/pull/1235#discussion_r290106749
##
File path: fe/src/test/java/org/apache/doris/common/util/SmallFileMgrTest.java
###
morningman commented on a change in pull request #1235: Support SSL
authentication with Kafka in routine load job
URL: https://github.com/apache/incubator-doris/pull/1235#discussion_r290106759
##
File path: fe/src/main/java/org/apache/doris/common/util/KafkaUtil.java
##
@@
morningman commented on issue #1235: Support SSL authentication with Kafka in
routine load job
URL: https://github.com/apache/incubator-doris/pull/1235#issuecomment-498496714
@kangkaisen
This is an automated message from the
kangpinghuang closed pull request #1241: Add new format file api
URL: https://github.com/apache/incubator-doris/pull/1241
This is an automated message from the Apache Git Service.
To respond to the message, please log on to G
worker24h opened a new pull request #1244: fixup leak memory
URL: https://github.com/apache/incubator-doris/pull/1244
When I declared that the compilation mode was BUILD_TYPE=LSAN, there was a
memory leak after running doris.
be.out:
Direct leak of 32816 byte(s) in 1 object(s) all
morningman edited a comment on issue #1235: Support SSL authentication with
Kafka in routine load job
URL: https://github.com/apache/incubator-doris/pull/1235#issuecomment-498496714
@kangkaisen
`Save the small file content to FE metadata is necessary? could we save the
small file conte
imay merged pull request #1244: fixup leak memory
URL: https://github.com/apache/incubator-doris/pull/1244
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use t
kangkaisen commented on issue #1235: Support SSL authentication with Kafka in
routine load job
URL: https://github.com/apache/incubator-doris/pull/1235#issuecomment-498502628
> @kangkaisen
> `Save the small file content to FE metadata is necessary? could we save
the small file content i
morningman closed issue #1242: Upgrade BRPC to 0.9.5
URL: https://github.com/apache/incubator-doris/issues/1242
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and
morningman merged pull request #1243: Upgrade brpc to 0.9.5
URL: https://github.com/apache/incubator-doris/pull/1243
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub
imay closed pull request #1238: Reduce memory RowBlock needed
URL: https://github.com/apache/incubator-doris/pull/1238
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitH
imay opened a new pull request #1238: Reduce memory RowBlock needed
URL: https://github.com/apache/incubator-doris/pull/1238
Before RowBlock will reserve memory for all columns in schema, even if
it is not queried. Which will cause bad performance when quering wide
table.
In thi
kangkaisen opened a new pull request #1240: Fix IllegalArgumentException in
LoadManager
URL: https://github.com/apache/incubator-doris/pull/1240
Fix https://github.com/apache/incubator-doris/issues/1239
This is an automated m
imay closed pull request #1240: Fix IllegalArgumentException in LoadManager
URL: https://github.com/apache/incubator-doris/pull/1240
This is an automated message from the Apache Git Service.
To respond to the message, please
morningman commented on a change in pull request #1240: Fix
IllegalArgumentException in LoadManager
URL: https://github.com/apache/incubator-doris/pull/1240#discussion_r290123942
##
File path: fe/src/main/java/org/apache/doris/load/loadv2/LoadJob.java
##
@@ -662,6 +662,24
morningman commented on a change in pull request #1240: Fix
IllegalArgumentException in LoadManager
URL: https://github.com/apache/incubator-doris/pull/1240#discussion_r290123896
##
File path: fe/src/main/java/org/apache/doris/load/loadv2/LoadManager.java
##
@@ -294,6 +294
imay opened a new pull request #1245: Add converter to convert expression to
plan node
URL: https://github.com/apache/incubator-doris/pull/1245
This is an automated message from the Apache Git Service.
To respond to the mess
chenhao7253886 merged pull request #1245: Add converter to convert expression
to plan node
URL: https://github.com/apache/incubator-doris/pull/1245
This is an automated message from the Apache Git Service.
To respond to the
morningman merged pull request #1238: Reduce memory RowBlock needed
URL: https://github.com/apache/incubator-doris/pull/1238
This is an automated message from the Apache Git Service.
To respond to the message, please log on t
kangkaisen commented on a change in pull request #1240: Fix
IllegalArgumentException in LoadManager
URL: https://github.com/apache/incubator-doris/pull/1240#discussion_r290133953
##
File path: fe/src/main/java/org/apache/doris/load/loadv2/LoadManager.java
##
@@ -294,6 +294
EmmyMiao87 commented on a change in pull request #1240: Fix
IllegalArgumentException in LoadManager
URL: https://github.com/apache/incubator-doris/pull/1240#discussion_r290135798
##
File path: fe/src/main/java/org/apache/doris/load/loadv2/LoadManager.java
##
@@ -294,6 +294
morningman commented on a change in pull request #1240: Fix
IllegalArgumentException in LoadManager
URL: https://github.com/apache/incubator-doris/pull/1240#discussion_r290135848
##
File path: fe/src/main/java/org/apache/doris/load/loadv2/LoadManager.java
##
@@ -294,6 +294
imay commented on a change in pull request #1237: Change strategy of incorrect
data
URL: https://github.com/apache/incubator-doris/pull/1237#discussion_r290139546
##
File path: docs/documentation/cn/administrator-guide/config/be_config.md
##
@@ -0,0 +1,20 @@
+# be ��˵�
imay opened a new issue #1246: Make MySQL optional
URL: https://github.com/apache/incubator-doris/issues/1246
Now, we support scanning MySQL table. we use libmysqlclient.a whose license
is GPLv2, which is not compatible with APLv2.
we should make it optional so that we can make it an
kangkaisen commented on a change in pull request #1240: Fix
IllegalArgumentException in LoadManager
URL: https://github.com/apache/incubator-doris/pull/1240#discussion_r290145895
##
File path: fe/src/main/java/org/apache/doris/load/loadv2/LoadManager.java
##
@@ -294,6 +294
kangkaisen commented on a change in pull request #1240: Fix
IllegalArgumentException in LoadManager
URL: https://github.com/apache/incubator-doris/pull/1240#discussion_r290145895
##
File path: fe/src/main/java/org/apache/doris/load/loadv2/LoadManager.java
##
@@ -294,6 +294
kangkaisen commented on a change in pull request #1240: Fix
IllegalArgumentException in LoadManager
URL: https://github.com/apache/incubator-doris/pull/1240#discussion_r290146308
##
File path: fe/src/main/java/org/apache/doris/load/loadv2/LoadManager.java
##
@@ -294,6 +294
chenhao7253886 closed issue #1053: New query scheduler
URL: https://github.com/apache/incubator-doris/issues/1053
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub an
kangpinghuang opened a new pull request #1247: Add segment v2 api
URL: https://github.com/apache/incubator-doris/pull/1247
This is an automated message from the Apache Git Service.
To respond to the message, please log on to
imay opened a new pull request #1248: Make MySQL support optional
URL: https://github.com/apache/incubator-doris/pull/1248
#1246
This is an automated message from the Apache Git Service.
To respond to the message, please log
morningman commented on a change in pull request #1248: Make MySQL support
optional
URL: https://github.com/apache/incubator-doris/pull/1248#discussion_r290262004
##
File path: build.sh
##
@@ -48,25 +48,32 @@ usage() {
echo "
Usage: $0
Optional options:
- --be
morningman commented on a change in pull request #1248: Make MySQL support
optional
URL: https://github.com/apache/incubator-doris/pull/1248#discussion_r290261942
##
File path: build.sh
##
@@ -48,25 +48,32 @@ usage() {
echo "
Usage: $0
Optional options:
- --be
EmmyMiao87 commented on a change in pull request #1240: Fix
IllegalArgumentException in LoadManager
URL: https://github.com/apache/incubator-doris/pull/1240#discussion_r290268959
##
File path: fe/src/main/java/org/apache/doris/load/loadv2/LoadManager.java
##
@@ -294,6 +294
imay opened a new pull request #1249: Fix bug that RowCusor do NOT match with
RowBlock's layout
URL: https://github.com/apache/incubator-doris/pull/1249
This is an automated message from the Apache Git Service.
To respond to
kangkaisen commented on a change in pull request #1240: Fix
IllegalArgumentException in LoadManager
URL: https://github.com/apache/incubator-doris/pull/1240#discussion_r290302644
##
File path: fe/src/main/java/org/apache/doris/load/loadv2/LoadManager.java
##
@@ -294,6 +294
morningman merged pull request #1249: Fix bug that RowCusor do NOT match with
RowBlock's layout
URL: https://github.com/apache/incubator-doris/pull/1249
This is an automated message from the Apache Git Service.
To respond to
imay closed pull request #1248: Make MySQL support optional
URL: https://github.com/apache/incubator-doris/pull/1248
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub
imay opened a new pull request #1248: Make MySQL support optional
URL: https://github.com/apache/incubator-doris/pull/1248
#1246
This is an automated message from the Apache Git Service.
To respond to the message, please log
morningman closed issue #1239: IllegalArgumentException when loadLoadJobsV2
URL: https://github.com/apache/incubator-doris/issues/1239
This is an automated message from the Apache Git Service.
To respond to the message, plea
morningman merged pull request #1240: Fix IllegalArgumentException in
LoadManager
URL: https://github.com/apache/incubator-doris/pull/1240
This is an automated message from the Apache Git Service.
To respond to the message,
morningman commented on a change in pull request #1173: load data from Parquet
file (Issues #911)
URL: https://github.com/apache/incubator-doris/pull/1173#discussion_r290331312
##
File path: be/src/runtime/stream_load/stream_load_pipe.h
##
@@ -107,11 +111,31 @@ class Strea
morningman commented on a change in pull request #1173: load data from Parquet
file (Issues #911)
URL: https://github.com/apache/incubator-doris/pull/1173#discussion_r290337597
##
File path: be/src/exec/parquet_reader.cpp
##
@@ -0,0 +1,453 @@
+// Licensed to the Apache Sof
morningman commented on a change in pull request #1173: load data from Parquet
file (Issues #911)
URL: https://github.com/apache/incubator-doris/pull/1173#discussion_r290337094
##
File path: be/src/exec/parquet_reader.cpp
##
@@ -0,0 +1,453 @@
+// Licensed to the Apache Sof
morningman commented on a change in pull request #1173: load data from Parquet
file (Issues #911)
URL: https://github.com/apache/incubator-doris/pull/1173#discussion_r290335537
##
File path: be/src/exec/parquet_reader.cpp
##
@@ -0,0 +1,453 @@
+// Licensed to the Apache Sof
morningman commented on a change in pull request #1173: load data from Parquet
file (Issues #911)
URL: https://github.com/apache/incubator-doris/pull/1173#discussion_r290335073
##
File path: be/src/exec/parquet_reader.cpp
##
@@ -0,0 +1,453 @@
+// Licensed to the Apache Sof
morningman commented on a change in pull request #1173: load data from Parquet
file (Issues #911)
URL: https://github.com/apache/incubator-doris/pull/1173#discussion_r290331427
##
File path: be/src/runtime/stream_load/stream_load_pipe.h
##
@@ -107,11 +111,31 @@ class Strea
morningman commented on a change in pull request #1173: load data from Parquet
file (Issues #911)
URL: https://github.com/apache/incubator-doris/pull/1173#discussion_r290337424
##
File path: be/src/exec/parquet_reader.cpp
##
@@ -0,0 +1,453 @@
+// Licensed to the Apache Sof
morningman commented on a change in pull request #1173: load data from Parquet
file (Issues #911)
URL: https://github.com/apache/incubator-doris/pull/1173#discussion_r290338852
##
File path: be/src/exec/parquet_reader.cpp
##
@@ -0,0 +1,453 @@
+// Licensed to the Apache Sof
morningman commented on a change in pull request #1173: load data from Parquet
file (Issues #911)
URL: https://github.com/apache/incubator-doris/pull/1173#discussion_r290331208
##
File path: be/src/runtime/stream_load/stream_load_pipe.h
##
@@ -107,11 +111,31 @@ class Strea
morningman commented on a change in pull request #1173: load data from Parquet
file (Issues #911)
URL: https://github.com/apache/incubator-doris/pull/1173#discussion_r290337800
##
File path: be/src/exec/parquet_reader.cpp
##
@@ -0,0 +1,453 @@
+// Licensed to the Apache Sof
imay commented on a change in pull request #1235: Support SSL authentication
with Kafka in routine load job
URL: https://github.com/apache/incubator-doris/pull/1235#discussion_r290335722
##
File path: be/src/runtime/routine_load/data_consumer.cpp
##
@@ -199,6 +227,66 @@ St
imay commented on a change in pull request #1235: Support SSL authentication
with Kafka in routine load job
URL: https://github.com/apache/incubator-doris/pull/1235#discussion_r290352092
##
File path: fe/src/main/java/org/apache/doris/common/util/SmallFileMgr.java
##
@@ -0
imay commented on a change in pull request #1235: Support SSL authentication
with Kafka in routine load job
URL: https://github.com/apache/incubator-doris/pull/1235#discussion_r290355134
##
File path:
fe/src/main/java/org/apache/doris/load/routineload/KafkaRoutineLoadJob.java
imay commented on a change in pull request #1235: Support SSL authentication
with Kafka in routine load job
URL: https://github.com/apache/incubator-doris/pull/1235#discussion_r290335969
##
File path: be/src/runtime/routine_load/data_consumer.cpp
##
@@ -199,6 +227,66 @@ St
imay commented on a change in pull request #1235: Support SSL authentication
with Kafka in routine load job
URL: https://github.com/apache/incubator-doris/pull/1235#discussion_r290354184
##
File path: fe/src/main/java/org/apache/doris/http/rest/GetSmallFileAction.java
##
@
imay commented on a change in pull request #1235: Support SSL authentication
with Kafka in routine load job
URL: https://github.com/apache/incubator-doris/pull/1235#discussion_r290352781
##
File path: fe/src/main/java/org/apache/doris/common/util/SmallFileMgr.java
##
@@ -0
imay commented on a change in pull request #1235: Support SSL authentication
with Kafka in routine load job
URL: https://github.com/apache/incubator-doris/pull/1235#discussion_r290346108
##
File path: gensrc/thrift/BackendService.thrift
##
@@ -144,4 +161,6 @@ service Backe
morningman commented on a change in pull request #1235: Support SSL
authentication with Kafka in routine load job
URL: https://github.com/apache/incubator-doris/pull/1235#discussion_r290551341
##
File path: gensrc/thrift/BackendService.thrift
##
@@ -144,4 +161,6 @@ service
morningman commented on a change in pull request #1235: Support SSL
authentication with Kafka in routine load job
URL: https://github.com/apache/incubator-doris/pull/1235#discussion_r290552087
##
File path: fe/src/main/java/org/apache/doris/common/util/SmallFileMgr.java
##
morningman commented on a change in pull request #1235: Support SSL
authentication with Kafka in routine load job
URL: https://github.com/apache/incubator-doris/pull/1235#discussion_r290552100
##
File path: fe/src/main/java/org/apache/doris/common/util/SmallFileMgr.java
##
morningman commented on issue #1235: Support SSL authentication with Kafka in
routine load job
URL: https://github.com/apache/incubator-doris/pull/1235#issuecomment-498908599
temporary close
This is an automated message from
morningman closed pull request #1235: Support SSL authentication with Kafka in
routine load job
URL: https://github.com/apache/incubator-doris/pull/1235
This is an automated message from the Apache Git Service.
To respond to
kangkaisen opened a new issue #1250: HLL query error when only upgrade BE to
0.10
URL: https://github.com/apache/incubator-doris/issues/1250
**Describe the bug**
```
mysql> select HLL_UNION_AGG(set1), HLL_UNION_AGG(set2), count(*) from
hll_test;
ERROR 1064 (HY000): Unable to f
kangkaisen opened a new pull request #1251: Make hll function backward
compatibility
URL: https://github.com/apache/incubator-doris/pull/1251
Fix https://github.com/apache/incubator-doris/issues/1250
This is an automated mess
lshmouse opened a new issue #1252: Failed to build doris 0.10 on centos 7.3
URL: https://github.com/apache/incubator-doris/issues/1252
Building thirdparty lib success, but be/fe failed with folliwing erros in
centos 7.3 with gcc 5.3.1
Any suggestion? Thanks~
```
/home/liushaohui/
luoyafei opened a new issue #1253: The version 0.10 already supports kafka
string load. Where can I find relevant documentation
URL: https://github.com/apache/incubator-doris/issues/1253
I have upgraded to 0.10, but not find 'kafka load example' in 'help stream
load' doc.
imay commented on issue #1252: Failed to build doris 0.10 on centos 7.3
URL:
https://github.com/apache/incubator-doris/issues/1252#issuecomment-498922717
It seems that enable zstd compress when build rocksdb, however there is no
zstd library. you should rebuild rocksdb with ZSTD disabled.
imay merged pull request #1251: Make hll function backward compatibility
URL: https://github.com/apache/incubator-doris/pull/1251
This is an automated message from the Apache Git Service.
To respond to the message, please log
401 - 500 of 7706 matches
Mail list logo