Zipf randomNumItems = new Zipf(profile.rng,
AuctionMarkConstants.ITEM_ITEMS_PER_SELLER_MIN,
max_items,
AuctionMarkConstants.ITEM_ITEMS_PER_SELLER_SIGMA);
for (long i = 0; i < this.tableSize; i++) {
long num_items = randomNumItems.nextInt();
profile.users_per_itemCount.put(num_items);
} // FOR
if (LOG.isDebugEnabled())
LOG.debug("Users Per Item Count:\n" + profile.users_per_itemCount);
this.idGenerator = new UserIdGenerator(profile.users_per_itemCount, benchmark.getWorkloadConfiguration().getTerminals());