0

I'm using AWS ElasticCache (MemCached) and can see how instances can be created at different data centers/sites. (eg: singapore A or B)

There is no AWS Automatic Replication of ElasticCache from DataCenter to DataCenter...

Therefore is there a way to replicate cache from one site/dc to another? Thus allowing a successful Fail over of Cache...

Adam
  • 505
  • 1
  • 6
  • 10

1 Answers1

1

No, there is no way to automatically do this.

You could write a simple script in your language of choice to manually replicate keys to a different region. I'm not really sure why you'd want to do this though? The network latency introduced from traveling half-way around the world would negate any benefits of memcache. You're better off replicating your persistent datastore and then having a separate memcache cluster in from of that data in each region.

jamieb
  • 3,387
  • 4
  • 24
  • 36