File tree Expand file tree Collapse file tree 1 file changed +47
-0
lines changed
db-esdk-performance-testing/config Expand file tree Collapse file tree 1 file changed +47
-0
lines changed Original file line number Diff line number Diff line change 1+ # DB-ESDK Performance Test Scenarios Configuration
2+
3+ # Data sizes to test (in bytes)
4+ # Categories are for organization only - code processes all sizes regardless of category
5+ data_sizes :
6+ small :
7+ - 1024 # 1KB
8+ - 5120 # 5KB
9+ - 10240 # 10KB
10+ medium :
11+ - 102400 # 100KB
12+ - 400000 # 400KB
13+
14+ # Quick test configuration (reduced test set for faster execution)
15+ quick_config :
16+ data_sizes :
17+ small :
18+ - 102400 # 100KB - within DynamoDB's 400KB limit
19+ iterations :
20+ warmup : 3 # Reduced warmup iterations
21+ measurement : 3 # Reduced measurement iterations
22+ concurrency_levels :
23+ - 1
24+ - 2
25+ test_types :
26+ - " throughput"
27+ - " memory"
28+ - " concurrency"
29+
30+ # Test iterations for statistical significance
31+ iterations :
32+ warmup : 5 # Warmup iterations (not counted)
33+ measurement : 10 # Measurement iterations
34+
35+ # Concurrency levels to test
36+ concurrency_levels :
37+ - 1
38+ - 2
39+ - 4
40+ - 8
41+ - 16
42+
43+ # DynamoDB table name
44+ table_name : " dbesdk-performance-testing"
45+
46+ # Keyring
47+ keyring : " raw-aes"
You can’t perform that action at this time.
0 commit comments