All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.paimon.flink.procedure.CompactProcedure Maven / Gradle / Ivy

There is a newer version: 0.9.0
Show newest version
/*
 * 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.
 */

package org.apache.paimon.flink.procedure;

import org.apache.paimon.catalog.Identifier;
import org.apache.paimon.flink.action.CompactAction;
import org.apache.paimon.flink.action.SortCompactAction;
import org.apache.paimon.utils.ParameterUtils;
import org.apache.paimon.utils.Preconditions;
import org.apache.paimon.utils.StringUtils;
import org.apache.paimon.utils.TimeUtils;

import org.apache.flink.table.procedure.ProcedureContext;

import java.util.Collections;
import java.util.Map;

import static org.apache.paimon.flink.action.ActionFactory.FULL;
import static org.apache.paimon.flink.action.CompactActionFactory.checkCompactStrategy;

/**
 * Stay compatible with 1.18 procedure which doesn't support named argument. Usage:
 *
 * 

 *  -- NOTE: use '' as placeholder for optional arguments
 *
 *  -- compact a table (tableId should be 'database_name.table_name')
 *  CALL sys.compact('tableId')
 *
 *  -- compact specific partitions ('pt1=A,pt2=a;pt1=B,pt2=b', ...)
 *  CALL sys.compact('tableId', 'pt1=A,pt2=a;pt1=B,pt2=b')
 *
 *  -- compact a table with sorting
 *  CALL sys.compact('tableId', 'ORDER/ZORDER', 'col1,col2')
 *
 *  -- compact specific partitions with sorting
 *  CALL sys.compact('tableId', 'partitions', 'ORDER/ZORDER', 'col1,col2', 'sink.parallelism=6')
 *
 *  -- compact with specific compact strategy
 *  CALL sys.compact('tableId', 'partitions', 'ORDER/ZORDER', 'col1,col2', 'sink.parallelism=6', 'minor')
 *
 * 
*/ public class CompactProcedure extends ProcedureBase { public static final String IDENTIFIER = "compact"; public String[] call(ProcedureContext procedureContext, String tableId) throws Exception { return call(procedureContext, tableId, ""); } public String[] call(ProcedureContext procedureContext, String tableId, String partitions) throws Exception { return call(procedureContext, tableId, partitions, "", "", "", ""); } public String[] call( ProcedureContext procedureContext, String tableId, String orderStrategy, String orderByColumns) throws Exception { return call(procedureContext, tableId, "", orderStrategy, orderByColumns, "", ""); } public String[] call( ProcedureContext procedureContext, String tableId, String partitions, String orderStrategy, String orderByColumns) throws Exception { return call(procedureContext, tableId, partitions, orderStrategy, orderByColumns, "", ""); } public String[] call( ProcedureContext procedureContext, String tableId, String partitions, String orderStrategy, String orderByColumns, String tableOptions) throws Exception { return call( procedureContext, tableId, partitions, orderStrategy, orderByColumns, tableOptions, ""); } public String[] call( ProcedureContext procedureContext, String tableId, String partitions, String orderStrategy, String orderByColumns, String tableOptions, String whereSql) throws Exception { return call( procedureContext, tableId, partitions, orderStrategy, orderByColumns, tableOptions, whereSql, "", null); } public String[] call( ProcedureContext procedureContext, String tableId, String partitions, String orderStrategy, String orderByColumns, String tableOptions, String whereSql, String partitionIdleTime, String compactStrategy) throws Exception { Map catalogOptions = catalog.options(); Map tableConf = StringUtils.isNullOrWhitespaceOnly(tableOptions) ? Collections.emptyMap() : ParameterUtils.parseCommaSeparatedKeyValues(tableOptions); Identifier identifier = Identifier.fromString(tableId); CompactAction action; String jobName; if (orderStrategy.isEmpty() && orderByColumns.isEmpty()) { action = new CompactAction( identifier.getDatabaseName(), identifier.getObjectName(), catalogOptions, tableConf); if (!(StringUtils.isNullOrWhitespaceOnly(partitionIdleTime))) { action.withPartitionIdleTime(TimeUtils.parseDuration(partitionIdleTime)); } if (checkCompactStrategy(compactStrategy)) { action.withFullCompaction(compactStrategy.trim().equalsIgnoreCase(FULL)); } jobName = "Compact Job"; } else if (!orderStrategy.isEmpty() && !orderByColumns.isEmpty()) { Preconditions.checkArgument( StringUtils.isNullOrWhitespaceOnly(partitionIdleTime), "sort compact do not support 'partition_idle_time'."); action = new SortCompactAction( identifier.getDatabaseName(), identifier.getObjectName(), catalogOptions, tableConf) .withOrderStrategy(orderStrategy) .withOrderColumns(orderByColumns.split(",")); jobName = "Sort Compact Job"; } else { throw new IllegalArgumentException( "You must specify 'order strategy' and 'order by columns' both."); } if (!(StringUtils.isNullOrWhitespaceOnly(partitions))) { action.withPartitions(ParameterUtils.getPartitions(partitions.split(";"))); } if (!StringUtils.isNullOrWhitespaceOnly(whereSql)) { action.withWhereSql(whereSql); } return execute(procedureContext, action, jobName); } @Override public String identifier() { return IDENTIFIER; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy