Skip to content
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

Passing in key metadata when Reading From Kafka #34426

Open
wants to merge 4 commits into
base: master
Choose a base branch
from

Conversation

svetakvsundhar
Copy link
Contributor

Fixes #34391


Thank you for your contribution! Follow this checklist to help us incorporate your contribution quickly and easily:

  • Mention the appropriate issue in your description (for example: addresses #123), if applicable. This will automatically add a link to the pull request in the issue. If you would like the issue to automatically close on merging the pull request, comment fixes #<ISSUE NUMBER> instead.
  • Update CHANGES.md with noteworthy changes.
  • If this contribution is large, please file an Apache Individual Contributor License Agreement.

See the Contributor Guide for more tips on how to make review process smoother.

To check the build health, please visit https://github.com/apache/beam/blob/master/.test-infra/BUILD_STATUS.md

GitHub Actions Tests Status (on master branch)

Build python source distribution and wheels
Python tests
Java tests
Go tests

See CI.md for more information about GitHub Actions CI or the workflows README to see a list of phrases to trigger workflows.

@svetakvsundhar
Copy link
Contributor Author

svetakvsundhar commented Mar 25, 2025

Hi @ahmedabu98 ,

I think this PR is in a good place for some initial feedback. There are a couple of things/open notes I had:

(1) Need to still implement this with the PROTO and JSON format (and add respective tests), right now I've only added support for RAW.
(2) It seems like the ReadSchemaTransformProvider doesn't have it's own file for integration tests. What are your thoughts on me creating a new file for integration tests, to test this change?

Any other comments on the general design/flow would be good as well!

beamSchema = Schema.builder().addField("payload", Schema.FieldType.BYTES).build();
valueMapper = getRawBytesToRowFunction(beamSchema);
boolean withKeyMetadata = Boolean.TRUE.equals(configuration.getWithKeyMetadata());
if (withKeyMetadata) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This if block is really long. Can we put the logic here into its own function? Something like

if (withKeyMetadata) {
  return someFnHere(beamSchema);
} else {
  beamSchema = Schema.builder().addField("payload", Schema.FieldType.BYTES).build();
  valueMapper = getRawBytesToRowFunction(beamSchema);
}

}

@Test
public void testGetRawBytesKvToRowFunctionEmptyKey() {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we also add an integration test?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I just saw above comment about ITs. You can add them to KafkaIOIT, where you can write a pipeline which triggers your code path as if it were a user's pipeline.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

+1 to keep using KafkaIOIT. It should already have some integration tests for KafkaIO as a ManagedIO (look for Managed.write/read), which uses the SchemaTransform under the hood

@svetakvsundhar svetakvsundhar marked this pull request as ready for review March 31, 2025 23:18
Copy link
Contributor

Checks are failing. Will not request review until checks are succeeding. If you'd like to override that behavior, comment assign set of reviewers

@github-actions github-actions bot added the build label Apr 1, 2025
Copy link
Contributor

@ahmedabu98 ahmedabu98 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Did a quick look. I think the integration test could use a lil work.

@@ -139,6 +151,59 @@ Row getConfigurationRow() {
}
}

private PCollectionRowTuple expandRawWithKeyMetadata(
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There's a lot of duplicate code from expand() here :(

I'm a fan of making small code changes if possible. Does it make sense to consolidate this with the existing expand() code block?

@@ -155,6 +160,8 @@ public class KafkaIOIT {
private static final int BUFFER_MEMORY_CONFIG = 100554432;

private static final int RETRY_BACKOFF_MS_CONFIG = 5000;
private static String bootstrapServers;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does this ever get initialized?

.addField("payload", Schema.FieldType.BYTES)
.build();

// 3. Read from Kafka using KafkaIO
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we wanna test with the SchemaTransform right?

Comment on lines +108 to +117
public static SerializableFunction<KV<byte[], byte[]>, Row> getRawBytesKvToRowFunction(
Schema rawSchema) {
return new SimpleFunction<KV<byte[], byte[]>, Row>() {
@Override
public Row apply(KV<byte[], byte[]> input) {
return Row.withSchema(rawSchema).addValues(input.getKey(), input.getValue()).build();
}
};
}

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should probably be a fixed function with a fixed output Schema (i.e. not a method)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Feature Request]: Add keyed data to KafkaReadSchemaTransformProvider
3 participants