-
Notifications
You must be signed in to change notification settings - Fork 250
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
Init commit of Kafka protocol supporting #478
base: main
Are you sure you want to change the base?
Conversation
@wuchong PTAL |
@wuchong I've finished this PR, do you have any suggestions? or maybe we can merge the PR and push forward |
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.
Looks good in general. Could you set up the code format plugin in IDEA to automatically re-format to Google Java Style?
https://alibaba.github.io/fluss-docs/docs/dev/ide-setup/#code-formatting
import static org.apache.kafka.common.protocol.ApiKeys.API_VERSIONS; | ||
import static org.apache.kafka.common.protocol.ApiKeys.PRODUCE; | ||
|
||
@Slf4j |
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.
We want to keep a minimal dependency footprint, let's avoid introducing Lombok and manually declare the Logger
instead.
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.
Addressed
@@ -0,0 +1,37 @@ | |||
<?xml version="1.0" encoding="UTF-8"?> |
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.
missing license header
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.
Addressed
fixes: #488
Purpose
Support Kafka Protocol
Tests
NONE