tmljob commented on code in PR #1872: URL: https://github.com/apache/incubator-seatunnel/pull/1872#discussion_r873310657
########## docs/en/connector/source/Excel.md: ########## @@ -0,0 +1,49 @@ +# Excel + +## Description + +Read data from excel file + +:::tip + +Engine Supported and plugin name + +* [x] Spark: Excel +* [ ] Flink: + +::: + +## Options + +| name | type | required | default value | +| ----------------- | ------- | -------- | ------------- | +| path | string | yes | | +| options.useHeader | boolean | yes | | +| options.* | | | | + +### path[string] + +file path, starting with file:// + +### options.useHeader[boolean] + +Whether to use the first row of Excel as the header + +### options.* + +For details, refer to the parameters of the third-party library [spark-excel](https://github.com/crealytics/spark-excel). Review Comment: > Can this plugin support custom header( or custom fields) in config now? 1、You can set whether to use the first line as the header, but it cannot be customized 2、You can set the area range for reading data through "DataAddress" -- 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]
