-
Notifications
You must be signed in to change notification settings - Fork 2.5k
[HUDI-842] Implementation of HUDI RFC-15. #2398
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
de9fed1
d1681b2
25cc6ae
b681969
6265956
49bf0e0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,226 @@ | ||
| /* | ||
| * 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.hudi.cli.commands; | ||
|
|
||
| import org.apache.hadoop.fs.FileStatus; | ||
| import org.apache.hadoop.fs.Path; | ||
| import org.apache.hudi.cli.HoodieCLI; | ||
| import org.apache.hudi.cli.utils.SparkUtil; | ||
| import org.apache.hudi.client.common.HoodieSparkEngineContext; | ||
| import org.apache.hudi.common.config.HoodieMetadataConfig; | ||
| import org.apache.hudi.common.util.HoodieTimer; | ||
| import org.apache.hudi.common.util.ValidationUtils; | ||
| import org.apache.hudi.config.HoodieWriteConfig; | ||
| import org.apache.hudi.metadata.HoodieBackedTableMetadata; | ||
| import org.apache.hudi.metadata.HoodieTableMetadata; | ||
| import org.apache.hudi.metadata.SparkHoodieBackedTableMetadataWriter; | ||
|
|
||
| import org.apache.spark.api.java.JavaSparkContext; | ||
| import org.springframework.shell.core.CommandMarker; | ||
| import org.springframework.shell.core.annotation.CliCommand; | ||
| import org.springframework.shell.core.annotation.CliOption; | ||
| import org.springframework.stereotype.Component; | ||
|
|
||
| import java.io.FileNotFoundException; | ||
| import java.io.IOException; | ||
| import java.util.Arrays; | ||
| import java.util.List; | ||
| import java.util.Map; | ||
|
|
||
| /** | ||
| * CLI commands to operate on the Metadata Table. | ||
| */ | ||
| @Component | ||
| public class MetadataCommand implements CommandMarker { | ||
|
|
||
| private JavaSparkContext jsc; | ||
| private static String metadataBaseDirectory; | ||
|
|
||
| /** | ||
| * Sets the directory to store/read Metadata Table. | ||
| * | ||
| * This can be used to store the metadata table away from the dataset directory. | ||
| * - Useful for testing as well as for using via the HUDI CLI so that the actual dataset is not written to. | ||
| * - Useful for testing Metadata Table performance and operations on existing datasets before enabling. | ||
| */ | ||
| public static void setMetadataBaseDirectory(String metadataDir) { | ||
| ValidationUtils.checkState(metadataBaseDirectory == null, | ||
| "metadataBaseDirectory is already set to " + metadataBaseDirectory); | ||
| metadataBaseDirectory = metadataDir; | ||
| } | ||
|
|
||
| public static String getMetadataTableBasePath(String tableBasePath) { | ||
| if (metadataBaseDirectory != null) { | ||
| return metadataBaseDirectory; | ||
| } | ||
| return HoodieTableMetadata.getMetadataTableBasePath(tableBasePath); | ||
| } | ||
|
|
||
| @CliCommand(value = "metadata set", help = "Set options for Metadata Table") | ||
| public String set(@CliOption(key = {"metadataDir"}, | ||
| help = "Directory to read/write metadata table (can be different from dataset)", unspecifiedDefaultValue = "") | ||
| final String metadataDir) { | ||
| if (!metadataDir.isEmpty()) { | ||
| setMetadataBaseDirectory(metadataDir); | ||
| } | ||
|
|
||
| return "Ok"; | ||
| } | ||
|
|
||
| @CliCommand(value = "metadata create", help = "Create the Metadata Table if it does not exist") | ||
| public String create() throws IOException { | ||
| HoodieCLI.getTableMetaClient(); | ||
| Path metadataPath = new Path(getMetadataTableBasePath(HoodieCLI.basePath)); | ||
| try { | ||
| FileStatus[] statuses = HoodieCLI.fs.listStatus(metadataPath); | ||
| if (statuses.length > 0) { | ||
| throw new RuntimeException("Metadata directory (" + metadataPath.toString() + ") not empty."); | ||
| } | ||
| } catch (FileNotFoundException e) { | ||
| // Metadata directory does not exist yet | ||
| HoodieCLI.fs.mkdirs(metadataPath); | ||
| } | ||
|
|
||
| HoodieTimer timer = new HoodieTimer().startTimer(); | ||
| HoodieWriteConfig writeConfig = getWriteConfig(); | ||
| initJavaSparkContext(); | ||
| SparkHoodieBackedTableMetadataWriter.create(HoodieCLI.conf, writeConfig, new HoodieSparkEngineContext(jsc)); | ||
| return String.format("Created Metadata Table in %s (duration=%.2f secs)", metadataPath, timer.endTimer() / 1000.0); | ||
| } | ||
|
|
||
| @CliCommand(value = "metadata delete", help = "Remove the Metadata Table") | ||
| public String delete() throws Exception { | ||
| HoodieCLI.getTableMetaClient(); | ||
| Path metadataPath = new Path(getMetadataTableBasePath(HoodieCLI.basePath)); | ||
| try { | ||
| FileStatus[] statuses = HoodieCLI.fs.listStatus(metadataPath); | ||
|
||
| if (statuses.length > 0) { | ||
| HoodieCLI.fs.delete(metadataPath, true); | ||
| } | ||
| } catch (FileNotFoundException e) { | ||
| // Metadata directory does not exist | ||
| } | ||
|
|
||
| return String.format("Removed Metadata Table from %s", metadataPath); | ||
| } | ||
|
|
||
| @CliCommand(value = "metadata init", help = "Update the metadata table from commits since the creation") | ||
|
||
| public String init(@CliOption(key = {"readonly"}, unspecifiedDefaultValue = "false", | ||
|
||
| help = "Open in read-only mode") final boolean readOnly) throws Exception { | ||
| HoodieCLI.getTableMetaClient(); | ||
| Path metadataPath = new Path(getMetadataTableBasePath(HoodieCLI.basePath)); | ||
| try { | ||
| HoodieCLI.fs.listStatus(metadataPath); | ||
| } catch (FileNotFoundException e) { | ||
| // Metadata directory does not exist | ||
| throw new RuntimeException("Metadata directory (" + metadataPath.toString() + ") does not exist."); | ||
| } | ||
|
|
||
| HoodieTimer timer = new HoodieTimer().startTimer(); | ||
| if (!readOnly) { | ||
| HoodieWriteConfig writeConfig = getWriteConfig(); | ||
| initJavaSparkContext(); | ||
| SparkHoodieBackedTableMetadataWriter.create(HoodieCLI.conf, writeConfig, new HoodieSparkEngineContext(jsc)); | ||
| } | ||
|
|
||
| String action = readOnly ? "Opened" : "Initialized"; | ||
| return String.format(action + " Metadata Table in %s (duration=%.2fsec)", metadataPath, (timer.endTimer()) / 1000.0); | ||
| } | ||
|
|
||
| @CliCommand(value = "metadata stats", help = "Print stats about the metadata") | ||
| public String stats() throws IOException { | ||
| HoodieCLI.getTableMetaClient(); | ||
| HoodieBackedTableMetadata metadata = new HoodieBackedTableMetadata(HoodieCLI.conf, HoodieCLI.basePath, "/tmp", true, false, false); | ||
| Map<String, String> stats = metadata.stats(); | ||
|
|
||
| StringBuffer out = new StringBuffer("\n"); | ||
| out.append(String.format("Base path: %s\n", getMetadataTableBasePath(HoodieCLI.basePath))); | ||
| for (Map.Entry<String, String> entry : stats.entrySet()) { | ||
| out.append(String.format("%s: %s\n", entry.getKey(), entry.getValue())); | ||
| } | ||
|
|
||
| return out.toString(); | ||
| } | ||
|
|
||
| @CliCommand(value = "metadata list-partitions", help = "Print a list of all partitions from the metadata") | ||
| public String listPartitions() throws IOException { | ||
| HoodieCLI.getTableMetaClient(); | ||
| HoodieBackedTableMetadata metadata = new HoodieBackedTableMetadata(HoodieCLI.conf, HoodieCLI.basePath, "/tmp", true, false, false); | ||
|
|
||
| StringBuffer out = new StringBuffer("\n"); | ||
| if (!metadata.enabled()) { | ||
| out.append("=== Metadata Table not initilized. Using file listing to get list of partitions. ===\n\n"); | ||
| } | ||
|
|
||
| long t1 = System.currentTimeMillis(); | ||
| List<String> partitions = metadata.getAllPartitionPaths(); | ||
| long t2 = System.currentTimeMillis(); | ||
|
|
||
| int[] count = {0}; | ||
| partitions.stream().sorted((p1, p2) -> p2.compareTo(p1)).forEach(p -> { | ||
| out.append(p); | ||
| if (++count[0] % 15 == 0) { | ||
| out.append("\n"); | ||
| } else { | ||
| out.append(", "); | ||
| } | ||
| }); | ||
|
|
||
| out.append(String.format("\n\n=== List of partitions retrieved in %.2fsec ===", (t2 - t1) / 1000.0)); | ||
|
|
||
| return out.toString(); | ||
| } | ||
|
|
||
| @CliCommand(value = "metadata list-files", help = "Print a list of all files in a partition from the metadata") | ||
| public String listFiles( | ||
| @CliOption(key = {"partition"}, help = "Name of the partition to list files", mandatory = true) | ||
| final String partition) throws IOException { | ||
| HoodieCLI.getTableMetaClient(); | ||
| HoodieBackedTableMetadata metaReader = new HoodieBackedTableMetadata(HoodieCLI.conf, HoodieCLI.basePath, "/tmp", true, false, false); | ||
|
|
||
| StringBuffer out = new StringBuffer("\n"); | ||
| if (!metaReader.enabled()) { | ||
| out.append("=== Metadata Table not initialized. Using file listing to get list of files in partition. ===\n\n"); | ||
| } | ||
|
|
||
| long t1 = System.currentTimeMillis(); | ||
| FileStatus[] statuses = metaReader.getAllFilesInPartition(new Path(HoodieCLI.basePath, partition)); | ||
| long t2 = System.currentTimeMillis(); | ||
|
|
||
| Arrays.stream(statuses).sorted((p1, p2) -> p2.getPath().getName().compareTo(p1.getPath().getName())).forEach(p -> { | ||
| out.append("\t" + p.getPath().getName()); | ||
| out.append("\n"); | ||
| }); | ||
|
|
||
| out.append(String.format("\n=== Files in partition retrieved in %.2fsec ===", (t2 - t1) / 1000.0)); | ||
|
|
||
| return out.toString(); | ||
| } | ||
|
|
||
| private HoodieWriteConfig getWriteConfig() { | ||
| return HoodieWriteConfig.newBuilder().withPath(HoodieCLI.basePath) | ||
| .withMetadataConfig(HoodieMetadataConfig.newBuilder().enable(true).build()).build(); | ||
| } | ||
|
|
||
| private void initJavaSparkContext() { | ||
| if (jsc == null) { | ||
| jsc = SparkUtil.initJavaSparkConf("HoodieClI"); | ||
| } | ||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -134,6 +134,7 @@ public AbstractHoodieWriteClient(HoodieEngineContext context, HoodieWriteConfig | |
| this.metrics = new HoodieMetrics(config, config.getTableName()); | ||
| this.rollbackPending = rollbackPending; | ||
| this.index = createIndex(writeConfig); | ||
| syncTableMetadata(); | ||
| } | ||
|
|
||
| protected abstract HoodieIndex<T, I, K, O> createIndex(HoodieWriteConfig writeConfig); | ||
|
|
@@ -220,6 +221,10 @@ void emitCommitMetrics(String instantTime, HoodieCommitMetadata metadata, String | |
| } | ||
| } | ||
|
|
||
| protected void syncTableMetadata() { | ||
| // no-op | ||
| } | ||
|
|
||
| /** | ||
| * Filter out HoodieRecords that already exists in the output folder. This is useful in deduplication. | ||
| * | ||
|
|
@@ -407,7 +412,9 @@ protected void postCommit(HoodieTable<T, I, K, O> table, HoodieCommitMetadata me | |
| // We cannot have unbounded commit files. Archive commits if we have to archive | ||
| HoodieTimelineArchiveLog archiveLog = new HoodieTimelineArchiveLog(config, table); | ||
| archiveLog.archiveIfRequired(context); | ||
| autoCleanOnCommit(instantTime); | ||
| autoCleanOnCommit(); | ||
|
|
||
| syncTableMetadata(); | ||
| } catch (IOException ioe) { | ||
| throw new HoodieIOException(ioe.getMessage(), ioe); | ||
| } | ||
|
|
@@ -434,18 +441,18 @@ protected void runAnyPendingClustering(HoodieTable<T, I, K, O> table) { | |
| /** | ||
| * Handle auto clean during commit. | ||
| * | ||
| * @param instantTime | ||
| */ | ||
| protected void autoCleanOnCommit(String instantTime) { | ||
| protected void autoCleanOnCommit() { | ||
| if (config.isAutoClean()) { | ||
| // Call clean to cleanup if there is anything to cleanup after the commit, | ||
| if (config.isAsyncClean()) { | ||
| LOG.info("Cleaner has been spawned already. Waiting for it to finish"); | ||
| AsyncCleanerService.waitForCompletion(asyncCleanerService); | ||
| LOG.info("Cleaner has finished"); | ||
| } else { | ||
| // Do not reuse instantTime for clean as metadata table requires all changes to have unique instant timestamps. | ||
| LOG.info("Auto cleaning is enabled. Running cleaner now"); | ||
| clean(instantTime); | ||
| clean(); | ||
| } | ||
| } | ||
| } | ||
|
|
@@ -599,8 +606,14 @@ public HoodieCleanMetadata clean() { | |
| * Provides a new commit time for a write operation (insert/update/delete). | ||
| */ | ||
| public String startCommit() { | ||
| // NOTE : Need to ensure that rollback is done before a new commit is started | ||
| if (rollbackPending) { | ||
| // Only rollback pending commit/delta-commits. Do not touch compaction commits | ||
| rollbackPendingCommits(); | ||
| } | ||
| String instantTime = HoodieActiveTimeline.createNewInstantTime(); | ||
| startCommitWithTime(instantTime); | ||
| HoodieTableMetaClient metaClient = createMetaClient(true); | ||
|
||
| startCommit(instantTime, metaClient.getCommitActionType(), metaClient); | ||
| return instantTime; | ||
| } | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does this make sense to have this configurability in CLI? During write operations this field is not configurable so metadata will always be updated at
tableBasePath + '.hoodie/metadata/'There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
cc @prashantwason to follow on, with this thinking