Not really kotlin-related, but what would you use if you wanted to share a small amount of data (say, a couple of strings under 1kB) across an otherwise shared-nothing cluster? Everything I think of (various key-value store, zookeeper) seems overkill.
d
darkmoon_uk
09/17/2020, 12:55 AM
What does 'cluster' refer to in this context?
darkmoon_uk
09/17/2020, 12:55 AM
Kubernetes?
j
javier Aravena
09/17/2020, 1:34 AM
Just a bunch of servers running the same code. They’re running in EC2 in case there’s something in AWS that fits…
t
tddmonkey
09/17/2020, 7:32 AM
How often do they update? If it’s infrequent, just put it in a file and ship that file to your servers. If it’s more frequent, put it in a DynamoDb table/S3 bucket
👍 1
c
corneil
09/19/2020, 8:12 PM
JGroups? Embed ActiveMQ? Hazelcast? Do you need durability? Pub/sub? UDP?