This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| - First High Snake Lord of Waterdeep | |
| - Prime Vizier of the Yuan Ti Purebloods in Waterdeep | |
| - First Ethereal Warrior Lord of Waterdeep | |
| - Seargent of Snake Arms | |
| - Lord of Snake Arms | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // define a sampler named "item_scan" which samples from the item_scan entity type | |
| sampler retail.item_scans : retail.item_scans <- murmur3(); | |
| entity retail.item_scans pop=1000000000 // define a data type of item_scan, with 10E9 unique samples | |
| // create a timestamp, advancing by sampleid * 1000 (1000 millis) | |
| // with the beginning starting in year 2015 | |
| field scantime : timestamp <- sampleid(); multiply(1000); dateshift(2015); | |
| // Hash the sampleid, sample from product_ids with uniform distribution | |
| field product_id:text <- murmur3(); filesample(product_ids.txt,uniform); | |
| sampler retail.stores : retail.stores <- murmur3(); |