Reputation: 47
Can anyone please explain me what are all the imaging techniques available in kognitio.
Would be great if you cover the below techniques.
1) Replicated
2) REPLICATED PARTITION IMAGE BY (column_name)
3) HASHED ON (column_name) PARTITION IMAGE BY (column_name)
Thanks in advance.
Upvotes: 1
Views: 95
Reputation: 11375
We have four different Imaging options in WX2 Random – even round robin distribution (default) Hashed – placed onto RAM stores according to key Partial Hashed – as hashed but handles skewing attributes Replicated – complete copy on each RAM Store
Replication puts a copy of the image on every RAM Store. It can be costly in terms of RAM and redistribution time. Good for small lookup/dimension tables It cannot be fragmented. It is required for Theta joins. Replication is per RAM Store and not per node.
Hashing distributes the rows of a table or view image across the RAM Stores. It is dependent upon the value of one or more columns. It is good for joining large tables – hash on common key. It may lead to skewing. The number of distinct values is less than number of RAM Stores. One or two values greatly exceed the others in frequency. Partial distribution may be used to neutralize value skew
Partial hashing is a mechanism to handle joins when a large table is severely skewed on key column(s). It is an alternative to straightforward hashing. Types are Partial hashed/random RAM stores and Partial hashed/replicated across RAM stores
Upvotes: 1
Reputation: 2833
The Kognitio community forum article here has links to all the latest documentation.
In particular, chapter 2 of the Kognitio Guide covers the various table and view image options that exist.
The ones referred to in the original question are:
Upvotes: 2