Commit Graph

2513 Commits

Author SHA1 Message Date
2ff4e9d79d [typo](doc)modify some sql syntax description errors (#22420) 2023-08-02 21:28:02 +08:00
498c0124e8 [typo](doc)modify some sql syntax and example description errors (#22460) 2023-08-02 21:27:34 +08:00
4d9f4c7a68 [typo(docs) Capitalize Title of Files in Data Operation - Update and Delete(#22459) 2023-08-02 19:16:11 +08:00
19d1f49fbe [improvement](compaction) compaction policy and options in the properties of a table (#22461) 2023-08-01 22:02:23 +08:00
94dee833cd [fix](multi-catalog)fix compatible with hdfs HA empty prefix (#22424) 2023-08-01 21:48:16 +08:00
ff0fda460c [be](parameter) change default fragment_pool_thread_num_max from 512 to 2048 (#22448)
change some parameter's default value:
brpc_num_threads from -1 to 256
compaction_task_num_per_disk from 2 to 4
compaction_task_num_per_fast_disk from 4 to 8
fragment_pool_thread_num_max from 512 to 2048
fragment_pool_queue_size from 2048 to 4096

---------

Co-authored-by: yiguolei <yiguolei@gmail.com>
2023-08-01 20:33:41 +08:00
58c62431d1 [typo](doc) illustrate storage policy is not supported on merge-on-write table (#22194) 2023-08-01 15:57:51 +08:00
Pxl
8d16f1bb09 [Chore](materialized-view) update documentation about materialized-view and update test (#22350)
update documentation about materialized-view and update test
2023-08-01 15:13:34 +08:00
f239eb4498 [Docs](Community) Update Join Community Invalid Pics (#22312) 2023-07-31 18:54:22 +08:00
2a320ade82 [feature](property) Add table property "is_being_synced" (#22314) 2023-07-31 18:14:13 +08:00
753098a86e [docs](kerberos)add kerberos FAQ #22349 2023-07-31 14:24:03 +08:00
7bcf024757 [typo](doc)Modify some words typos. #22361
Modify some words typos. An incorrect word was corrected in from_unixtime.md and a superfluous word was removed in BROKER_LOAD.md.
2023-07-31 12:09:50 +08:00
2b9a95f74f [typo](docs) add show collation doc description and example (#22370) 2023-07-30 23:08:52 +08:00
ee754307bb [refactor](load) refactor memtable flush actively (#21634) 2023-07-30 21:31:54 +08:00
47c09f518b [typo](docs) fix show frontends doc typo (#22368)
Co-authored-by: zy-kkk <zhongyk10@gmail.com>
2023-07-30 10:19:56 +08:00
23fd996ea0 [typo](doc) Modify the version supported by the function #22146 2023-07-29 13:58:57 +08:00
ebc8988f70 [typo](docs),array_zip function is supportted in 2.0 (#22306)
Co-authored-by: zhuwei <zhuwei8421@gmail.com>
2023-07-28 21:14:33 +08:00
b6e22340cb [fix](doc) fix command misspelling (#22344)
show backend ----> show backends
2023-07-28 19:16:43 +08:00
7be349a10b [opt](inverted index) add session variable enable_inverted_index_query to control whether query with inverted index (#22255) 2023-07-28 12:43:26 +08:00
313d4fd257 [doc](fix) Improve the document example of alter table replace (#21958)
Improve the document example of alter table replace
The old doc example was wrong
2023-07-28 10:21:47 +08:00
e87174dd6b [feature](planner) modify multi partition prefix value (#22098)
modify multi partition prefix value: 'p_'
2023-07-28 10:21:32 +08:00
a87d34b19b [Fix](multi catalog statistics)Improve external table statistics collection (#22224)
Improve external table statistics collection, including log, observability and fix some bugs.
1. Add Running state for statistics job.
2. Add progress for show analyze job. (n/m tasks finished, n/m task failed and so on)
3. Add analyze time cost for show analyze task.
4. Make task failure message more clear.
5. Synchronize the job status updating code in updateTaskStatus.
6. Fix NPE in HMSAnalyzeTask. (Avoid refreshing statistics cache if the collection sql failed)
7. Return error message for with sync collection while timeout. 
8. Log level improvement
9. Fix misuse of logCreateAnalysisJob for tasks.
2023-07-27 20:01:14 +08:00
391131c7fd [typo](docs)correct describe for grant (#20910) 2023-07-27 20:00:01 +08:00
e29c703ce4 [typo](docs) fix some typo (#21031) 2023-07-27 16:55:48 +08:00
94d2ba5ba0 [Docs](community) Add Join Community Files of EN & CN Verison (#22252) 2023-07-27 16:47:10 +08:00
b597eef436 [fix](doc)description of check_rpc_channel api in http-actions-be (#21568) 2023-07-27 16:09:20 +08:00
31c856351a [enhancement](default_config) change default value of rpc related (#22149)
configs

Bdbje elect timeout is 30 seconds, so we enlarge thrift_rpc_timeout_ms
and txn_commit_rpc_timeout_ms to 60s.

BTW: enlarge bdbje_lock_timeout_second from 1 to 5.
2023-07-27 11:12:26 +08:00
2c7d7937e5 [doc](fe) Add split-brain influence for metadata_failure_recovery (#21801) 2023-07-26 18:21:29 +08:00
f621d8ea65 [doc](stats) full auto analyze docs #21918
Add description for some fe config about analyze
2023-07-26 17:30:10 +08:00
ea2a7a8e56 [Docs](docs) Rename Release Note Title and File name of CN & EN Version (#22157) 2023-07-26 09:20:06 +08:00
e8f4323e0f [Fix](jdbcCatalog) fix typo of some variable #22214 2023-07-26 08:34:45 +08:00
cf677b327b [fix](jdbc catalog) Fixed mappings with type errors for bool and tinyint(1) (#22089)
First of all, mysql does not have a boolean type, its boolean type is actually tinyint(1), in the previous logic, We force tinyint(1) to be a boolean by passing tinyInt1isBit=true, which causes an error if tinyint(1) is not a 0 or 1, Therefore, we need to match tinyint(1) according to tinyint instead of boolean, and this change will not affect the correctness of where k = 1 or where k = true queries
2023-07-25 22:45:22 +08:00
527547b4ed [catalog](faq) add jdbc catalog faq (#22129) 2023-07-25 15:59:16 +08:00
1e8ae7ad16 [doc](flink-connector)improve flink connector doc (#22143) 2023-07-25 15:58:35 +08:00
28b714c371 [feature](executor) using fe version to set instance_num (#22047) 2023-07-25 14:37:42 +08:00
b41fcbb783 [feature](agg) add the aggregation function 'mag_agg' (#22043)
New aggregation function: map_agg.

This function requires two arguments: a key and a value, which are used to build a map.

select map_agg(column1, column2) from t group by column3;
2023-07-25 11:21:03 +08:00
ba2eb4d788 [typo](docs) add jdbc catalog error handling methods (#22160) 2023-07-25 10:45:29 +08:00
fc67929e34 [improvement](catalog) optimize ldap and support more character in user and table name (#21968)
- common name support `-` ,reason: MySQL's db name support `-`
- table name support `-`
- username support `.`,reason:LDAP's username support `.`
- ldap doc
- ldap support rbac
2023-07-24 22:04:37 +08:00
0205f540ac [enhancement](config) Enlarge broker scanner bytes conf to 500G, 5G is still not enough (#22126) 2023-07-24 19:49:39 +08:00
8fa41e4973 [fix](docs) update version since of stream load enable_profile (#21786)
Stream load enable_profile is not supported in 1.2.4.1, update the docs.

Currently it's supported in 2.0.0-rc01.

#21784 has backported this feature into branch 1.2-lts, and it will be included in the 1.2.7 release.
2023-07-24 09:22:12 +08:00
22aa54e335 [enhancement](config) enlarge max_bytes_per_broker_scanner to 5G #22099 2023-07-23 12:00:32 +08:00
eceb30f47e [doc](catalog)paimon doc (#21966)
code pr: #21910
2023-07-23 11:24:40 +08:00
3d0f952934 [FIX](complex-type)delete enable_map/struct_type switch #21957 2023-07-22 15:29:32 +08:00
50c8563f35 [fix](partial update) fix some bugs of sequence column (#21896) 2023-07-22 15:26:48 +08:00
32fce013f7 [feature](docs) add docs dbt-doris adapter (#22067) 2023-07-21 23:34:47 +08:00
e489b60ea3 [feature](load) support line delimiter for old broker load (#22030) 2023-07-21 19:31:19 +08:00
63b17bc7ba [typo](docs) fix some mistake in Doris & Spark Column Type Mapping (#19998) 2023-07-21 16:37:51 +08:00
67a3f37779 [doc](routineload)add routine load ssl example for access ali-kafka (#21877) 2023-07-21 16:03:10 +08:00
732e0d14ff [Enhancement](window-funnel)add different modes for window_funnel() function (#20563) 2023-07-21 13:57:27 +08:00
74313c7d54 [feature-wip](autoinc)(step-3) add auto increment support for unique table (#22036) 2023-07-21 13:24:41 +08:00