Is it possible to switch to another DBMS instead of SQLite?

Asked by Everett Toews

I'm pretty sure the answer is no but I wanted to ask.

If we wanted to use another DBMS instead of SQLite for the Account DB and Container DB (and any other DBs), is that possible with some easy config?

Thanks,
Everett

Question information

Language:
English Edit question
Status:
Solved
For:
OpenStack Object Storage (swift) Edit question
Assignee:
No assignee Edit question
Solved by:
John Dickinson
Solved:
Last query:
Last reply:
Revision history for this message
Best John Dickinson (notmyname) said :
#1

The easy answer is "no". You can't do that. There is no config to change it.

A swift cluster can have millions of individual sqlite databases. And replication relies on being able to rysnc the dbs between servers. Those sorts of things aren't really feasible with most other databases.

Revision history for this message
Everett Toews (everett-toews) said :
#2

Thanks John Dickinson, that solved my question.