blackmwk opened a new issue, #2877:
URL: https://github.com/apache/iceberg-rust/issues/2877
### Is your feature request related to a problem or challenge?
Currently when we parse table properties, we parse them manully. Ideally we
should be able to pasre `TableProperties` using derived approach as following:
```rust
pub struct TableProperties {
#[key="read.split.target-size"]
#[default(134217728// or some const)]
#[doc("Target size when combining data input splits")]
read_split_size: usize,
....
}
```
### Describe the solution you'd like
_No response_
### Willingness to contribute
I can contribute to this feature independently
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]