Reputation: 628
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
Reputation: 10865
Compactions happen in the background and will not affect the loading of your data.
Upvotes: 1