Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
55 views

What does cassandra do during compaction?

I know that cassandra merges sstables, row-keys, remove tombstone and all. 1)But i am really interested to know how it performs compaction ? 2)As sstables are immutable does it copy all the ...
2
votes
1answer
311 views

efficient way to convert scatter indices into gather indices?

I'm trying to write a stream compaction (take an array and get rid of empty elements) with SIMD intrinsics. Each iteration of the loop processes 8 elements at a time (SIMD width). With SSE ...
2
votes
2answers
518 views

Thrust: Removing duplicates in key-value arrays

I have a pair of arrays of equal size, I will call them keys and values. For example: K: V 1: 99 1: 100 1: 100 1: 100 1: 103 2: 103 2: 105 3: 45 3: 67 The keys are sorted and the values associated ...