2e1ce758f1
[feature](function) support ip function ipv6numtostring(alias inet6_ntoa) ( #27342 )
2023-12-02 11:48:19 +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
334260dff7
[feature](function) support ip function ipv4stringtonum(ordefault, ornull), inet_aton ( #25510 )
2023-11-17 10:27:07 +08:00
1976a06635
[Chore](docs)Hide the job document. ( #26970 )
...
After job reconstruction, insert job is not supported yet.
2023-11-14 18:42:51 +08:00
019fb956d3
[docs](cache) Refactor query-cache docs ( #26418 )
2023-11-10 13:57:20 +08:00
a5565f68b2
[Refactor](opentelemetry) Remove opentelemetry ( #26605 )
2023-11-09 18:05:34 +08:00
7df60a4980
[Refactor](Tvf) delete some unused code of tvf and add doc for queries tvf ( #26460 )
...
1. delete some unused code of tvf
2. add doc for `queries` tvf: #25051
2023-11-09 09:06:09 +08:00
38a14c3325
[docs](fix) add bitmap_remove in sidebars.json ( #26523 )
2023-11-07 19:01:27 +08:00
6f7f0a24c5
[doc])(sidebae)Update partial-update sidebars.json ( #25357 )
2023-10-23 15:15:59 +08:00
2ddd2e5079
[feature](Nereids) add map_agg function ( #25246 )
2023-10-18 06:44:36 -05:00
fe1980d7f2
[docs](docs) Add release note 2.0.2 ( #25375 )
2023-10-16 20:38:45 +08:00
73c3e3ab55
[Feature](x-load) support config min replica num for loading data ( #21118 )
2023-10-11 21:07:35 +08:00
e9eaf49db5
[feature](alter colocate group) Support alter colocate group replica allocation ( #23320 )
2023-09-26 19:55:25 +08:00
8679095e5c
[feature](debug) support debug point used in debug code ( #24502 )
2023-09-25 17:56:12 +08:00
1b95ce1d93
[feature](json-function) add json_insert, json_replace, json_set functions ( #24384 )
...
[feature](json-function) add three json funcitons
2023-09-25 12:52:29 +08:00
81e65f4a12
[feature](function) Support SHA family functions ( #24342 )
2023-09-20 17:21:45 +08:00
ca56921481
[docs](partition) Auto partition docs ( #24574 )
2023-09-20 14:28:23 +08:00
14bd290aec
[feature](jsonb)support json_length and json_contains function ( #24332 )
2023-09-20 10:40:44 +08:00
e59aa49f28
[feature](datetime-func)support milliseconds_add/sub/diff and microseconds_diff ( #24114 )
2023-09-20 10:38:56 +08:00
07720d3ff9
[feature](replica version) Add admin set replica version statement ( #23706 )
2023-09-14 21:12:00 +08:00
a6f05e89f5
[doc](catalog) update cache refresh doc ( #24183 )
...
Some cache refresh doc is missing
2023-09-13 11:45:26 +08:00
0c30fff811
add add navigator for vector distance functions ( #24081 )
2023-09-11 19:55:36 +08:00
3e00d62780
[docs](releasenote) 2.0.1&1.2.7 release note ( #23807 )
2023-09-04 11:29:03 +08:00
1fd637eab7
[Docs](Job)Add Job and Job tasks docs ( #23576 )
2023-08-29 10:06:49 +08:00
4c8fc06e40
[Feature](fe) Add admin set partition version statement ( #23086 )
...
This commit add a statement to modify partition visible version.
2023-08-28 14:31:54 +08:00
eadffedb33
[Feature](fe) Add admin set table status statement ( #23139 )
...
For some certain bugs, jobs is stuck in FE by the table state. For example, There is a bug which causes table remains ROLLUP state after adding rollup job, then other alter jobs later will not succeed because the table state is always ROLLUP but not NORMAL.
This commit adds a statement which is used to set the state of the specified table.
2023-08-28 10:22:09 +08:00
81dd00f6e4
[Feature](Compaction) Support do full compaction by table id ( #22010 )
2023-08-21 11:54:51 +08:00
c67d1cc805
[docs](releasenote)2.0.0 release note ( #22904 )
2023-08-14 10:11:03 +08:00
84ee814bc3
[docs](docs) Update invalid pics of release note 1.1.0 and 2.0-beta ( #22804 )
2023-08-11 20:08:21 +08:00
71807ceb5f
[Enhancement](tvf) Table value function support reading local file ( #17404 )
...
I tested the local tvf with tpch queries. First, generate `lineitem` datasets with 6001215 rows, and load it into `lineitem` table by:
```
insert into lineitem select c11, c1, c4, c2, c3, c5, c6, c7, c8, c9, c10, c12, c13, c14, c15, c16
from local(
"file_path" = "tools/tpch-tools/bin/tpch-data/lineitem.tbl.1",
"backend_id" = "10003",
"format" = "csv",
"column_separator" = "|"
);
```
Then, run `q1` and `q16` tpch queries, the query result is correct.
It can also analyze the BE's log directly like:
```
mysql> select * from local(
"file_path" = "log/be.out",
"backend_id" = "10006",
"format" = "csv")
where c1 like "%start_time%" limit 10;
+--------------------------------------------------------+
| c1 |
+--------------------------------------------------------+
| start time: 2023年 08月 07日 星期一 23:20:32 CST |
| start time: 2023年 08月 07日 星期一 23:32:10 CST |
| start time: 2023年 08月 08日 星期二 00:20:50 CST |
| start time: 2023年 08月 08日 星期二 00:29:15 CST |
+--------------------------------------------------------+
```
2023-08-10 20:07:42 +08:00
eafdab0cfd
[Enhancement](tvf) Add frontends_disks table-valued-function ( #22568 )
...
---------
Co-authored-by: yuxianbing <yuxianbing@yy.com >
Co-authored-by: yuxianbing <iloveqaz123>
2023-08-10 10:40:24 +08:00
9422494064
[docs](docs)Rename Title and URL of HLL Functions ( #22728 )
2023-08-09 15:53:39 +08:00
58ef388c32
[docs](docs)Rename Title and URL of JSON Functions ( #22732 )
2023-08-09 15:53:25 +08:00
af5f3ae2a6
[docs](docs)Rename Title & URL and Change Category Name as Numeric of Math Functions ( #22733 )
2023-08-09 15:52:49 +08:00
2fb7aba9bc
[docs](docs)Rename Title and URL of IP Functions ( #22741 )
2023-08-09 15:52:35 +08:00
910863b329
[docs](docs) Rename Window Functions ( #22742 )
2023-08-09 15:52:22 +08:00
61e661d389
[docs](docs)Rename Title and URL of Table Functions ( #22747 )
2023-08-09 15:51:15 +08:00
4332e15800
[docs](docs)Rename Title and URL of Hash Functions ( #22726 )
2023-08-09 15:50:23 +08:00
ed91ce5b1a
[docs](docs)Rename Title and URL of Conditional Functions ( #22725 )
2023-08-09 15:49:11 +08:00
1625a7993c
[docs](docs)Rename Title and URL of Bitmap Functions ( #22721 )
2023-08-09 15:48:16 +08:00
445bebb4cb
[docs](docs)Rename Titles & URL and Add Histogram Files of Aggregate Functions ( #22720 )
2023-08-09 13:13:07 +08:00
512af9b2ff
[docs](docs)Rename Title and URL of Struct Functions ( #22712 )
2023-08-09 13:12:48 +08:00
7164dd09e6
[docs](docs) Rename Title and URL of String Functions ( #22711 )
2023-08-09 13:12:26 +08:00
d7ea27a5c7
[docs](docs) Rename Title and URL of GIS Functions ( #22704 )
2023-08-09 13:12:10 +08:00
8ef38637ae
[docs](docs) Rename Title and URL of Date Functions ( #22686 )
2023-08-08 14:44:05 +08:00
0c972288ef
[docs](docs)Rename Title and URL of Array Functions for SEO ( #22669 )
2023-08-08 14:32:05 +08:00
1d2046de64
[docs](docs)Rename Title of zh-CN Docs ( #22662 )
2023-08-08 14:31:28 +08:00
1a8a1e5b16
[Feature](count_by_enum) support count_by_enum function ( #22071 )
...
count_by_enum(expr1, expr2, ... , exprN);
Treats the data in a column as an enumeration and counts the number of values in each enumeration. Returns the number of enumerated values for each column, and the number of non-null values versus the number of null values.
2023-08-06 16:05:14 +08:00
fcdd1b96d2
[docs](delete-recover) merge docs: recover catalog and recover tablet trash #22525
...
Doris trash include FE catalog recycle bin and BE tablet trash. Users sometimes may be confused abount them. Put them together to let them better understand.
2023-08-05 10:31:48 +08:00
846d6edab8
[docs](docs) Rename Advanced Usage Files for SEO ( #22511 )
2023-08-04 19:33:57 +08:00