You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I built a java kafka producer that uses a schema on apicurio to serialize data, my schema is on group id default I explicitly give the group ID using this configuration for the Serde object
I built a java kafka producer that uses a schema on apicurio to serialize data, my schema is on group id default I explicitly give the group ID using this configuration for the Serde object
properties.put(SerdeConfig.FALLBACK_ARTIFACT_PROVIDER, "io.apicurio.registry.serde.fallback.DefaultFallbackArtifactProvider"); properties.put(SerdeConfig.FALLBACK_ARTIFACT_ID, "test-samuel-value"); properties.put(SerdeConfig.FALLBACK_ARTIFACT_GROUP_ID, "default"); properties.put(SerdeConfig.EXPLICIT_ARTIFACT_ID, "test-samuel-value"); properties.put(SerdeConfig.EXPLICIT_ARTIFACT_GROUP_ID, "default");
However during serialization I get the following error
How can I make sure to send the correct group ?
I use java 17 and this is a part of my pom.xml
The text was updated successfully, but these errors were encountered: