|
|
|
|
|
by runeks
3444 days ago
|
|
> As far as using GCP's BigTable (HBase compat), we made this decision before we moved to GCP, but we are also not fans of using platform lock-in. Did you consider GCP Datastore as well? It has strong consistency for a single "entity group", but eventual consistency for queries on multiple entity groups. So by storing data only relevant to a single user in an entity group, you can have strongly consistent, atomic transactions on that group (albeit limited to 1 tx/s), and at the same time do global queries on all user data with eventual consistency. |
|