imay commented on a change in pull request #2828: [Temp Partition] Support add/drop/replace temp partitions URL: https://github.com/apache/incubator-doris/pull/2828#discussion_r375674869
########## File path: docs/documentation/cn/administrator-guide/alter-table/alter-table-temp-partition.md ########## @@ -0,0 +1,117 @@ +<!-- +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, +software distributed under the License is distributed on an +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +KIND, either express or implied. See the License for the +specific language governing permissions and limitations +under the License. +--> + +# 临时分区 + +在 0.12 版本中,Doris 支持了临时分区功能。临时分区是对 Doris 中**已存在的数据表分区**的一个复制。这个复制操作仅复制分区的元数据,如分区值范围,分桶数,副本数等等,而**不复制数据**。 Review comment: > What you mean is temp partitions need to support split and merge ? No. I think we can complete the partition split and merge functions through temporary partitions. For example, we create a temporary partition and import the partition data that needs to be merged into this new temporary partition. When the data is imported, replace the previous partitions with this partition. In the same way, partition split can also be achieved through this mechanism. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org