risky question: from <https://www.ory.sh/docs/krat...
# talk-keto
b
risky question: from https://www.ory.sh/docs/kratos/guides/production#database, there’s a note
Don’t use SQLite in production!
has anyone seen what happens if you do use sqlite dsn? is it purely a throughput question, or a security/integrity concern?
Context: we have a static, read-only slice of tuples. I'm considering sqlite (maybe even readonly to be certain) and deploying keto as a sidecar in the deployment's pods
s
memory gets problematic when you restart obviously
it is mainly a security/integrity/availability concern
so in your use-case it would probably be fine
we do run all tests against sqlite, mainly because it is faster
but it has hickups when parallelizing, so test for that as well
b
amazing, thanks for the tips/warnings!