xushiyan commented on issue #4623: URL: https://github.com/apache/hudi/issues/4623#issuecomment-1015070882
@logan-jun hudi table name will be used to generate avro schema record name and hyphen is not a valid character in avro schema name. see https://avro.apache.org/docs/1.8.2/spec.html#names > The name portion of a fullname, record field names, and enum symbols must: > start with [A-Za-z_] > subsequently contain only [A-Za-z0-9_] make the table name start with a letter and change hyphen to underscore should resolve the problem. -- 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]
