c1f666c497
[doc] fix typo ( #28245 )
2023-12-11 18:09:54 +08:00
53802fe0da
[doc] document desc param is incorrect #26063 ( #26064 )
2023-12-11 10:33:07 +08:00
287bd87a4f
[typo](docs)add some faq for flink-connector-doris ( #26309 )
...
* add flink-connector-doris faq
* add faq
2023-12-09 02:19:49 +08:00
bd8130154a
[fix](doc) spell errors fixes hardware-info-action ( #28154 )
2023-12-09 01:47:19 +08:00
b6e72d57c5
[Improvement](hms catalog) support show_create_database for hms catalog ( #28145 )
...
* [Improvement](hms catalog) support show_create_database for hms catalog
* update
2023-12-09 01:34:21 +08:00
baf85547ae
[feature](jdbc) support call function to pass sql directly to jdbc catalog #26492
...
Support a new stmt in Nereids:
`CALL EXECUTE_STMT("jdbc", "stmt")`
So that we can pass the origin stmt directly to the datasource of a jdbc catalog.
show case:
```
mysql> select * from mysql_catalog.db1.tbl1;
+------+------+
| k1 | k2 |
+------+------+
| 111 | 222 |
+------+------+
1 row in set (0.63 sec)
mysql> call execute("mysql_catalog", "insert into db1.tbl1 values(1,'abc')");
Query OK, 0 rows affected (0.01 sec)
mysql> select * from mysql_catalog.db1.tbl1;
+------+------+
| k1 | k2 |
+------+------+
| 111 | 222 |
| 1 | abc |
+------+------+
2 rows in set (0.03 sec)
mysql> call execute_stmt("mysql_catalog", "delete from db1.tbl1 where k1=111");
Query OK, 0 rows affected (0.01 sec)
mysql> select * from mysql_catalog.db1.tbl1;
+------+------+
| k1 | k2 |
+------+------+
| 1 | abc |
+------+------+
1 row in set (0.03 sec)
```
2023-12-08 23:06:05 +08:00
573b594df3
[improvement](Variant Type) Support displaying subcolumns expanded for the variant column ( #27764 )
2023-12-08 20:34:58 +08:00
0931eb536c
Revert "[Improvement](auditlog) add column catalog for audit log and audit log table ( #26403 )" ( #28177 )
...
This reverts commit daea751a986823bf5858704663d58f49fd5dfb39.
2023-12-08 18:46:59 +08:00
cd108688c1
[Chore](docs)Fix job error docs ( #28127 )
2023-12-08 10:24:21 +08:00
25b90eb782
[Feature](function) support random int from specific range ( #28076 )
...
mysql> select rand(-20, -10);
+------------------+
| random(-20, -10) |
+------------------+
| -13 |
+------------------+
1 row in set (0.10 sec)
2023-12-08 10:15:25 +08:00
81a0f8c041
[Feature](function) support generating const values from tvf numbers ( #28051 )
...
If specified, got a column of constant. otherwise an incremental series like it always be.
mysql> select * from numbers("number" = "5", "const_value" = "-123");
+--------+
| number |
+--------+
| -123 |
| -123 |
| -123 |
| -123 |
| -123 |
+--------+
5 rows in set (0.11 sec)
2023-12-07 22:26:43 +08:00
a2d66911cd
[chore](docs) Fix partition cache design principles #28110
2023-12-07 22:23:46 +08:00
b1c5519aa8
[doc](statistics)Update external catalog statistics doc ( #28123 )
2023-12-07 21:33:05 +08:00
8c79b86f5b
Revert "[feature](merge-on-write) enable merge-on-write by default ( #27188 )" ( #28096 )
...
This reverts commit 00c8bab84de8154052f9d323800b436cd0ad36e5.
2023-12-07 11:31:36 +08:00
3a7a8bb107
[opt](resource-tag) root and admin user can use any resource tag by default ( #28088 )
...
In #25331 , I change the behavior of user's default resource tag, that is, if a user does not set resource tag,
it can only use default resource tag.
This PR change this logic. The normal user can only use default resource tag if resource tag is not set,
but root and admin user can use any resource tag if resource tag is not set.
2023-12-07 11:22:30 +08:00
00bcf0d762
[doc](paimon) add more example for paimon catalog ( #28087 )
2023-12-07 10:21:02 +08:00
00c8bab84d
[feature](merge-on-write) enable merge-on-write by default ( #27188 )
2023-12-06 21:06:58 +08:00
0ff5a1cc25
[fix](doc) spell error and aligned with code ( #27609 )
2023-12-06 20:58:39 +08:00
fa5096f510
[feature](analyze_cmd) add show-tablets-belong stmt for analyzing a batch of tablet-ids ( #27994 )
2023-12-06 15:59:00 +08:00
cbf1f8620a
[Feature](job)support cancel task and fix log invalid ( #27703 )
...
- Running task can be show and fix cancel fail
- When the insert task scheduling cycle is reached, if there are still tasks running, the scheduling of this task will be canceled at this time.
- refactor job status changes SQL
- Fix timer job window error
- Support cancel task
2023-12-06 10:44:09 +08:00
e427ac9338
[typo](doc) update default value of compaction_promotion_min_size_mbytes ( #25839 )
...
Co-authored-by: gnehil <adamlee489@gamil.com >
2023-12-04 17:58:46 +08:00
27e1b2ac2d
[docs](fix) fix document error ( #27612 )
2023-12-04 14:30:41 +08:00
80f528bf26
[enhancement](backup-restore) add config for upload/download task num per be ( #27772 )
...
set upload/download task num per be, and improve the overall speed of upload/download, enhance the performance of backup and recovery.
---------
Signed-off-by: nextdreamblue <zxw520blue1@163.com >
2023-12-04 11:19:45 +08:00
e9827f443f
[typo](docs)add some tips for mc and add dlf.catalog.id info to dlf doc ( #27754 )
...
add doc for max compute and dlf
2023-12-04 10:03:21 +08:00
2e1ce758f1
[feature](function) support ip function ipv6numtostring(alias inet6_ntoa) ( #27342 )
2023-12-02 11:48:19 +08:00
fcfd0aa8e0
[fix](doc) spell error ( #27079 )
...
fixed Spelling errors in metadata-operation and cold-hot-separation
2023-12-01 21:30:50 +08:00
d80bfc19c9
[fix](doc) spell error fixes for FE & BE Config documents ( #27619 )
2023-12-01 20:53:26 +08:00
327035f2b0
[fix](doc) chinese translation replaced and case fix ( #27611 )
2023-12-01 20:53:07 +08:00
c93e5d9e89
[doc](flink-connector) update flink doc and options ( #27875 )
...
---------
Co-authored-by: wudi <>
2023-12-01 17:40:08 +08:00
435192bddc
[doc](stats) add auto_analyze_table_width_threshold description. ( #27818 )
2023-11-30 18:15:11 +08:00
9d2aac305f
[doc](partial update) update suggestions of using unique key table ( #27810 )
2023-11-30 17:27:39 +08:00
83ed8d3cba
[Feat](Nereids) join hint support stage one ( #27378 )
...
support view as a independent unit of leading hint
add random test check of leading hint query
add more test with data of leading hint query
add random test check of distribute hint
2023-11-29 21:08:08 +08:00
c30299cbf7
[docs](partition) Improve auto partitions document ( #27662 )
2023-11-29 15:08:52 +08:00
2a66a5d167
[doc](fix) k8s operator docs fix ( #27479 )
2023-11-29 10:52:33 +08:00
7923365dd4
[fix](doc)add config for delete timeout job ( #27629 )
2023-11-29 10:51:46 +08:00
7398c3daf1
[Feature-Variant](Variant Type) support variant type query and index ( #27676 )
2023-11-29 10:37:28 +08:00
3bc09e55f6
[Improvement](unset_variable) add docs for unset-variable stmt and update privilege check ( #27672 )
2023-11-29 10:30:18 +08:00
5bdfaf6447
[improve](metrics)Display garbage collector type ( #27408 )
2023-11-27 23:28:25 +08:00
c7b9a32e3e
[improvement](show snapshot) show iceberg snapshot print summary info ( #27448 )
...
Iceberg's snapshot has summary information, but Doris did not display it. This patch fixes this issue.
2023-11-27 20:56:50 +08:00
50c442fc6c
[DOC](sparkload)add spark load faq ( #27455 )
...
add spark load FAQ
2023-11-27 17:49:52 +08:00
dc1a31715b
[doc](flink) Update doc index title ( #27410 )
2023-11-27 15:32:10 +08:00
9aafcf2e22
[Enhance](fe) Support setting initial root password when FE firstly launch ( #27438 )
2023-11-27 11:03:27 +08:00
7134da63ac
[improvement](nereids) add config for nereids trace dir ( #27495 )
...
Signed-off-by: nextdreamblue <zxw520blue1@163.com >
2023-11-25 10:37:23 +08:00
6142a539f4
[deprecated](external) remove deprecated hudi and iceberg external table ( #27456 )
...
The creation of hudi and iceberg table is disallowed since v1.2.
All these features are covered by hudi/iceberg catalog.
We should remove the code in v2.1
The PR mainly changes:
1. remove the code of hudi/iceberg external table.
2. remove code of iceberg database.
3. disallowed hive external table's creation.
4. disabled odbc,mysql,broker external table by default, and add FE config `disable_odbc_mysql_broker_table` to control it
2023-11-24 23:18:07 +08:00
096ce9d75b
[typo](doc)Add flink cdc partial column update column ( #26402 )
2023-11-24 17:10:33 +08:00
fdcb401835
[doc](fix) json load supported format ( #27415 )
...
Co-authored-by: qinhao <qinhao@newland.com.cn >
2023-11-24 16:06:44 +08:00
2ea33518b0
[Opt](load) use batching to optimize auto partition ( #26915 )
...
use batching to optimize auto partition
2023-11-23 19:12:28 +08:00
4b22fc14d5
[Feature](update) Support update on current_timestamp ( #25884 )
2023-11-23 16:23:31 +08:00
8e3b4e99d9
[improve](move-memtable) add switch for stream load in fe.conf ( #27440 )
2023-11-23 15:11:17 +08:00
39663119ca
[minor](doc) Add sql manual for stats #27176
2023-11-22 13:15:42 +08:00