April 2018 Summaries
2 posts from Yugabyte
Filter
Month:
Year:
Post Summaries
Back to Blog
YugabyteDB is a high-performance distributed SQL database that supports fully distributed ACID transactions across multiple rows, multiple shards, and multiple nodes at any scale. It simplifies the complex task of ensuring data integrity while supporting highly concurrent operations. Unlike other NoSQL databases, YugabyteDB makes distributed ACID transactions work without compromising on high performance. The database uses a transaction manager to manage the lifecycle of transactions, which runs on every node in the cluster and automatically scales out as nodes are added. YugabyteDB achieves high performance by aggressively caching transactions in progress, fine-grained locking, safe time, and auto-detecting and optimizing single-row ACID vs distributed ACID transactions. The database is designed to strike a balance between high-performance single-row ACID guarantees and distributed ACID transactions with extreme data integrity, allowing developers to simplify their application development through a unified data platform that brings together SQL, internet-scale growth, and global distribution.
Apr 24, 2018
2,413 words in the original blog post.
Kubernetes has become a viable solution for orchestrating stateful apps, thanks to the introduction of StatefulSets, which provide ordered operations, stable network identities, persistent storage, and mandatory headless services. These features enable the management of stateful applications such as databases, message queues, and metadata stores, which require long-running persistence and stable network identities. By using StatefulSets, developers can deploy stateful apps in a consistent, efficient, and resilient manner, making Kubernetes a strong candidate for mission-critical production environments.
Apr 17, 2018
1,185 words in the original blog post.