-
Notifications
You must be signed in to change notification settings - Fork 52
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
Default values support in codegen #203
Comments
This would be nice to have, but I’m not sure what we’d do when the default value couldn’t be expressed as a constant. For instance, with a (contrived) schema: {
"type": "record",
"name": "MyRecord",
"fields": [
{
"name": "Value",
"type": [
"MyRecord",
"null"
],
"default": {
"MyRecord": {
"Value": null
}
}
}
]
} the code generator would try to express that as: [DefaultValue(new MyRecord { Value = null })]
public class MyRecord
{
public MyRecord? Value { get; set; }
} which would not compile. |
Sorry for the late reply, I've been sidetracked away from Avro these last few days.
Option 1 would be good enough for most cases, and would be enough to ensure we have a good story when one team generate a schema from C# code, and another team wants to produce a C# class from that same schema. The 2nd team would be able to used that class without new, potentially incompatible schemas being published to the registry. Option 2 would even push this further by allowing a producer to handle schemas that don't come from a generated C# class. |
I’d want to give some more thought to Option 2 since that would presumably require generated code to depend on Chr.Avro.Json, but Option 1 definitely seems like a good first step. Codegen is still one big switch statement, but if we refactored a bit to match the schema/serde builder case pattern, that’d give us a mechanism to report warnings. |
Yes I agree. Option 1 seems to me quite valuable even if we take a bit more time fleshing out Option 2. I don't know whether Option 2 requires any additional dependencies though. Couldn't the default value json be treated as a simple string by the generated code? (and basically ignored until the need to publish a schema arises) |
Yeah, the schema would just be the JSON string, but |
Support for default values were introduced in version 8.0.2 for schema generation, meaning that a class such as this:
Produces this schema, with the expected
"default": null
property:What would be great is to also have the opposite. Given schema above, have the generated code include a
[DefaultValue]
attribute to match the schema. At the moment, here's what the generated class looks like for the schema above when runningdotnet avro generate
:This is a problem, because any producer who uses that class will now produce a new schema which no longer includes the default value, and potentially start creating compatibility problems in the schema registry.
Could the
dotnet avro generate
command be updated to support default values from the schemas?The text was updated successfully, but these errors were encountered: