You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 24, 2023. It is now read-only.
Is your feature request related to a problem? Please describe.
This line in scheduler.c;lj seems problematic: (datomic/transact-with-retries conn [[:db/add instance-id :instance/exit-code (int exit-code)]])))))
Reduces the overhead of writing to datomic via batching.
Describe the solution you'd like
Use a process similar to the progress messages or sandbox syncer to aggregate and reduce number of transactions sent to datomic.
Describe alternatives you've considered
None.
Additional context
We are wary of the load we are putting on datomic. There is a feeling that aggregating transactions mitigates against the scenario of overloading datomic.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
This line in
scheduler.c;lj
seems problematic:(datomic/transact-with-retries conn [[:db/add instance-id :instance/exit-code (int exit-code)]])))))
Reduces the overhead of writing to datomic via batching.
Describe the solution you'd like
Use a process similar to the progress messages or sandbox syncer to aggregate and reduce number of transactions sent to datomic.
Describe alternatives you've considered
None.
Additional context
We are wary of the load we are putting on datomic. There is a feeling that aggregating transactions mitigates against the scenario of overloading datomic.
The text was updated successfully, but these errors were encountered: