Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -481,3 +481,13 @@ $RECYCLE.BIN/
nuget.config
*.pem
output/

# LaTeX / Beamer build artifacts
*.aux
*.fdb_latexmk
*.fls
*.nav
*.out
*.snm
*.synctex.gz
*.toc
12 changes: 7 additions & 5 deletions SimNextgenApp.Demo/AzureDbSample/AzureDbInstanceSpec.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,11 @@ internal static class AzureDbRegistry
{
private static readonly List<AzureDbInstanceSpec> Specs = new()
{
// B-series - Burstable (20% baseline for all)
// Azure starts with ~30 credits per core (initial bank for boot-up)
// B-series - Burstable
// Format: Series, Size, VCores, FastSecs, EarnRatePerHour, MaxCredits, BaselineFraction
// Values are taken from Azure's published B-series specs for each size.
// Keep EarnRatePerHour, MaxCredits, and BaselineFraction in sync with the source table,
// since MaxCredits is no longer a simple derivation from EarnRatePerHour.

// IMPORTANT: FastSecs is identical across all B-series sizes (0.080s) because a single-threaded
// query runs at the same speed regardless of vCore count - each vCore has identical performance.
Expand All @@ -80,9 +82,9 @@ internal static class AzureDbRegistry

new BurstableInstanceSpec("B", "1ms", 1, 0.080, 12, 288, 0.20),
new BurstableInstanceSpec("B", "2s", 2, 0.080, 24, 576, 0.20),
new BurstableInstanceSpec("B", "2ms", 2, 0.080, 24, 576, 0.20),
new BurstableInstanceSpec("B", "4ms", 4, 0.080, 48, 1152, 0.20),
new BurstableInstanceSpec("B", "8ms", 8, 0.080, 96, 2304, 0.20),
new BurstableInstanceSpec("B", "2ms", 2, 0.080, 36, 864, 0.30),
new BurstableInstanceSpec("B", "4ms", 4, 0.080, 48, 1296, 0.225),
new BurstableInstanceSpec("B", "8ms", 8, 0.080, 96, 1994, 0.17),

// Future: D-series (General Purpose), E-series (Memory Optimized)
};
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Loading