Same infra, multiple transactors?

Hello,

Is it possible and 200% safe to use a single set of infra for several transactors (with different dbs) ? DDB table, role set, log bucket.

TY

For every dynamodb table there can only be one active transactor. If you start several transactors, the other ones will wait for the first one to fail to write heartbeats to the table and take over the job as transactor.

However, in each dynamodb table there can be several datomic databases. But they all go through the same single transactor for doing transactions.

If you want several transactors since the systems are separated in some other way, they should probably use different dynamo db tables as well. I don’t know if it would be possible to share table, but I cannot really see what would justify it.