-
Notifications
You must be signed in to change notification settings - Fork 15
Enable partition decorator syntax for Storage Write API #69
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
base: main
Are you sure you want to change the base?
Enable partition decorator syntax for Storage Write API #69
Conversation
kcbq-connector/src/main/java/com/wepay/kafka/connect/bigquery/RecordTableResolver.java
Show resolved
Hide resolved
kcbq-connector/src/main/java/com/wepay/kafka/connect/bigquery/RecordTableResolver.java
Outdated
Show resolved
Hide resolved
kcbq-connector/src/main/java/com/wepay/kafka/connect/bigquery/RecordTableResolver.java
Outdated
Show resolved
Hide resolved
2b987ed
to
f5809d8
Compare
@@ -0,0 +1,142 @@ | |||
/* | |||
* Copyright 2024 Copyright 2022 Aiven Oy and |
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.
You can change the date to 2025.
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.
Sorry. I missed that. Please change the date to be one Copyright date of 2025
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.
@Claudenw It fails the license header check if I change it to 2025 because mvn license:remove license:format
regenerates headers to the way they are now:
https://github.com/Aiven-Open/bigquery-connector-for-apache-kafka/actions/runs/16635421449/job/47096590208
Unless I am missing something.
kcbq-connector/src/test/java/com/wepay/kafka/connect/bigquery/RecordTableResolverTest.java
Show resolved
Hide resolved
.../test/java/com/wepay/kafka/connect/bigquery/integration/utils/TimePartitioningTestUtils.java
Show resolved
Hide resolved
kcbq-connector/src/main/java/com/wepay/kafka/connect/bigquery/RecordTableResolver.java
Outdated
Show resolved
Hide resolved
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.
Please add boiler plate headers to the new files as @agrawal-siddharth has pointed out.
Once the code looks good, I'll run the tests and if they pass merge it.
Please copy the header from one of the other source files and do not modify it. The verification test looks for exact text and format. I hope to switch to a different tool in the future but for now we do not allow any changes to the license block. Please fix the headers in the following files:
|
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.
Please change the date to be one Copyright date of 2025 in the 3 new files. It should only have the original date.
@@ -0,0 +1,142 @@ | |||
/* | |||
* Copyright 2024 Copyright 2022 Aiven Oy and |
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.
Sorry. I missed that. Please change the date to be one Copyright date of 2025
@Claudenw could you please re-run the tests? Not sure why the failure. It passes locally fine |
@podgaietska please rebase |
9c4d93c
to
4329d7a
Compare
…riteApi Batch Load
4329d7a
to
906d562
Compare
Hi @Claudenw. Just curious what is happening with this PR? Is there anything else needed from me? |
Overview
Storage Write API recently added support for partition decorator syntax for default streams. This PR enables that feature in the connector’s Storage Write API path.
What Changed