-
Notifications
You must be signed in to change notification settings - Fork 41
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
Chore/serde restructure #85
Chore/serde restructure #85
Conversation
arujit
commented
Nov 11, 2021
- Comparing the producer-consumer API changes with the base code restructure branch.
…the working of it
…nced with streamconfigs
dependenciesCommonJar 'com.gojek:stencil:2.0.15' | ||
|
||
testImplementation 'junit:junit:4.12' | ||
testImplementation 'junit:junit:4.13' |
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.
This is to keep the Junit version same as the core.
@@ -60,9 +60,11 @@ dependencies { | |||
compileOnly group: 'org.apache.flink', name: 'flink-connector-kafka_2.11', version: flinkVersion | |||
|
|||
dependenciesCommonJar 'org.apache.flink:flink-metrics-dropwizard:' + flinkVersion | |||
dependenciesCommonJar 'org.apache.flink:flink-json:' + flinkVersion |
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.
These two additions are related to protohandle classes which are migrated to common.
dagger-common/src/main/java/io/odpf/dagger/common/protohandler/TimestampProtoHandler.java
Show resolved
Hide resolved
dagger-common/src/test/java/io/odpf/dagger/common/protohandler/PrimitiveProtoHandlerTest.java
Show resolved
Hide resolved
@@ -55,15 +55,27 @@ public ProtoSerializer(String keyProtoClassName, String messageProtoClassName, S | |||
* @param outputTopic the output topic | |||
*/ | |||
public ProtoSerializer(String keyProtoClassName, String messageProtoClassName, String[] columnNames, StencilClientOrchestrator stencilClientOrchestrator, String outputTopic) { | |||
this(keyProtoClassName, messageProtoClassName, columnNames, stencilClientOrchestrator); |
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.
this was doing the same thing
dagger-core/src/main/java/io/odpf/dagger/core/metrics/reporters/ErrorReporterFactory.java
Show resolved
Hide resolved
* refactor: move protohandler codebase to common and use new source sink APIs
* refactor: move protohandler codebase to common and use new source sink APIs