What if I add record while compaction is In Progress for Cassandra?

I am new to Cassandra. I have little huge key space(around 1GB).I am adding 10000 records into that keys pace using loop. What will happen if the compaction job is kick started for the key space which I am currently adding records?. Whether the record insertion will be paused in the middle of loop or some other scenario will happen?..

thanks in advance...

Upvotes: 0

Views: 48

Answers (1)

Russ Bradberry
Russ Bradberry

Reputation: 10865

Compactions happen in the background and will not affect the loading of your data.

Upvotes: 1

Related Questions