Parquet datasource for Evidence
npm install evidence-connector-parquetInstall this plugin in an Evidence app with
``bash`
npm install evidence-connector-parquet
Register the plugin in your project in your evidence.plugins.yaml file with
`bash`
datasources:
evidence-connector-parquet: {}
1. Launch the development server with npm run dev and navigate to the settings menu (localhost:3000/settings) to add a data source using this plugin./sources/your-source-name/
2. (Optional) Specify options for the Parquet reader in the data source settings.
3. Save the data source
4. Add your parquet files to .npm run sources
5. Run to load the data into Evidence.hello.parquet
6. Each parquet file will be accessible as a table:
- -> select * from helloMy Parquet File.parquet
- -> select * from "My Parquet File"`
> Note: If you use spaces, hyphens or special characters in the file name, you must use the double quotes in the table name.