Re: Concurrent schema creation/change strategy

2015-05-26 Thread Jens Rantil
Hi, Generally it can take a couple of seconds before a schema change has propagated to all nodes. The schema will in most cases converge, but as far as I've understood, concurrent schema changes are considered a bad practise and can lead to inconsistent schemas down the road. IIRC if one executes

Concurrent schema creation/change strategy

2015-05-25 Thread Magnus Vojbacke
I have a lot of clients that will try to create the same schema (a keyspace with multiple tables) concurrently during application startup. The idea is that the first time the application starts, the clients will create the schema needed to run (create if not exists, etc...) From what I’ve