readme updates for workload drivers

This commit is contained in:
Jos de Bruijn
2016-05-26 08:26:08 -07:00
parent f23f856b3a
commit 52ae8f43ad
4 changed files with 19 additions and 3 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

@@ -49,7 +49,15 @@ To run this sample, you need the following prerequisites.
## Sample details
The driver simulates an order insert workload. You can use it to test performance of transaction processing as well as real-time analytics. TBD: ref to analytics queries
This application is used to provide an intensive order entry workload for the WideWorldImporters database. When started it displays the following:
![Alt text](/media/wide-world-importers-order-insert-app.png "WideWorldImporters Order Insert Workload Simulation")
Ensure that the connection string is set appropriately. It is save when the program is edited. If you ever need to set it back to the default value, open the program, clear the string, and exit the program. When you restart the program, the connection string will have been returned to the default value.
The program uses the selected number of threads to concurrently call the `Website.InsertCustomerOrder` stored procedure.
When inserts are occurring, click the button to stop but allow time for the system to respond and stop. It may take a few seconds to respond, particularly if a larger number of threads is being used.
<a name=disclaimers></a>
@@ -51,9 +51,17 @@ To run this sample, you need the following prerequisites.
## Sample details
The driver simulates an insert workload for vehicle location obtained from sensors in the vehicles of Wide World Importers. You can use it to constrast the performance of disk-based with memory-optimized tables on your system.
This application is used to compare the insertion of rows into the OnDisk and InMemory tables in Wide World Importers. The required objects must have already been created by following the earlier steps in the demonstration script.
TBD: more guidelines on perf
When executed, this application displays the following:
![Alt text](/media/wide-world-importers-vehicle-location-insert-app.png "WideWorldImporters Vehicle Location Workload Simulation")
Ensure that the connection string is set appropriately. It is save when the program is edited. If you ever need to set it back to the default value, open the program, clear the string, and exit the program. When you restart the program, the connection string will have been returned to the default value.
You can control the number of threads performing the insert operations. You can choose whether to insert into an on-disk table or an in-memory equivalent of the same table.
The application will periodically (about every second) display the latest execution times for each insert.
<a name=disclaimers></a>