You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I get the with random partition keys, we would use the benefits because nothing can be aggregated. However, with the above code, the entry with key-2 partition would land in key-1 which might be undesirable for applications that want to work on a single partition.
The text was updated successfully, but these errors were encountered:
Yes, this is the expected behaviour, which you can modify with the addition of the ExplicitHashKey value. In general, to achieve higher compression rates common partitions keys will be grouped by KPL unless EHK is supplied.
To test my understanding of the library, I created the following code:
So I assumed it would create different aggregations for different partition keys. However, it does not work like that.
I get the with random partition keys, we would use the benefits because nothing can be aggregated. However, with the above code, the entry with
key-2
partition would land inkey-1
which might be undesirable for applications that want to work on a single partition.The text was updated successfully, but these errors were encountered: