FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
I Built a Schema Migration Tool for Cassandra Because Nothing Else Worked
How-ToDevOps

I Built a Schema Migration Tool for Cassandra Because Nothing Else Worked

via Dev.to DevOpsEresh Gorantla5h ago

Flyway and Liquibase treat Cassandra like PostgreSQL. They miss async DDL, distributed locking, and partial failures. So I built cqltrack — open-source CLI + Python library with schema agreement, LWT locking, and a CQL linter. And then open-sourced it. If you manage Apache Cassandra in production, you've felt this pain. You need to add a column, create an index, or restructure a table. So you SSH into a node, open cqlsh , and paste your CQL. Then you do it again on staging. Then someone on your team does the same change slightly differently on another cluster. Sound familiar? I looked at existing tools. Flyway has a Cassandra plugin. Liquibase can talk CQL. But they all treat Cassandra like PostgreSQL with a different query language. They miss the hard parts: DDL is asynchronous. When you CREATE TABLE , the coordinator returns success before all nodes know the table exists. Your next statement — CREATE INDEX on that table — lands on a different node that hasn't seen it yet. It fails. F

Continue reading on Dev.to DevOps

Opens in a new tab

Read Full Article
6 views

Related Articles

How To Track Entity Changes With EF Core | Audit Logging
How-To

How To Track Entity Changes With EF Core | Audit Logging

Medium Programming • 5h ago

How To Apply Global Filters With EF Core Query Filters
How-To

How To Apply Global Filters With EF Core Query Filters

Medium Programming • 5h ago

For Amazon's Fire Phone to succeed, it'll need to fix its app store problem first
How-To

For Amazon's Fire Phone to succeed, it'll need to fix its app store problem first

ZDNet • 5h ago

How to share your location on Android quickly: 5 easy ways - including by text
How-To

How to share your location on Android quickly: 5 easy ways - including by text

ZDNet • 6h ago

How-To

3 Mistakes Beginner Developers Make Every Year

Medium Programming • 7h ago

Discover More Articles