yihua commented on code in PR #17524: URL: https://github.com/apache/hudi/pull/17524#discussion_r2599827665
########## hudi-client/hudi-client-common/src/main/java/org/apache/hudi/client/SecondaryIndexStats.java: ########## @@ -18,12 +18,17 @@ package org.apache.hudi.client; +import lombok.Getter; +import lombok.Setter; + import java.io.Serializable; /** * Class used to hold secondary index metadata stats. These stats are generated from * various write handles during write. */ +@Getter +@Setter Review Comment: Could we use [@Data](https://projectlombok.org/features/Data) for such data class? -- 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]
