Welcome! Please see the About page for a little more info on how this works.

0 votes
in Cloud by

What are the scaling limits of Datomic?

1 Answer

0 votes
by
 
Best answer

There are no limits for reads. You can scale reads horizontally by

autoscaling the number of instances in a query group
explicitly launching additional query groups
Writes to a single database are limited by the serial nature of Datomic transactions. Given the expected size of Datomic databases (see previous), this limit will typically only be encountered during data import.

...