Scalability of the flow-blockchain

This page summarizes the projects mentioned and recommended in the original post on /r/FlowBlockchain

Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
  • MySQL

    MySQL Server, the world's most popular open source database, and MySQL Cluster, a real-time, open source transactional database.

  • In the early 2000s, this was a very common "scaling" solution for MySQL databases for example, where once you ran into more write capacity than what one server could handle, your scaling capacity topped out. With this limitation of MySQL, the "solution" was to shard customer data. This also meant you had to build some sort of routing mechanism on top of it so when a write request came in, you had to first figure out where the data was. It leads to unnecessary complexity, challenges with primary keys (because now you also have multiple servers simultaneously creating unique records, so you need a new mechanism other than a simple increment for record 1,2,3, etc.), and more database maintenance.

  • Apache Cassandra

    Mirror of Apache Cassandra

  • Compare this to Cassandra, which was built and designed ahead of time to elegantly scale write transactions across different servers. When you hit the number of write transactions one server could handle, no problem, you add another server and it automatically redistributes the load across all the servers, allowing you to scale writes linearly without adding a router to handle the sharding. It's much harder to build up front - because of the CAP theorom

  • WorkOS

    The modern identity platform for B2B SaaS. The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning.

    WorkOS logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts