This article is for comments to: https://docs.greatexpectations.io/en/latest/how_to_guides/configuring_datasources/how_to_configure_a_pandas_filesystem_datasource.html
Please comment +1 if this How to is important to you.
This article is for comments to: https://docs.greatexpectations.io/en/latest/how_to_guides/configuring_datasources/how_to_configure_a_pandas_filesystem_datasource.html
Please comment +1 if this How to is important to you.
Is there an example showing how to achieve something similar to SubdirReaderBatchKwargsGenerator
? Should I use ConfiguredAssetFilesystemDataConnector or Inferred one? I have different files in one directory, there is not much pattern, each file itself is a data asset and their have their own format (csv/pickle). Is regex now the only way to configure data assets?
Can someone please help with this use case?
Additionally, where can I adjust/insert the kwargs for file types and formats.
e.g.: pipe delimiters.
Anyone have latest/working link to above page? I’m trying to figure how to specify the delimiter to a file on the local FS. Thanks!
To get this working, I added below segment to batch_request in the expectations\mysuite.json
“batch_spec_passthrough”: {
“reader_method”: “read_csv”,
“reader_options”: {
“sep”: “|”
}
}