What is the bandwidth of Datomic Free?

How much data can the free version of Datomic handle provide in terms of storage and bandwidth? As far as I know, a free transactor uses H2 to store a local embedded database.

What prevents me from using this in production, ignoring the obvious lack of storage redundancy and the limited number of peers (1)?

+3
source share
1 answer

The starting version of Datomic Pro is more likely to be more affordable than the free version because it supports all storage services as a licensed version of pro. As for local storage and bandwidth, I would say that it can store up to the amount of free disk space. The transactor processes all the records, so I would suggest that your only potential bandwidth bottlenecks are the hard drive, or if you throw tons of transactions at it, it will wait for the indexing work to complete as your data grows. Indexing can become expensive in terms of costs over time, and it is best to have GC and excision work if you do this large amount.

+1
source

All Articles