Good day everyone!
We are currently working with around 10TB of data. I would like to clarify how the EnableStorage parameter works in the PostgreSQL configuration.
“PostgreSQL”: {
“EnableIndex”: true,
“EnableStorage”: false
}
According to the documentation, when EnableStorage = true, all data store in DB. I have a few questions:
Does setting EnableStorage = true mean that data is stored locally in PostgreSQL? Is it a good way ?
If EnableStorage = false, does this mean that only indexing is handled via PostgreSQL, and the actual data is not stored in the database.
Any insights or recommendations would be appreciated. Thanks!