forked from apache/paimon
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[flink] Add expire snapshots action. (apache#4091)
- Loading branch information
1 parent
98071a1
commit abb72db
Showing
4 changed files
with
229 additions
and
0 deletions.
There are no files selected for viewing
63 changes: 63 additions & 0 deletions
63
...imon-flink-common/src/main/java/org/apache/paimon/flink/action/ExpireSnapshotsAction.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
/* | ||
* 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.action; | ||
|
||
import org.apache.paimon.flink.procedure.ExpireSnapshotsProcedure; | ||
|
||
import org.apache.flink.table.procedure.DefaultProcedureContext; | ||
|
||
import java.util.Map; | ||
|
||
/** Expire snapshots action for Flink. */ | ||
public class ExpireSnapshotsAction extends ActionBase { | ||
|
||
private final String identifier; | ||
private final Integer retainMax; | ||
private final Integer retainMin; | ||
private final String olderThan; | ||
private final Integer maxDeletes; | ||
|
||
public ExpireSnapshotsAction( | ||
String warehouse, | ||
String identifier, | ||
Map<String, String> catalogConfig, | ||
Integer retainMax, | ||
Integer retainMin, | ||
String olderThan, | ||
Integer maxDeletes) { | ||
super(warehouse, catalogConfig); | ||
this.identifier = identifier; | ||
this.retainMax = retainMax; | ||
this.retainMin = retainMin; | ||
this.olderThan = olderThan; | ||
this.maxDeletes = maxDeletes; | ||
} | ||
|
||
public void run() throws Exception { | ||
ExpireSnapshotsProcedure expireSnapshotsProcedure = new ExpireSnapshotsProcedure(); | ||
expireSnapshotsProcedure.withCatalog(catalog); | ||
expireSnapshotsProcedure.call( | ||
new DefaultProcedureContext(env), | ||
identifier, | ||
retainMax, | ||
retainMin, | ||
olderThan, | ||
maxDeletes); | ||
} | ||
} |
77 changes: 77 additions & 0 deletions
77
...ink-common/src/main/java/org/apache/paimon/flink/action/ExpireSnapshotsActionFactory.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
/* | ||
* 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.action; | ||
|
||
import java.util.Map; | ||
import java.util.Optional; | ||
|
||
/** Factory to create {@link ExpireSnapshotsAction}. */ | ||
public class ExpireSnapshotsActionFactory implements ActionFactory { | ||
|
||
public static final String IDENTIFIER = "expire_snapshots"; | ||
|
||
private static final String IDENTIFIER_KEY = "identifier"; | ||
|
||
private static final String RETAIN_MAX = "retain_max"; | ||
private static final String RETAIN_MIN = "retain_min"; | ||
private static final String OLDER_THAN = "older_than"; | ||
private static final String MAX_DELETES = "max_deletes"; | ||
|
||
@Override | ||
public String identifier() { | ||
return IDENTIFIER; | ||
} | ||
|
||
@Override | ||
public Optional<Action> create(MultipleParameterToolAdapter params) { | ||
String warehouse = params.get(WAREHOUSE); | ||
Map<String, String> catalogConfig = optionalConfigMap(params, CATALOG_CONF); | ||
String identifier = params.get(IDENTIFIER_KEY); | ||
|
||
Integer retainMax = | ||
params.has(RETAIN_MAX) ? Integer.parseInt(params.get(RETAIN_MAX)) : null; | ||
Integer retainMin = | ||
params.has(RETAIN_MIN) ? Integer.parseInt(params.get(RETAIN_MIN)) : null; | ||
String olderThan = params.has(OLDER_THAN) ? params.get(OLDER_THAN) : null; | ||
Integer maxDeletes = | ||
params.has(MAX_DELETES) ? Integer.parseInt(params.get(MAX_DELETES)) : null; | ||
|
||
ExpireSnapshotsAction action = | ||
new ExpireSnapshotsAction( | ||
warehouse, | ||
identifier, | ||
catalogConfig, | ||
retainMax, | ||
retainMin, | ||
olderThan, | ||
maxDeletes); | ||
|
||
return Optional.of(action); | ||
} | ||
|
||
@Override | ||
public void printHelp() { | ||
System.out.println("Action \"expire_snapshots\" expire the target snapshots."); | ||
System.out.println(); | ||
|
||
System.out.println("Syntax:"); | ||
System.out.println( | ||
" expire_snapshots --warehouse <warehouse_path> --identifier <database.table> --retain_max <max> --retain_min <min> --older_than <older_than> --max_delete <max_delete>"); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters