Hi
I'm using storage-plugins-override.conf to configure the storage plugins on
startup. My storage configurations contain only one or two formats
(parquet, json, csv). Checking the storages in the web gui I noticed that
for all the storages all formats are enabled, e.g. msaccess, iceberg etc.
Is this on purpose or did I do something wrong?
Example configuration:
"storage": {
dfs: {
type: "file",
connection: "file:///",
workspaces: {
"tmp": {
"location": "/tmp",
"writable": true,
"defaultInputFormat": null,
"allowAccessOutsideWorkspace": false
},
"root": {
"location": "/",
"writable": false,
"defaultInputFormat": null,
"allowAccessOutsideWorkspace": false
}
},
formats: {
"parquet": {
"type": "parquet"
},
"json": {
"type": "json",
"extensions": [
"json"
]
}
},
enabled: true
}
}
regards
Stefan