|
|
|
|
|
by threeseed
3160 days ago
|
|
Customer Analytical Record / Feature Engineering Store One customer column, tens of thousands of attribute columns. If you need everything about a customer it is a single, O(1) fetch operation which makes it perfect for driving chat bots, call centres, websites, operational decisioning engines, dashboards etc. Almost every large company will have one of these. You can't really do it in relational systems properly because (a) you hit the column limit, (b) often it is sparse i.e. lots of NULLs everywhere, (c) you need this system to be distributed since it often gets a lot of load. |
|