1
0
mirror of https://github.com/Microsoft/sql-server-samples.git synced 2025-12-08 14:58:54 +00:00

Update README.md

This commit is contained in:
Jos de Bruijn
2016-09-12 13:29:31 -07:00
committed by GitHub
parent 53f3304728
commit 6aa87d79e9

View File

@ -37,14 +37,14 @@ Sample order processing workload that can be used for benchmarking transactional
- There are plans to make a scalable workload driver available as well. Timeline is TBD.
|Stored Procedure|Weight|
|----------|--------|
|GetOrdersByCustomerID|8|
|GetProductsByType|6|
|GetProductsPriceByPK |4 |
|ProductSelectionCriteria |2 |
|InsertOrder |10 |
|FulfillOrders |1 |
|Stored Procedure|Weight|
|----------|--------|
|GetOrdersByCustomerID|8|
|GetProductsByType|6|
|GetProductsPriceByPK |4 |
|ProductSelectionCriteria |2 |
|InsertOrder |10 |
|FulfillOrders |1 |
The recommendation is to use two different drivers:
- a. Main order processing driver(s), each multi-threaded (e.g., 100 or 200 clients), and running the procedures GetOrdersByCustomerID, GetProductsByType, GetProductsPriceByPK, ProductSelectionCriteria, and InsertOrder.