Distributed caching #1442
Replies: 2 comments 1 reply
-
This is a good idea. The way we were going to approach this is that, we'll periodically dump the cache to a file, and when a cache reader starts, it first recovers from the most recent dump, and then continues building the cache from realtime data. Does this approach make sense to you? Do you have other ideas? |
Beta Was this translation helpful? Give feedback.
-
Hey @universalmind303 . Thanks for the question. We are yet to write about this clearly on our docs but here are a few patterns. 1)
|
Beta Was this translation helpful? Give feedback.
-
Right now dozer seems to work pretty well as a standalone service for medium sized data, but can really only vertically scale. Are there plans on allowing a customizable cache such as redis or tikv so that you could distribute across multiple nodes?
for example. Right now if i spun up 3 instances of dozer, all 3 would need to individually manage their own ingestion & caching
Ideally I'd like to use a single distributed cache so that I can scale horizontally
Beta Was this translation helpful? Give feedback.
All reactions