liferoad commented on code in PR #33362:
URL: https://github.com/apache/beam/pull/33362#discussion_r1897390845


##########
website/www/site/content/en/documentation/sdks/python-custom-multi-language-pipelines-guide.md:
##########
@@ -0,0 +1,307 @@
+---
+type: languages
+title: "Python custom multi-language pipelines guide"
+---
+<!--
+Licensed 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.
+-->
+
+# Python custom multi-language pipelines guide
+
+Apache Beam's powerful model enables the development of scalable, resilient, 
and production-ready transforms, but the process often requires significant 
time and effort.
+
+With SDKs available in multiple languages (Java, Python, Golang, YAML, etc.), 
creating and maintaining transforms for each language becomes a challenge, 
particularly for IOs. Developers must navigate different APIs, address unique 
quirks, and manage ongoing maintenance—such as updates, new features, and 
documentation—while ensuring consistent behavior across SDKs. This results in 
redundant work, as the same functionality is implemented repeatedly for each 
language (M x N effort, where M is the number of SDKs and N is the number of 
transforms).
+
+To streamline this process, Beam’s portability framework enables the use of 
portable transforms that can be shared across languages. This reduces 
duplication, allowing developers to focus on maintaining only N transforms. 
Pipelines combining [portable transforms](#portable-transform) from other 
SDK(s) are known as [“multi-language” 
pipelines](../programming-guide.md#13-multi-language-pipelines-multi-language-pipelines).
+
+The SchemaTransform framework represents the latest advancement in enhancing 
this multi-language capability.
+
+The following jumps straight into the guide. Check out the 
[appendix](#appendix) section below for some of the terminology used here. For 
a runnable example, check out this [page](python-multi-language-pipelines-2.md).
+
+## Create a Java SchemaTransform
+
+For better readability, use 
[**TypedSchemaTransformProvider**](https://beam.apache.org/releases/javadoc/current/index.html?org/apache/beam/sdk/schemas/transforms/TypedSchemaTransformProvider.html),
 a [SchemaTransformProvider](#schematransformprovider) parameterized on a 
custom configuration type `T`. TypedSchemaTransformProvider will take care of 
converting the custom type definition to a Beam [Schema](../basics.md#schema), 
and converting an instance to a Beam Row.
+
+```java
+TypedSchemaTransformProvider<T> extends SchemaTransformProvider {
+  String identifier();
+
+  SchemaTransform from(T configuration);
+}
+```
+
+### Implement a configuration
+
+First, set up a Beam Schema-compatible configuration. This will be used to 
construct the transform. AutoValue types are encouraged for readability. Adding 
the appropriate `@DefaultSchema` annotation will help Beam do the conversions 
mentioned above.
+
+```java
+@DefaultSchema(AutoValueSchema.class)
+@AutoValue
+public abstract static class MyConfiguration {
+  public static Builder builder() {
+    return new AutoValue_MyConfiguration.Builder();
+  }
+  @SchemaFieldDescription("Description of what foo does...")
+  public abstract String getFoo();
+
+  @SchemaFieldDescription("Description of what bar does...")
+  public abstract Integer getBar();
+
+  @AutoValue.Builder
+  public abstract static class Builder {
+    public abstract Builder setFoo(String foo);
+
+    public abstract Builder setBar(Integer bar);
+
+    public abstract MyConfiguration build();
+  }
+}
+```
+
+This configuration is surfaced to foreign SDKs. For example, when using this 
transform in Python, use the following format:
+
+```python
+with beam.Pipeline() as p:
+  (p
+   | Create([...])
+   | MySchemaTransform(foo="abc", bar=123)
+```
+
+When using this transform in YAML, use the following format:
+
+```yaml
+pipeline:
+  transforms:
+    - type: Create
+      ...
+    - type: MySchemaTransform
+      config:
+        foo: "abc"
+        bar: 123
+```
+
+### Implement a TypedSchemaTransformProvider
+Next, implement the `TypedSchemaTransformProvider`. The following two methods 
are required:
+
+- `identifier`: Returns a unique identifier for this transform. The [Beam 
standard](../programming-guide.md#1314-defining-a-urn) follows this structure: 
`<namespace>:<org>:<functionality>:<version>`.
+- `from`: Builds the transform using a provided configuration.
+
+An [expansion service](#expansion-service) uses these methods to find and 
build the transform. The `@AutoService(SchemaTransformProvider.class)` 
annotation is also required to ensure this provider is recognized by the 
expansion service.
+
+```java
+@AutoService(SchemaTransformProvider.class)
+public class MyProvider extends TypedSchemaTransformProvider<MyConfiguration> {
+  @Override
+  public String identifier() {
+    return "beam:schematransform:org.apache.beam:my_transform:v1";
+  }
+
+  @Override
+  protected SchemaTransform from(MyConfiguration configuration) {
+    return new MySchemaTransform(configuration);
+  }
+
+  private static class MySchemaTransform extends SchemaTransform {
+    private final MyConfiguration config;
+    MySchemaTransform(MyConfiguration configuration) {
+        this.config = configuration;
+    }
+
+    @Override
+    public PCollectionRowTuple expand(PCollectionRowTuple input) {
+        PCollection<Row> inputRows = input.get("input");
+        PCollection<Row> outputRows = inputRows.apply(
+                new MyJavaTransform(config.getFoo(), config.getBar()));
+
+        return PCollectionRowTuple.of("output", outputRows);
+    }
+  }
+}
+```
+
+#### Additional metadata (optional)
+The following optional methods can help provide relevant metadata:
+- `description`: Provide a human-readable description for the transform. 
Remote SDKs can use this text to generate documentation.
+- `inputCollectionNames`: Provide PCollection tags that this transform expects 
to take in.
+- `outputCollectionNames`: Provide PCollection tags this transform expects to 
produce.
+
+```java
+  @Override
+  public String description() {
+    return "This transform does this and that...";
+  }
+
+  @Override
+  public List<String> inputCollectionNames() {
+    return Arrays.asList("input_1", "input_2");
+  }
+
+  @Override
+  public List<String> outputCollectionNames() {
+    return Collections.singletonList("output");
+  }
+```
+
+## Build an expansion service that contains the transform
+
+Use an expansion service to make the transform available to foreign SDKs.
+
+First, build a shaded JAR file that includes:
+1. the transform,
+2. the [**ExpansionService 
artifact**](https://central.sonatype.com/artifact/org.apache.beam/beam-sdks-java-expansion-service),
+3. and some additional dependencies.
+
+### Gradle build file
+```groovy
+plugins {
+    id 'com.github.johnrengelman.shadow' version '8.1.1'
+    id 'application'
+}
+
+mainClassName = "org.apache.beam.sdk.expansion.service.ExpansionService"
+
+dependencies {
+    // Dependencies for your transform
+    ...
+
+    // Beam's expansion service
+    runtimeOnly "org.apache.beam:beam-sdks-java-expansion-service:$beamVersion"
+    // AutoService annotation for our SchemaTransform provider
+    compileOnly "com.google.auto.service:auto-service-annotations:1.0.1"
+    annotationProcessor "com.google.auto.service:auto-service:1.0.1"
+    // AutoValue annotation for our configuration object
+    annotationProcessor "com.google.auto.value:auto-value:1.9"
+}
+```
+
+Next, run the shaded JAR file, and provide a port to host the service. A list 
of available SchemaTransformProviders will be displayed.
+
+```shell
+$ java -jar path/to/my-expansion-service.jar 12345

Review Comment:
   only this is shell, right?



-- 
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.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to