Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -353,6 +353,7 @@ tasks.register("javaioPreCommit") {
dependsOn(":sdks:java:io:jms:build")
dependsOn(":sdks:java:io:kafka:build")
dependsOn(":sdks:java:io:kafka:upgrade:build")
dependsOn(":sdks:java:io:kafka:file-aware-factories:build")
dependsOn(":sdks:java:io:kudu:build")
dependsOn(":sdks:java:io:mongodb:build")
dependsOn(":sdks:java:io:mqtt:build")
Expand Down
43 changes: 43 additions & 0 deletions sdks/java/extensions/kafka-factories/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
/*
* 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.
*/

plugins { id 'org.apache.beam.module' }
applyJavaNature(
automaticModuleName: 'org.apache.beam.sdk.extensions.kafka.factories',
publish: 'False'
)

description = "Apache Beam :: SDKs :: Java :: Extensions :: Kafka :: Factories"
ext.summary = "Library to instantiate kafka clients with files from GCS or SecretManager."

dependencies {
// ------------------------- CORE DEPENDENCIES -------------------------
implementation project(path: ":sdks:java:core", configuration: "shadow")
provided library.java.kafka_clients
implementation 'com.google.cloud:google-cloud-secretmanager:2.72.0'
implementation library.java.slf4j_api
implementation library.java.vendored_guava_32_1_2_jre
implementation project(path: ":sdks:java:extensions:google-cloud-platform-core")
permitUnusedDeclared project(path: ":sdks:java:extensions:google-cloud-platform-core")
// ------------------------- TEST DEPENDENCIES -------------------------
testImplementation 'org.apache.kafka:kafka-clients:3.9.0'
testImplementation library.java.junit
testImplementation library.java.mockito_core
testRuntimeOnly library.java.mockito_inline
testImplementation project(path: ":sdks:java:core", configuration: "shadowTest")
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,258 @@
/*
* 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.beam.sdk.extensions.kafka.factories;

import com.google.cloud.secretmanager.v1.AccessSecretVersionResponse;
import com.google.cloud.secretmanager.v1.SecretManagerServiceClient;
import com.google.cloud.secretmanager.v1.SecretVersionName;
import java.io.File;
import java.io.IOException;
import java.nio.channels.FileChannel;
import java.nio.channels.ReadableByteChannel;
import java.nio.charset.StandardCharsets;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.nio.file.StandardOpenOption;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;
import java.util.concurrent.ConcurrentHashMap;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import org.apache.beam.sdk.io.FileSystems;
import org.apache.beam.sdk.transforms.SerializableFunction;
import org.apache.beam.vendor.guava.v32_1_2_jre.com.google.common.base.Preconditions;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
* An abstract {@link SerializableFunction} that serves as a base class for factories that need to
* process a configuration map to handle external resources like files and secrets.
*
* <p>This class is designed to be extended by concrete factory implementations (e.g., for creating
* Kafka consumers). It automates the process of detecting special URI strings within the
* configuration values and transforming them before passing the processed configuration to the
* subclass.
*
* <h3>Supported Patterns:</h3>
*
* <ul>
* <li><b>External File Paths:</b> It recognizes paths prefixed with schemes like {@code gs://} or
* {@code s3://} that are supported by the Beam {@link FileSystems} API. It downloads these
* files to a local temporary directory (under {@code /tmp/<factory-type>/...}) and replaces
* the original path in the configuration with the new local file path.
* <li><b>Secret Manager Values:</b> It recognizes strings prefixed with {@code secretValue:}. It
* interprets the rest of the string as a Google Secret Manager secret version name (e.g.,
* "projects/p/secrets/s/versions/v"), fetches the secret payload, and replaces the original
* {@code secretValue:...} identifier with the plain-text secret.
* </ul>
*
* <h3>Usage:</h3>
*
* <p>A subclass must implement the {@link #createObject(Map)} method, which receives the fully
* processed configuration map with all paths localized and secrets resolved. Subclasses can also
* override {@link #downloadAndProcessExtraFiles()} to handle specific preliminary file downloads
* (e.g., a krb5.conf file) before the main configuration processing begins.
*
* @param <T> The type of object this factory creates.
*/
public abstract class FileAwareFactoryFn<T>
Comment thread
fozzie15 marked this conversation as resolved.
implements SerializableFunction<Map<String, Object>, T> {

public static final String SECRET_VALUE_PREFIX = "secretValue:";
public static final String DIRECTORY_PREFIX = "/tmp";
private static final Pattern PATH_PATTERN =
Pattern.compile("([a-zA-Z0-9]+://[^\"]+)|(secretValue:[^\"]+)|(secretFile:[^\"]+)");

private static final Map<String, byte[]> secretCache = new ConcurrentHashMap<>();

private final String factoryType;
private static final Logger LOG = LoggerFactory.getLogger(FileAwareFactoryFn.class);

public FileAwareFactoryFn(String factoryType) {
Preconditions.checkNotNull(factoryType);
this.factoryType = factoryType;
}

protected abstract T createObject(Map<String, Object> config);

@Override
public T apply(Map<String, Object> config) {
if (config == null) {
return createObject(config);
}

Map<String, Object> processedConfig = new HashMap<>(config);

String key = "";
Object value = null;
try {
downloadAndProcessExtraFiles();

for (Map.Entry<String, Object> e : config.entrySet()) {
try {
key = e.getKey();
value = e.getValue();
if (value instanceof String) {
String originalValue = (String) value;
Matcher matcher = PATH_PATTERN.matcher(originalValue);
StringBuffer sb = new StringBuffer();

while (matcher.find()) {
String externalPath = matcher.group(1);
String secretValue = matcher.group(2);
String secretFile = matcher.group(3);

if (externalPath != null) {
try {
String tmpPath = replacePathWithLocal(externalPath);
String localPath = downloadExternalFile(externalPath, tmpPath);
matcher.appendReplacement(sb, Matcher.quoteReplacement(localPath));
LOG.info("Downloaded {} to {}", externalPath, localPath);
} catch (IOException io) {
throw new IOException("Failed to download file : " + externalPath, io);
}
} else if (secretValue != null) {
try {
String secretId = secretValue.substring(SECRET_VALUE_PREFIX.length());
String processedSecret =
processSecret(originalValue, secretId, getSecretWithCache(secretId));

matcher.appendReplacement(sb, Matcher.quoteReplacement(processedSecret));
} catch (IllegalArgumentException ia) {
throw new IllegalArgumentException("Failed to get secret.", ia);
}
} else if (secretFile != null) {
throw new UnsupportedOperationException("Not yet implemented.");
}
}
matcher.appendTail(sb);
String processedValue = sb.toString();
processedConfig.put(key, processedValue);
}
} catch (IOException ex) {
throw new RuntimeException("Failed trying to process value for key " + key + ".", ex);
}
}
} catch (IOException e) {
throw new RuntimeException("Failed trying to process extra files.", e);
}

return createObject(processedConfig);
}

/**
* A function to download files from their specified external storage path and copy them to the
* provided local filepath. The local filepath is provided by the replacePathWithLocal.
*
* @param externalFilePath
* @param outputFileString
* @return
* @throws IOException
*/
protected static synchronized String downloadExternalFile(
String externalFilePath, String outputFileString) throws IOException {
// create the file only if it doesn't exist
if (new File(outputFileString).exists()) {
return outputFileString;
}
Path outputFilePath = Paths.get(outputFileString);
Path parentDir = outputFilePath.getParent();
if (parentDir != null) {
Files.createDirectories(parentDir);
}
LOG.info("Staging external file [{}] to [{}]", externalFilePath, outputFileString);
Set<StandardOpenOption> options = new HashSet<>(2);
Comment thread
fozzie15 marked this conversation as resolved.
options.add(StandardOpenOption.CREATE);
options.add(StandardOpenOption.WRITE);

// Copy the external file into a local file and will throw an I/O exception in case file not
// found.
try (ReadableByteChannel readerChannel =
FileSystems.open(FileSystems.matchSingleFileSpec(externalFilePath).resourceId())) {
try (FileChannel writeChannel = FileChannel.open(outputFilePath, options)) {
writeChannel.transferFrom(readerChannel, 0, Long.MAX_VALUE);
}
}
return outputFileString;
}

protected byte[] getSecretWithCache(String secretId) {
return secretCache.computeIfAbsent(secretId, this::getSecret);
}

/**
* A helper method to create a new string with the external paths replaced with their local path
* and subdirectory based on the factory type in the /tmp directory. For example, the kerberos
* factory type will replace the file paths with /tmp/kerberos/file.path
*
* @param externalPath
* @return a string with all instances of external paths converted to the local paths where the
* files sit.
*/
private String replacePathWithLocal(String externalPath) throws IOException {
String externalBucketPrefixIdentifier = "://";
int externalBucketPrefixIndex = externalPath.lastIndexOf(externalBucketPrefixIdentifier);
if (externalBucketPrefixIndex == -1) {
// if we don't find a known bucket prefix then we will error early.
throw new RuntimeException(
"The provided external bucket could not be matched to a known source.");
}

int prefixLength = externalBucketPrefixIndex + externalBucketPrefixIdentifier.length();
return DIRECTORY_PREFIX + "/" + factoryType + "/" + externalPath.substring(prefixLength);
}

/**
* @throws IOException A hook for subclasses to download and process specific files before the
* main configuration is handled. For example, the kerberos factory can use this to download a
* krb5.conf and set a system property.
*/
protected void downloadAndProcessExtraFiles() throws IOException {
// Default implementation should do nothing.
}

protected String getBaseDirectory() {
return DIRECTORY_PREFIX;
}

protected byte[] getSecret(String secretVersion) {
SecretVersionName secretVersionName;
if (SecretVersionName.isParsableFrom(secretVersion)) {
secretVersionName = SecretVersionName.parse(secretVersion);
} else {
throw new IllegalArgumentException(
"Provided Secret must be in the form"
+ " projects/{project}/secrets/{secret}/versions/{secret_version}");
}
try (SecretManagerServiceClient client = SecretManagerServiceClient.create()) {
AccessSecretVersionResponse response = client.accessSecretVersion(secretVersionName);
return response.getPayload().getData().toByteArray();
} catch (IOException e) {
throw new RuntimeException(e);
}
}

protected String processSecret(String originalValue, String secretId, byte[] secretValue) {
// By Default, this will return the secret value directly. This function can be overridden by
// derived classes.
return new String(secretValue, StandardCharsets.UTF_8);
}
}
Loading
Loading