You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: samples/features/in-memory/ticket-reservations/README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -60,14 +60,14 @@ The perf gains from In-Memory OLTP as shown by the load generation app depend on
60
60
- more reads per write => lower perf gain
61
61
- default setting is 100 rows per transaction and 1 read per write
62
62
63
-
If the performance profile after migration to In-Memory OLTP looks choppy, it is likely that log IO is the bottleneck. This can be mitigated by using [delayed durability](https://msdn.microsoft.com/en-us/library/dn449490.aspx). This is enabled by running the following statement in the database:
63
+
If the performance profile after migration to In-Memory OLTP looks choppy, it is likely that log IO is the bottleneck. This can be mitigated by using [delayed durability](https://msdn.microsoft.com/en-us/library/dn449490.aspx). This is enabled by running the following statement in the database:
64
64
`ALTER DATABASE CURRENT SET DELAYED_DURABILITY = FORCED`
65
65
66
66
With default settings on one machine with 24 logical cores and relatively slow SSD for the log the app shows around performance 40X gain, and in this case the bottleneck was log IO. Note that the factor gain can vary with the hardware being used.
67
67
68
68
When deploying to Azure SQL Database, make sure to run the app in an Azure VM in the same region as the database.
69
69
70
-
If you have a beefy machine and are seeing a drop-off in transaction throughput after running the demo for a while, increase the BUCKET_COUNT in 'apply-in-memory-oltp.sql' by a factor of 10 or 100.
70
+
If you have a beefy machine and are seeing a drop-off in transaction throughput after running the demo for a while, increase the BUCKET_COUNT in 'TicketReservations/dbo/Tables/TicketReservationDetail.sql' by a factor of 10 or 100.
71
71
72
72
For any feedback on the sample, contact: sqlserversamples@microsoft.com
0 commit comments