Not really kotlin-related, but what would you use ...
# random
j
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
What does 'cluster' refer to in this context?
Kubernetes?
j
Just a bunch of servers running the same code. They’re running in EC2 in case there’s something in AWS that fits…
t
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
JGroups? Embed ActiveMQ? Hazelcast? Do you need durability? Pub/sub? UDP?
a
RSocket maybe? coupled with service discovery.