This is an automated email from the ASF dual-hosted git repository.
dataroaring pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push:
new 159462ed528 [enhancement](tde) add configuration for TDE key rotation
(#58171)
159462ed528 is described below
commit 159462ed528d71e189ec89d63634c727e06bd3f9
Author: Luwei <[email protected]>
AuthorDate: Fri Nov 21 03:52:01 2025 +0800
[enhancement](tde) add configuration for TDE key rotation (#58171)
---
.../src/main/java/org/apache/doris/common/Config.java | 14 ++++++++++++++
1 file changed, 14 insertions(+)
diff --git a/fe/fe-common/src/main/java/org/apache/doris/common/Config.java
b/fe/fe-common/src/main/java/org/apache/doris/common/Config.java
index 8c4f8881208..3611b810f69 100644
--- a/fe/fe-common/src/main/java/org/apache/doris/common/Config.java
+++ b/fe/fe-common/src/main/java/org/apache/doris/common/Config.java
@@ -3695,6 +3695,20 @@ public class Config extends ConfigBase {
})
public static String doris_tde_algorithm = "PLAINTEXT";
+ @ConfField(mutable = true, description = {
+ "数据加密自动rotate master key的时间间隔,单位为毫秒,默认间隔是一个月",
+ "The time interval for automatic rotation of the master key in
data encryption, in milliseconds."
+ + "The default interval is one month."
+ })
+ public static long doris_tde_rotate_master_key_interval_ms = 30 * 24 *
3600 * 1000L;
+
+ @ConfField(mutable = true, description = {
+ "数据加密检查是否要rotate的时间间隔,单位为毫秒,默认间隔是五分钟",
+ "Data encryption checks whether to rotate the time interval in
milliseconds, "
+ + "and the default interval is five minutes."
+ })
+ public static long doris_tde_check_rotate_master_key_interval_ms = 5 * 60
* 1000L;
+
@ConfField(mutable = true, description = {
"数据质量错误时,第一行错误信息的最大长度,默认 256 字节",
"The maximum length of the first row error message when data quality
error occurs, default is 256 bytes"
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]