Commit Graph

1106 Commits

Author SHA1 Message Date
f144041a3c [doc] [Improved] The flink connector documentation is perfect (#9528)
Co-authored-by: 王磊 <lei.wang@unidt.com>
2022-05-13 16:22:54 +08:00
34e64fbea9 [doc]Add ARM architecture compilation tutorial content (#9535)
Co-authored-by: manyi <fop@freeoneplus.com>
2022-05-13 10:24:19 +08:00
da1a0c96db Incorrect sequence numbers in revision documents. (#9496)
Co-authored-by: smallhibiscus <844981280>
2022-05-12 15:44:41 +08:00
f11d320213 [feature] support row policy filter (#9206) 2022-05-11 22:11:10 +08:00
3ba5ff4705 [doc] update fe checkstyle doc (#9373) 2022-05-11 15:44:29 +08:00
375c1bf5c0 [feature](mysql-table) support utf8mb4 for mysql external table (#9402)
This patch supports utf8mb4 for mysql external table.

if someone needs a mysql external table with utf8mb4 charset, but only support charset utf8 right now.

When create mysql external table, it can add an optional propertiy "charset" which can set character fom mysql connection, 
default value is "utf8". You can set "utf8mb4" instead of "utf8" when you need.
2022-05-11 09:39:23 +08:00
092a12e983 [feature] show create materialized view (#9391) 2022-05-11 09:29:55 +08:00
76154f11b7 [docs][typo] Fix some typoes in "update.md" content. (#9455)
Fix some typoes in "update.md" content
2022-05-10 09:02:04 +08:00
70642e3bff [Doc] 添加CTAS文档 (#9454)
* ADD: 添加CTAS文档
2022-05-10 09:01:42 +08:00
5df5d39161 [doc] update data-model.md and data-partition.md (#9448)
update data-model.md and data-partition.md
2022-05-09 09:19:09 +08:00
35f0725387 [doc] Update DECIMAL.md (#9451)
* Update DECIMAL.md
2022-05-09 09:17:24 +08:00
327f61b796 Update data-partition.md (#9450)
Update data-partition.md
2022-05-09 09:17:00 +08:00
8932fcaf59 [Doc] fix doc link suffix .html to .md (#9442)
* fix doc link suffix html to md
2022-05-09 09:16:06 +08:00
c633402ce3 [feature] (sql-digest) support sql digest (#8919) 2022-05-08 17:25:41 +08:00
181aa1b4a9 [style]add IntelliJ code style xml (#9438) 2022-05-08 06:41:46 +08:00
68fae88b36 improve doc spark3.2.0 (#9445) 2022-05-08 06:39:58 +08:00
816aaa7fd1 [doc]Add create java udf document (#9430)
* Add create java udf document

* Add create java udf document
2022-05-07 19:20:56 +08:00
ba2cc98cc0 [doc]fix typo in en faq and format pattern (#9423) 2022-05-07 19:16:59 +08:00
a5a7d1276b [DOC]Improve fe idea dev (#9431) 2022-05-07 19:15:35 +08:00
882987c0e7 [doc]Add hll usage documentation (#9398)
Add hll usage documentation
2022-05-07 18:56:48 +08:00
659417c5c9 [doc]add error reason for storage medium (#9390) 2022-05-07 08:46:50 +08:00
22439cb6a6 [Improvement] [compaction]Enable vectorized compaction by default (#9383) 2022-05-07 08:46:35 +08:00
0d909b73a1 [doc] add github checks doc (#9387) 2022-05-07 08:44:23 +08:00
48966c9e7c [fix][doc]style issues (#9386) 2022-05-07 08:44:08 +08:00
dce18cb325 [doc] Add window functions sql help doc (#9393) 2022-05-07 08:43:51 +08:00
f5ef179f22 [fix][doc]Chinese and English homepage link error (#9397)
Chinese and English homepage link error
2022-05-07 08:43:34 +08:00
b0afa850ca [doc]Fix some path error in regression-testing doc (#9413) 2022-05-07 08:40:23 +08:00
17b95b4366 [docs]docs ddl modify (#9415) 2022-05-07 08:39:47 +08:00
86b7717fe2 [doc]Add binlog to load and import the doris table and the original table … (#9317) 2022-05-06 15:22:55 +08:00
a5f9031c89 [improvement](hive) Support hive with HA HDFS. Pass ha configuration through hive create table properties. (#9151)
Doris couldn't resolve the defaultFS of HDFS with HA configuration, so it could query hive table on HA HDFS.
This is because there's no way to send the HA configs to hive external table.

Describe the overview of changes.
Pass the ha configs to hive external table through create table properties.

Usage:
Example of creating hive table with ha configuration properties:

CREATE TABLE region (
r_regionkey integer NOT NULL,
r_name char(25) NOT NULL,
r_comment varchar(152)
) engine=hive properties
("database"="default",
"table"="region",
"hive.metastore.uris"="thrift://172.21.16.11:7004",
"dfs.nameservices"="hacluster",
"dfs.ha.namenodes.hacluster"="3,4",
"dfs.namenode.rpc-address.hacluster.3"="192.168.0.93:8020",
"dfs.namenode.rpc-address.hacluster.4"="172.21.16.11:8020", "dfs.client.failover.proxy.provider.hacluster"="org.apache.hadoop.hdfs.server.namenode.ha.ConfiguredFailoverProxyProvider");
2022-05-05 23:43:11 +08:00
2970f9842e [doc] The description of the metadata design document is not clear (#9367) 2022-05-05 20:48:32 +08:00
ae0f6b17d8 [doc]fix geo funtion st_distance_sphere (#9341)
add ST_Distance_Sphere function parameter values range restrictions
2022-05-05 20:46:22 +08:00
cec09c18f9 [doc][community] add more collaborator and modify documents (#9320)
1. Add collaborator morrySnow
2. Add document: How To Be A Committer
3. Add guidance to install clang-format 11
2022-05-05 20:46:03 +08:00
e6c3557b1b [improvement](regression-test) Support suite plugin to add third-part… (#9294)
Support register suite plugin to add third-party function.

See 
1. register in: ${DORIS_HOME}/regression-test/plugins/plugin_example.groovy
2. usage: ${DORIS_HOME}/regression-test/suites/demo/test_plugin.groovy
3. doc: ${DORIS_HOME}/docs/zh-CN/developer-guide/regression-testing.md
2022-05-05 20:45:45 +08:00
6d1c300241 [improvement](odbc) support more ODBC Connection Parameters for odbc external table (#9198)
user can add more supported ODBC Connection Parameters to resource PROPERTIES or external table PROPERTIES
2022-05-05 20:45:13 +08:00
e222a50c42 [fix](backup) Remove colocate_with property when backing up a table (#9142)
We currently not support backup table with colocation property.
So that we have to remove colocate_with property from a table when backing up.
2022-05-05 20:44:27 +08:00
7d6645f8f1 [doc] update member.md (#9361) 2022-05-05 09:57:23 +08:00
512d8784d9 [improvement](load) Add http header size parameter (#9357)
Add the http header size parameter to avoid failure due to too many fields when users import using stream load.
The normal default is 8192, and 10K is given here.
2022-05-05 09:56:53 +08:00
ac5f4d6c7e [docs] Fix some typos in documentation. (#9356) 2022-05-05 09:56:02 +08:00
4ca3eb7fe2 [improvement](regression-test) support exclude suite/group/directory (#9096)
regression testing framework support skip some suite/group/directory
2022-05-05 09:50:07 +08:00
4a578b02a5 [fix][doc]add design doc (#9324)
add design doc
2022-05-05 09:31:37 +08:00
f1aa9668af [refactor][storage format] Forbidden rowset v1 (#9248)
- Force change the existing olaptable's storage format from V1 to V2
- Forbidden to create new olap table with storage format == v1 OR do schema change that want to create new v1 format
2022-05-04 17:32:20 +08:00
ac3f981175 [typo] fix getting started doc (#9352) 2022-05-03 22:39:23 +08:00
d6e88955c2 [doc] Implement java-format-code.md for IDEA (#9349) 2022-05-03 22:38:45 +08:00
9272226920 [doc] Remove deprecated BE config and add new config (#9347) 2022-05-03 22:37:51 +08:00
7eefad429b [doc] Update sequence-column-manual.md (#9321) 2022-05-03 22:34:02 +08:00
5074018f0c [doc] fix EN doc edit link 404 (#9182) 2022-05-01 22:08:28 +08:00
b655ba8768 [doc] update doris manager doc (#9319) 2022-05-01 17:54:37 +08:00
bdf66731fa [doc] Add Flink Connector Sink Bitmap Type Doc (#9316) 2022-05-01 17:53:10 +08:00
239b6374ca [doc] fix new doc v2 bug (#9309)
change sql-references-v2 to sql-references
2022-05-01 17:51:34 +08:00