March 2022 Summaries
4 posts from ScyllaDB
Filter
Month:
Year:
Post Summaries
Back to Blog
ScyllaDB, a NoSQL database startup co-founded by Dor Laor, has been focused on enhancing its database solutions over the past two years, culminating in the anticipated release of ScyllaDB 5.0. Building on its roots of reimplementing Apache Cassandra for improved performance and compatibility, ScyllaDB introduced several technical advancements including an optimized IO scheduler, support for large partitions, and repair-based node operations to streamline data management. The company also shifted from eventual to immediate consistency using the Raft consensus algorithm, enhancing transaction reliability without compromising performance. Additionally, ScyllaDB has strengthened its Change Data Capture (CDC) capabilities to facilitate real-time data streaming, collaborating with partners like Kafka and Redpanda. Benchmarking efforts have demonstrated significant performance gains, particularly with the adoption of AWS's newer i4i instances, which offer more than double the performance of previous generations. These developments were highlighted in discussions at the ScyllaDB Summit, focusing on the evolving landscape of distributed databases and the company's strategic direction.
Mar 31, 2022
2,805 words in the original blog post.
In this continuation of a tutorial series, the article guides readers through performing CRUD (Create, Read, Update, Delete) operations using Node.js with ScyllaDB Cloud. Building upon the initial setup of a ScyllaDB cluster and connection, the article provides detailed instructions for implementing CRUD functionalities in a Todo application. The process involves setting up middleware routes in the backend to handle database operations using CQL queries and axios for HTTP requests in the frontend. The tutorial covers creating items, retrieving them to display in a browser, updating them based on user input, and deleting them, ensuring readers can manage data efficiently in a ScyllaDB Cloud environment. The article also mentions sample projects and encourages feedback for further content development.
Mar 28, 2022
1,341 words in the original blog post.
The ScyllaDB University LIVE event is an upcoming online, instructor-led workshop designed to help participants enhance their understanding of NoSQL and ScyllaDB, catering to both beginners and experienced users through two parallel tracks. The event, scheduled for March 22nd and 23rd, features a blend of advanced topics and introductory content, including sessions on data modeling, database drivers, high availability, and migration to ScyllaDB Cloud, with hands-on labs demonstrating practical applications. Participants can switch between tracks and will have the opportunity to engage in a roundtable with ScyllaDB experts, offering a chance to network and ask questions. The event encourages preparation by recommending pre-event lessons available on ScyllaDB University, and attendees can leverage a free trial of ScyllaDB Cloud. Those who complete the training will receive a certificate and access to additional online learning resources.
Mar 17, 2022
758 words in the original blog post.
In "Getting Started with ScyllaDB Cloud Using Node.js Part 1," Raouf Chebri introduces readers to building a backend application with ScyllaDB Cloud, a NoSQL Database as a Service (DBaaS), using Node.js. The article covers the basics of ScyllaDB and guides users through creating a cluster on AWS using ScyllaDB Cloud. It also explains the concept of a CRUD app (Create, Read, Update, and Delete) and demonstrates building a simple application that connects to a ScyllaDB database using Node.js. The tutorial includes setting up a client-server architecture with a ReactJS frontend and a Node.js server, and offers detailed instructions on deploying a ScyllaDB cluster, establishing a connection using the cassandra-driver, and managing sensitive data with environment variables. The author provides practical steps for creating a keyspace and table within ScyllaDB, using CQLSH for data manipulation, and highlights the ease of transitioning from Apache Cassandra to ScyllaDB due to compatibility. This first part of the series sets the stage for implementing CRUD operations, which will be explored in subsequent articles.
Mar 14, 2022
1,600 words in the original blog post.