Commit Graph

1080 Commits

Author SHA1 Message Date
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
17f38cdcb1 [doc] add error doc for action_table.dat (#9263) 2022-05-01 17:50:48 +08:00
e3d7134962 fix complication guide on ubuntu (#9337) 2022-05-01 17:42:13 +08:00
420cc2c3d8 [fix](help-doc) fix format of all sql-manual doc (#9306) 2022-04-29 11:42:02 +08:00
2fa19113ab [fix](profile) Short-circuit and del predicate filter rows are not counted on vectorized exec (#9268) 2022-04-29 10:45:48 +08:00
74a482ca7f [fix] fix docs build bug (#9293)
After this PR #9272, the `docs/build_help_zip.sh` will run failed.
This PR fix this issue.
But the help module still has some parse problem, I will fix it in next PR.

This CL mainly changes:
1. fix `docs/build_help_zip.sh` error
2. remove `sql-reference-v2` to `sql-reference`
3. modify build extension github action to run `docs/build_help_zip.sh`
2022-04-28 22:19:04 +08:00
267e8b67c2 [refactor][doc]The new version of the document is online (#9272)
replace the `docs/` with `new-docs/`
2022-04-28 15:22:34 +08:00
5cbb4a2317 [Improvement](docs) Update EN doc (#9228) 2022-04-27 23:22:38 +08:00
597115c305 [feature] add SHOW TABLET STORAGE FORMAT stmt (#9037)
use this stmt to show tablets storage format in be, if verbose is set,
    will show detail message of tablet storage format.
    e.g.
    ```
    MySQL [(none)]> admin show tablet storage format;
    +-----------+---------+---------+
    | BackendId | V1Count | V2Count |
    +-----------+---------+---------+
    | 10002     | 0       | 2867    |
    +-----------+---------+---------+
    1 row in set (0.003 sec)
    MySQL [test_query_qa]> admin show tablet storage format verbose;
    +-----------+----------+---------------+
    | BackendId | TabletId | StorageFormat |
    +-----------+----------+---------------+
    | 10002     | 39227    | V2            |
    | 10002     | 39221    | V2            |
    | 10002     | 39215    | V2            |
    | 10002     | 39199    | V2            |
    +-----------+----------+---------------+
    4 rows in set (0.034 sec)
    ```
    add storage format infomation to show full table statment.
    ```
    MySQL [test_query_qa]> show full tables;
    +-------------------------+------------+---------------+
    | Tables_in_test_query_qa | Table_type | StorageFormat |
    +-------------------------+------------+---------------+
    | bigtable                | BASE TABLE | V2            |
    | test_dup                | BASE TABLE | V2            |
    | test                    | BASE TABLE | V2            |
    | baseall                 | BASE TABLE | V2            |
    | test_string             | BASE TABLE | V2            |
    +-------------------------+------------+---------------+
    5 rows in set (0.002 sec)
    ```
2022-04-27 10:53:43 +08:00
da4e7ec6c2 [refactor](doc)Cluster upgrade adds metadata backup (#9189) 2022-04-26 10:22:07 +08:00
Pxl
2d83167e50 [Feature] [Lateral-View] support outer combinator of table function (#9147) 2022-04-24 12:09:40 +08:00
4e1b75f5e7 [doc] add docker for Mac note (#9178) 2022-04-23 22:08:53 +08:00
48ac0d9591 [Refactor][doc]Modify the flink doris connector compilation documentation (#9169) 2022-04-23 22:08:09 +08:00
bfa9814350 [doc] add scala2.11 compile doc (#9166) 2022-04-23 22:07:45 +08:00
f2d741fa95 [doc] Modify the release version to prepare the key generation problem solution (#9165) 2022-04-23 22:06:48 +08:00
4911d6898a [docs][typo] Fix some typos in "alter-table" content. (#9131) 2022-04-23 22:05:13 +08:00
4445d3188d [docs][typo] Fix some typos in "getting-started" content. (#9124) 2022-04-23 22:03:59 +08:00
4a10b37ca2 [feature](image tool) support image load tool (#8982) 2022-04-23 21:36:58 +08:00
ae680b4248 [UDF] support RPC udaf part 1: support create RPC udaf in fe (#8510) 2022-04-21 17:38:58 +08:00
1b4cd76847 [feature](vectorized)(function) Support min_by/max_by function. (#8623)
Support min_by/max_by on vectorized engine.
2022-04-20 14:46:19 +08:00
d58e8d76b5 [doc]Release manager docment (#9081)
Add Release manager docment
2022-04-20 14:16:12 +08:00
8d0f06e49a [docs][typo] Fixed Chinese and English "advance-usage.md" files. (#9099)
Fixed Chinese and English "advance-usage.md" files
2022-04-20 14:14:39 +08:00
3a9008f06a [dosc][typo] Fix "basic-usage.md" files. (#9097)
Fix "basic-usage.md"
2022-04-20 14:14:12 +08:00
1d0629925f Modify the compilation docs whether it supports avx2. (#9095)
Modify the compilation docs whether it supports avx2
2022-04-20 14:13:39 +08:00
48f805fbab Fix routine-load-manual.md (#9090)
Fix routine-load-manual
2022-04-20 14:13:19 +08:00
37bd89d24b [typo](docs) fix some typos in docs (#9085)
fix some typos in docs
2022-04-20 14:12:54 +08:00
afce993ca7 [feature](load)(csv) CSV import and export support header (#8765)
- Add two new types to stream load boker load: **csv_with_names** and **csv_with_name_sand_types**
- Add two new types to export: **csv_with_names** and **csv_with_names_and_types**
2022-04-18 15:29:18 +08:00