dojo.md 0.2.0 → 0.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (225) hide show
  1. package/courses/GENERATION_LOG.md +45 -0
  2. package/courses/aws-lambda-debugging/course.yaml +11 -0
  3. package/courses/aws-lambda-debugging/scenarios/level-1/api-gateway-integration.yaml +71 -0
  4. package/courses/aws-lambda-debugging/scenarios/level-1/cloudwatch-logs-basics.yaml +64 -0
  5. package/courses/aws-lambda-debugging/scenarios/level-1/cold-start-basics.yaml +70 -0
  6. package/courses/aws-lambda-debugging/scenarios/level-1/environment-variable-issues.yaml +72 -0
  7. package/courses/aws-lambda-debugging/scenarios/level-1/first-debugging-shift.yaml +73 -0
  8. package/courses/aws-lambda-debugging/scenarios/level-1/handler-import-errors.yaml +71 -0
  9. package/courses/aws-lambda-debugging/scenarios/level-1/iam-permission-errors.yaml +68 -0
  10. package/courses/aws-lambda-debugging/scenarios/level-1/invocation-errors.yaml +72 -0
  11. package/courses/aws-lambda-debugging/scenarios/level-1/lambda-timeout-errors.yaml +65 -0
  12. package/courses/aws-lambda-debugging/scenarios/level-1/memory-and-oom.yaml +70 -0
  13. package/courses/aws-lambda-debugging/scenarios/level-2/async-invocation-failures.yaml +72 -0
  14. package/courses/aws-lambda-debugging/scenarios/level-2/cold-start-optimization.yaml +76 -0
  15. package/courses/aws-lambda-debugging/scenarios/level-2/dynamodb-streams-debugging.yaml +70 -0
  16. package/courses/aws-lambda-debugging/scenarios/level-2/intermediate-debugging-shift.yaml +71 -0
  17. package/courses/aws-lambda-debugging/scenarios/level-2/lambda-concurrency-management.yaml +70 -0
  18. package/courses/aws-lambda-debugging/scenarios/level-2/lambda-layers-debugging.yaml +76 -0
  19. package/courses/aws-lambda-debugging/scenarios/level-2/sam-local-debugging.yaml +74 -0
  20. package/courses/aws-lambda-debugging/scenarios/level-2/sqs-event-source.yaml +72 -0
  21. package/courses/aws-lambda-debugging/scenarios/level-2/vpc-networking-issues.yaml +71 -0
  22. package/courses/aws-lambda-debugging/scenarios/level-2/xray-tracing.yaml +62 -0
  23. package/courses/aws-lambda-debugging/scenarios/level-3/advanced-debugging-shift.yaml +72 -0
  24. package/courses/aws-lambda-debugging/scenarios/level-3/container-image-lambda.yaml +79 -0
  25. package/courses/aws-lambda-debugging/scenarios/level-3/cross-account-invocation.yaml +72 -0
  26. package/courses/aws-lambda-debugging/scenarios/level-3/eventbridge-patterns.yaml +79 -0
  27. package/courses/aws-lambda-debugging/scenarios/level-3/iac-deployment-debugging.yaml +68 -0
  28. package/courses/aws-lambda-debugging/scenarios/level-3/kinesis-stream-processing.yaml +64 -0
  29. package/courses/aws-lambda-debugging/scenarios/level-3/lambda-at-edge.yaml +64 -0
  30. package/courses/aws-lambda-debugging/scenarios/level-3/lambda-extensions-debugging.yaml +67 -0
  31. package/courses/aws-lambda-debugging/scenarios/level-3/powertools-observability.yaml +79 -0
  32. package/courses/aws-lambda-debugging/scenarios/level-3/step-functions-debugging.yaml +80 -0
  33. package/courses/aws-lambda-debugging/scenarios/level-4/cost-optimization-strategy.yaml +67 -0
  34. package/courses/aws-lambda-debugging/scenarios/level-4/expert-debugging-shift.yaml +62 -0
  35. package/courses/aws-lambda-debugging/scenarios/level-4/incident-management-serverless.yaml +61 -0
  36. package/courses/aws-lambda-debugging/scenarios/level-4/multi-region-serverless.yaml +67 -0
  37. package/courses/aws-lambda-debugging/scenarios/level-4/observability-platform-design.yaml +71 -0
  38. package/courses/aws-lambda-debugging/scenarios/level-4/serverless-architecture-design.yaml +64 -0
  39. package/courses/aws-lambda-debugging/scenarios/level-4/serverless-data-architecture.yaml +66 -0
  40. package/courses/aws-lambda-debugging/scenarios/level-4/serverless-migration-strategy.yaml +65 -0
  41. package/courses/aws-lambda-debugging/scenarios/level-4/serverless-security-design.yaml +60 -0
  42. package/courses/aws-lambda-debugging/scenarios/level-4/serverless-testing-strategy.yaml +62 -0
  43. package/courses/aws-lambda-debugging/scenarios/level-5/board-serverless-strategy.yaml +63 -0
  44. package/courses/aws-lambda-debugging/scenarios/level-5/consulting-serverless-adoption.yaml +57 -0
  45. package/courses/aws-lambda-debugging/scenarios/level-5/industry-serverless-patterns.yaml +62 -0
  46. package/courses/aws-lambda-debugging/scenarios/level-5/ma-serverless-integration.yaml +75 -0
  47. package/courses/aws-lambda-debugging/scenarios/level-5/master-debugging-shift.yaml +61 -0
  48. package/courses/aws-lambda-debugging/scenarios/level-5/organizational-serverless-transformation.yaml +65 -0
  49. package/courses/aws-lambda-debugging/scenarios/level-5/regulatory-serverless.yaml +61 -0
  50. package/courses/aws-lambda-debugging/scenarios/level-5/serverless-economics.yaml +65 -0
  51. package/courses/aws-lambda-debugging/scenarios/level-5/serverless-future-technology.yaml +66 -0
  52. package/courses/aws-lambda-debugging/scenarios/level-5/serverless-platform-design.yaml +71 -0
  53. package/courses/docker-container-debugging/course.yaml +11 -0
  54. package/courses/docker-container-debugging/scenarios/level-1/container-exit-codes.yaml +59 -0
  55. package/courses/docker-container-debugging/scenarios/level-1/container-networking-basics.yaml +69 -0
  56. package/courses/docker-container-debugging/scenarios/level-1/docker-logs-debugging.yaml +67 -0
  57. package/courses/docker-container-debugging/scenarios/level-1/dockerfile-build-failures.yaml +71 -0
  58. package/courses/docker-container-debugging/scenarios/level-1/environment-variable-issues.yaml +74 -0
  59. package/courses/docker-container-debugging/scenarios/level-1/first-debugging-shift.yaml +70 -0
  60. package/courses/docker-container-debugging/scenarios/level-1/image-pull-failures.yaml +68 -0
  61. package/courses/docker-container-debugging/scenarios/level-1/port-mapping-issues.yaml +67 -0
  62. package/courses/docker-container-debugging/scenarios/level-1/resource-limits-oom.yaml +70 -0
  63. package/courses/docker-container-debugging/scenarios/level-1/volume-mount-problems.yaml +66 -0
  64. package/courses/docker-container-debugging/scenarios/level-2/container-health-checks.yaml +73 -0
  65. package/courses/docker-container-debugging/scenarios/level-2/docker-compose-debugging.yaml +66 -0
  66. package/courses/docker-container-debugging/scenarios/level-2/docker-exec-debugging.yaml +71 -0
  67. package/courses/docker-container-debugging/scenarios/level-2/image-layer-optimization.yaml +81 -0
  68. package/courses/docker-container-debugging/scenarios/level-2/intermediate-debugging-shift.yaml +73 -0
  69. package/courses/docker-container-debugging/scenarios/level-2/logging-and-log-rotation.yaml +76 -0
  70. package/courses/docker-container-debugging/scenarios/level-2/multi-stage-build-debugging.yaml +76 -0
  71. package/courses/docker-container-debugging/scenarios/level-2/network-debugging-tools.yaml +67 -0
  72. package/courses/docker-container-debugging/scenarios/level-2/pid1-signal-handling.yaml +71 -0
  73. package/courses/docker-container-debugging/scenarios/level-2/security-scanning-basics.yaml +67 -0
  74. package/courses/docker-container-debugging/scenarios/level-3/advanced-debugging-shift.yaml +77 -0
  75. package/courses/docker-container-debugging/scenarios/level-3/buildkit-optimization.yaml +67 -0
  76. package/courses/docker-container-debugging/scenarios/level-3/container-filesystem-debugging.yaml +70 -0
  77. package/courses/docker-container-debugging/scenarios/level-3/container-security-hardening.yaml +74 -0
  78. package/courses/docker-container-debugging/scenarios/level-3/disk-space-management.yaml +74 -0
  79. package/courses/docker-container-debugging/scenarios/level-3/docker-api-automation.yaml +72 -0
  80. package/courses/docker-container-debugging/scenarios/level-3/docker-daemon-issues.yaml +73 -0
  81. package/courses/docker-container-debugging/scenarios/level-3/docker-in-docker-ci.yaml +69 -0
  82. package/courses/docker-container-debugging/scenarios/level-3/overlay-network-debugging.yaml +70 -0
  83. package/courses/docker-container-debugging/scenarios/level-3/production-container-ops.yaml +71 -0
  84. package/courses/docker-container-debugging/scenarios/level-4/cicd-pipeline-design.yaml +66 -0
  85. package/courses/docker-container-debugging/scenarios/level-4/container-monitoring-observability.yaml +63 -0
  86. package/courses/docker-container-debugging/scenarios/level-4/container-orchestration-strategy.yaml +62 -0
  87. package/courses/docker-container-debugging/scenarios/level-4/container-performance-engineering.yaml +64 -0
  88. package/courses/docker-container-debugging/scenarios/level-4/container-security-architecture.yaml +66 -0
  89. package/courses/docker-container-debugging/scenarios/level-4/enterprise-image-management.yaml +58 -0
  90. package/courses/docker-container-debugging/scenarios/level-4/expert-debugging-shift.yaml +63 -0
  91. package/courses/docker-container-debugging/scenarios/level-4/incident-response-containers.yaml +70 -0
  92. package/courses/docker-container-debugging/scenarios/level-4/multi-environment-management.yaml +65 -0
  93. package/courses/docker-container-debugging/scenarios/level-4/stateful-service-containers.yaml +65 -0
  94. package/courses/docker-container-debugging/scenarios/level-5/board-infrastructure-strategy.yaml +58 -0
  95. package/courses/docker-container-debugging/scenarios/level-5/consulting-container-strategy.yaml +61 -0
  96. package/courses/docker-container-debugging/scenarios/level-5/container-platform-architecture.yaml +67 -0
  97. package/courses/docker-container-debugging/scenarios/level-5/container-platform-economics.yaml +67 -0
  98. package/courses/docker-container-debugging/scenarios/level-5/container-technology-evolution.yaml +67 -0
  99. package/courses/docker-container-debugging/scenarios/level-5/disaster-recovery-containers.yaml +66 -0
  100. package/courses/docker-container-debugging/scenarios/level-5/industry-container-patterns.yaml +71 -0
  101. package/courses/docker-container-debugging/scenarios/level-5/master-debugging-shift.yaml +62 -0
  102. package/courses/docker-container-debugging/scenarios/level-5/organizational-transformation.yaml +67 -0
  103. package/courses/docker-container-debugging/scenarios/level-5/regulatory-compliance-containers.yaml +61 -0
  104. package/courses/kubernetes-deployment-troubleshooting/course.yaml +12 -0
  105. package/courses/kubernetes-deployment-troubleshooting/scenarios/level-1/configmap-secret-issues.yaml +69 -0
  106. package/courses/kubernetes-deployment-troubleshooting/scenarios/level-1/crashloopbackoff.yaml +68 -0
  107. package/courses/kubernetes-deployment-troubleshooting/scenarios/level-1/deployment-rollout.yaml +56 -0
  108. package/courses/kubernetes-deployment-troubleshooting/scenarios/level-1/first-troubleshooting-shift.yaml +65 -0
  109. package/courses/kubernetes-deployment-troubleshooting/scenarios/level-1/health-probe-failures.yaml +70 -0
  110. package/courses/kubernetes-deployment-troubleshooting/scenarios/level-1/imagepullbackoff.yaml +57 -0
  111. package/courses/kubernetes-deployment-troubleshooting/scenarios/level-1/kubectl-debugging-basics.yaml +56 -0
  112. package/courses/kubernetes-deployment-troubleshooting/scenarios/level-1/oomkilled.yaml +70 -0
  113. package/courses/kubernetes-deployment-troubleshooting/scenarios/level-1/pending-pods.yaml +68 -0
  114. package/courses/kubernetes-deployment-troubleshooting/scenarios/level-1/service-not-reachable.yaml +66 -0
  115. package/courses/kubernetes-deployment-troubleshooting/scenarios/level-2/dns-resolution-failures.yaml +63 -0
  116. package/courses/kubernetes-deployment-troubleshooting/scenarios/level-2/helm-deployment-failures.yaml +63 -0
  117. package/courses/kubernetes-deployment-troubleshooting/scenarios/level-2/hpa-scaling-issues.yaml +62 -0
  118. package/courses/kubernetes-deployment-troubleshooting/scenarios/level-2/ingress-routing-issues.yaml +63 -0
  119. package/courses/kubernetes-deployment-troubleshooting/scenarios/level-2/init-container-failures.yaml +63 -0
  120. package/courses/kubernetes-deployment-troubleshooting/scenarios/level-2/intermediate-troubleshooting-shift.yaml +66 -0
  121. package/courses/kubernetes-deployment-troubleshooting/scenarios/level-2/network-policy-blocking.yaml +67 -0
  122. package/courses/kubernetes-deployment-troubleshooting/scenarios/level-2/persistent-volume-issues.yaml +69 -0
  123. package/courses/kubernetes-deployment-troubleshooting/scenarios/level-2/rbac-permission-denied.yaml +57 -0
  124. package/courses/kubernetes-deployment-troubleshooting/scenarios/level-2/resource-quota-limits.yaml +64 -0
  125. package/courses/kubernetes-deployment-troubleshooting/scenarios/level-3/advanced-troubleshooting-shift.yaml +69 -0
  126. package/courses/kubernetes-deployment-troubleshooting/scenarios/level-3/cluster-upgrade-failures.yaml +71 -0
  127. package/courses/kubernetes-deployment-troubleshooting/scenarios/level-3/gitops-drift-detection.yaml +62 -0
  128. package/courses/kubernetes-deployment-troubleshooting/scenarios/level-3/job-cronjob-failures.yaml +67 -0
  129. package/courses/kubernetes-deployment-troubleshooting/scenarios/level-3/monitoring-alerting-gaps.yaml +64 -0
  130. package/courses/kubernetes-deployment-troubleshooting/scenarios/level-3/multi-container-debugging.yaml +68 -0
  131. package/courses/kubernetes-deployment-troubleshooting/scenarios/level-3/node-pressure-evictions.yaml +70 -0
  132. package/courses/kubernetes-deployment-troubleshooting/scenarios/level-3/pod-disruption-budgets.yaml +59 -0
  133. package/courses/kubernetes-deployment-troubleshooting/scenarios/level-3/service-mesh-debugging.yaml +64 -0
  134. package/courses/kubernetes-deployment-troubleshooting/scenarios/level-3/statefulset-troubleshooting.yaml +69 -0
  135. package/courses/kubernetes-deployment-troubleshooting/scenarios/level-4/capacity-planning.yaml +65 -0
  136. package/courses/kubernetes-deployment-troubleshooting/scenarios/level-4/cost-optimization.yaml +57 -0
  137. package/courses/kubernetes-deployment-troubleshooting/scenarios/level-4/disaster-recovery-design.yaml +56 -0
  138. package/courses/kubernetes-deployment-troubleshooting/scenarios/level-4/executive-communication.yaml +62 -0
  139. package/courses/kubernetes-deployment-troubleshooting/scenarios/level-4/expert-troubleshooting-shift.yaml +65 -0
  140. package/courses/kubernetes-deployment-troubleshooting/scenarios/level-4/incident-management-process.yaml +59 -0
  141. package/courses/kubernetes-deployment-troubleshooting/scenarios/level-4/multi-cluster-operations.yaml +62 -0
  142. package/courses/kubernetes-deployment-troubleshooting/scenarios/level-4/multi-tenancy-design.yaml +55 -0
  143. package/courses/kubernetes-deployment-troubleshooting/scenarios/level-4/platform-engineering.yaml +59 -0
  144. package/courses/kubernetes-deployment-troubleshooting/scenarios/level-4/security-hardening.yaml +58 -0
  145. package/courses/kubernetes-deployment-troubleshooting/scenarios/level-5/behavioral-science.yaml +62 -0
  146. package/courses/kubernetes-deployment-troubleshooting/scenarios/level-5/board-strategy.yaml +61 -0
  147. package/courses/kubernetes-deployment-troubleshooting/scenarios/level-5/cloud-native-future.yaml +65 -0
  148. package/courses/kubernetes-deployment-troubleshooting/scenarios/level-5/comprehensive-platform.yaml +57 -0
  149. package/courses/kubernetes-deployment-troubleshooting/scenarios/level-5/consulting-engagement.yaml +62 -0
  150. package/courses/kubernetes-deployment-troubleshooting/scenarios/level-5/industry-benchmarks.yaml +58 -0
  151. package/courses/kubernetes-deployment-troubleshooting/scenarios/level-5/ma-integration.yaml +62 -0
  152. package/courses/kubernetes-deployment-troubleshooting/scenarios/level-5/master-troubleshooting-shift.yaml +73 -0
  153. package/courses/kubernetes-deployment-troubleshooting/scenarios/level-5/product-development.yaml +65 -0
  154. package/courses/kubernetes-deployment-troubleshooting/scenarios/level-5/regulatory-compliance.yaml +76 -0
  155. package/courses/mysql-query-optimization/course.yaml +11 -0
  156. package/courses/mysql-query-optimization/scenarios/level-1/buffer-pool-basics.yaml +65 -0
  157. package/courses/mysql-query-optimization/scenarios/level-1/explain-basics.yaml +66 -0
  158. package/courses/mysql-query-optimization/scenarios/level-1/first-optimization-shift.yaml +78 -0
  159. package/courses/mysql-query-optimization/scenarios/level-1/innodb-index-fundamentals.yaml +68 -0
  160. package/courses/mysql-query-optimization/scenarios/level-1/join-basics.yaml +66 -0
  161. package/courses/mysql-query-optimization/scenarios/level-1/n-plus-one-queries.yaml +67 -0
  162. package/courses/mysql-query-optimization/scenarios/level-1/query-rewriting-basics.yaml +66 -0
  163. package/courses/mysql-query-optimization/scenarios/level-1/select-star-problems.yaml +68 -0
  164. package/courses/mysql-query-optimization/scenarios/level-1/slow-query-diagnosis.yaml +65 -0
  165. package/courses/mysql-query-optimization/scenarios/level-1/where-clause-optimization.yaml +65 -0
  166. package/courses/mysql-query-optimization/scenarios/level-2/buffer-pool-tuning.yaml +64 -0
  167. package/courses/mysql-query-optimization/scenarios/level-2/composite-index-design.yaml +71 -0
  168. package/courses/mysql-query-optimization/scenarios/level-2/covering-and-invisible-indexes.yaml +69 -0
  169. package/courses/mysql-query-optimization/scenarios/level-2/cte-and-window-functions.yaml +78 -0
  170. package/courses/mysql-query-optimization/scenarios/level-2/intermediate-optimization-shift.yaml +68 -0
  171. package/courses/mysql-query-optimization/scenarios/level-2/join-optimization.yaml +67 -0
  172. package/courses/mysql-query-optimization/scenarios/level-2/performance-schema-analysis.yaml +69 -0
  173. package/courses/mysql-query-optimization/scenarios/level-2/query-optimizer-hints.yaml +74 -0
  174. package/courses/mysql-query-optimization/scenarios/level-2/subquery-optimization.yaml +70 -0
  175. package/courses/mysql-query-optimization/scenarios/level-2/write-optimization.yaml +63 -0
  176. package/courses/mysql-query-optimization/scenarios/level-3/advanced-optimization-shift.yaml +71 -0
  177. package/courses/mysql-query-optimization/scenarios/level-3/connection-management.yaml +67 -0
  178. package/courses/mysql-query-optimization/scenarios/level-3/full-text-search.yaml +77 -0
  179. package/courses/mysql-query-optimization/scenarios/level-3/json-optimization.yaml +87 -0
  180. package/courses/mysql-query-optimization/scenarios/level-3/lock-contention-analysis.yaml +68 -0
  181. package/courses/mysql-query-optimization/scenarios/level-3/monitoring-alerting.yaml +63 -0
  182. package/courses/mysql-query-optimization/scenarios/level-3/online-schema-changes.yaml +79 -0
  183. package/courses/mysql-query-optimization/scenarios/level-3/partitioning-strategies.yaml +83 -0
  184. package/courses/mysql-query-optimization/scenarios/level-3/query-profiling-deep-dive.yaml +84 -0
  185. package/courses/mysql-query-optimization/scenarios/level-3/replication-optimization.yaml +66 -0
  186. package/courses/mysql-query-optimization/scenarios/level-4/aurora-vs-rds-evaluation.yaml +61 -0
  187. package/courses/mysql-query-optimization/scenarios/level-4/data-architecture.yaml +62 -0
  188. package/courses/mysql-query-optimization/scenarios/level-4/database-migration-planning.yaml +59 -0
  189. package/courses/mysql-query-optimization/scenarios/level-4/enterprise-governance.yaml +50 -0
  190. package/courses/mysql-query-optimization/scenarios/level-4/executive-communication.yaml +54 -0
  191. package/courses/mysql-query-optimization/scenarios/level-4/expert-optimization-shift.yaml +67 -0
  192. package/courses/mysql-query-optimization/scenarios/level-4/high-availability-architecture.yaml +60 -0
  193. package/courses/mysql-query-optimization/scenarios/level-4/optimizer-internals.yaml +62 -0
  194. package/courses/mysql-query-optimization/scenarios/level-4/performance-sla-design.yaml +52 -0
  195. package/courses/mysql-query-optimization/scenarios/level-4/read-replica-scaling.yaml +51 -0
  196. package/courses/mysql-query-optimization/scenarios/level-5/ai-database-future.yaml +45 -0
  197. package/courses/mysql-query-optimization/scenarios/level-5/behavioral-science.yaml +44 -0
  198. package/courses/mysql-query-optimization/scenarios/level-5/benchmark-design.yaml +47 -0
  199. package/courses/mysql-query-optimization/scenarios/level-5/board-strategy.yaml +48 -0
  200. package/courses/mysql-query-optimization/scenarios/level-5/comprehensive-platform.yaml +49 -0
  201. package/courses/mysql-query-optimization/scenarios/level-5/consulting-engagement.yaml +52 -0
  202. package/courses/mysql-query-optimization/scenarios/level-5/ma-database-integration.yaml +47 -0
  203. package/courses/mysql-query-optimization/scenarios/level-5/master-optimization-shift.yaml +56 -0
  204. package/courses/mysql-query-optimization/scenarios/level-5/product-development.yaml +48 -0
  205. package/courses/mysql-query-optimization/scenarios/level-5/regulatory-compliance.yaml +48 -0
  206. package/courses/postgresql-query-optimization/scenarios/level-5/comprehensive-database-system.yaml +70 -0
  207. package/courses/postgresql-query-optimization/scenarios/level-5/database-ai-future.yaml +81 -0
  208. package/courses/postgresql-query-optimization/scenarios/level-5/database-behavioral-science.yaml +63 -0
  209. package/courses/postgresql-query-optimization/scenarios/level-5/database-board-strategy.yaml +77 -0
  210. package/courses/postgresql-query-optimization/scenarios/level-5/database-consulting-engagement.yaml +61 -0
  211. package/courses/postgresql-query-optimization/scenarios/level-5/database-industry-benchmarks.yaml +64 -0
  212. package/courses/postgresql-query-optimization/scenarios/level-5/database-ma-integration.yaml +71 -0
  213. package/courses/postgresql-query-optimization/scenarios/level-5/database-product-development.yaml +72 -0
  214. package/courses/postgresql-query-optimization/scenarios/level-5/database-regulatory-landscape.yaml +76 -0
  215. package/courses/postgresql-query-optimization/scenarios/level-5/master-optimization-shift.yaml +66 -0
  216. package/courses/terraform-infrastructure-setup/course.yaml +11 -0
  217. package/courses/terraform-infrastructure-setup/scenarios/level-1/hcl-syntax-errors.yaml +65 -0
  218. package/courses/terraform-infrastructure-setup/scenarios/level-1/provider-configuration.yaml +62 -0
  219. package/courses/terraform-infrastructure-setup/scenarios/level-1/terraform-init-errors.yaml +72 -0
  220. package/courses/terraform-infrastructure-setup/scenarios/level-1/variable-and-output-errors.yaml +78 -0
  221. package/dist/mcp/session-manager.d.ts +7 -4
  222. package/dist/mcp/session-manager.d.ts.map +1 -1
  223. package/dist/mcp/session-manager.js +23 -8
  224. package/dist/mcp/session-manager.js.map +1 -1
  225. package/package.json +3 -2
@@ -0,0 +1,44 @@
1
+ meta:
2
+ id: behavioral-science
3
+ level: 5
4
+ course: mysql-query-optimization
5
+ type: output
6
+ description: "Apply behavioral science to MySQL operations — nudge engineers toward good query practices and prevent performance anti-patterns at scale"
7
+ tags: [MySQL, behavioral-science, nudge-theory, developer-experience, culture, master]
8
+
9
+ state: {}
10
+
11
+ trigger: |
12
+ Your organization has 300 engineers writing MySQL queries. Despite
13
+ training and documentation, the same anti-patterns keep appearing:
14
+ SELECT *, missing indexes, N+1 queries, and long-running transactions.
15
+
16
+ Anti-pattern frequency (last quarter):
17
+ - SELECT * on wide tables: 90 new instances
18
+ - N+1 queries in new endpoints: 35 instances
19
+ - Missing WHERE on UPDATE/DELETE: 5 production incidents
20
+ - Queries without LIMIT: 50 instances
21
+ - Long transactions blocking replication: 20 incidents
22
+
23
+ Traditional approaches tried:
24
+ - Documentation wiki: 10% read rate
25
+ - Training sessions: attendance drops 60% after first
26
+ - Code review checklist: reviewers skip DB items under pressure
27
+
28
+ Task: Design a behavioral system for MySQL query excellence. Write:
29
+ choice architecture (good defaults), automated nudge system, feedback
30
+ loops, social proof mechanisms, and change management plan.
31
+
32
+ assertions:
33
+ - type: llm_judge
34
+ criteria: "Choice architecture makes good practices default — ORM defaults to explicit columns, query timeouts configured by default, CI/CD includes automatic EXPLAIN analysis, migration tools enforce safe patterns"
35
+ weight: 0.35
36
+ description: "Choice architecture"
37
+ - type: llm_judge
38
+ criteria: "Nudge system intervenes at the right moment — IDE warnings for SELECT *, PR bot with query performance estimates, pre-deploy checks showing estimated cost, post-deploy dashboards attributing latency to deployments"
39
+ weight: 0.35
40
+ description: "Timely nudges"
41
+ - type: llm_judge
42
+ criteria: "Feedback loops and social proof create sustainable change — real-time dashboards per team, automated performance reports, gamification elements, and change management addresses resistance with measurable success metrics"
43
+ weight: 0.30
44
+ description: "Sustainable feedback loops"
@@ -0,0 +1,47 @@
1
+ meta:
2
+ id: benchmark-design
3
+ level: 5
4
+ course: mysql-query-optimization
5
+ type: output
6
+ description: "Design MySQL benchmarks — create rigorous performance tests, avoid common pitfalls, and translate results into infrastructure decisions"
7
+ tags: [MySQL, benchmarks, sysbench, performance-testing, capacity-planning, master]
8
+
9
+ state: {}
10
+
11
+ trigger: |
12
+ Your company needs to decide between Aurora MySQL and self-managed
13
+ MySQL on EC2 for a $1.5M infrastructure decision. The CTO says "run
14
+ benchmarks by Friday." You know naive benchmarking leads to wrong
15
+ conclusions.
16
+
17
+ Context:
18
+ - Current: Self-managed MySQL 8.0 on r6g.4xlarge
19
+ - Candidate: Aurora MySQL 8.0 on db.r6g.4xlarge
20
+ - Workload: Mixed OLTP (75% reads, 25% writes), 80K TPS
21
+ - Data: 500GB active, 2TB total
22
+ - Critical queries: point lookups, range scans, JOINs, bulk inserts
23
+
24
+ Common mistakes you've seen:
25
+ 1. Using sysbench with data fitting in RAM (no I/O test)
26
+ 2. Running 5-minute benchmarks (not long enough)
27
+ 3. Testing with uniform data (not real distribution)
28
+ 4. Single-connection tests (not concurrent load)
29
+ 5. Ignoring storage (Aurora I/O costs vs EBS provisioned IOPS)
30
+ 6. Not testing failure scenarios
31
+
32
+ Task: Design the benchmark plan. Write: methodology, workload design,
33
+ metrics to collect, pitfalls to avoid, and decision framework.
34
+
35
+ assertions:
36
+ - type: llm_judge
37
+ criteria: "Methodology is rigorous — tests data larger than RAM (500GB+), runs for hours with warm-up phase, includes concurrent load matching production (100+ connections), and tests both normal and degraded modes (replica failure, high connections)"
38
+ weight: 0.35
39
+ description: "Rigorous methodology"
40
+ - type: llm_judge
41
+ criteria: "Workload represents real usage — captures 75/25 read/write mix, uses representative queries (not just simple SELECTs), realistic data distributions, and tests at multiple concurrency levels to find saturation"
42
+ weight: 0.35
43
+ description: "Realistic workload"
44
+ - type: llm_judge
45
+ criteria: "Decision framework considers more than QPS — includes latency percentiles, cost-per-transaction, operational overhead, failure behavior, and long-term cost trajectory. Acknowledges benchmarks are one input alongside operational and strategic factors"
46
+ weight: 0.30
47
+ description: "Holistic decision framework"
@@ -0,0 +1,48 @@
1
+ meta:
2
+ id: board-strategy
3
+ level: 5
4
+ course: mysql-query-optimization
5
+ type: output
6
+ description: "Present MySQL strategy to the board — secure multi-year investment for database modernization and position infrastructure as competitive advantage"
7
+ tags: [MySQL, board-strategy, investment, modernization, governance, master]
8
+
9
+ state: {}
10
+
11
+ trigger: |
12
+ You're the CTO presenting database strategy to the Board of Directors.
13
+ You need to secure $4M over 3 years for MySQL modernization. IPO
14
+ planned in 24 months.
15
+
16
+ Company: $150M ARR SaaS, 3,000 enterprise customers
17
+ Current: 20 MySQL clusters, 30TB, 5 DBAs, $2.5M/year infrastructure
18
+ Issues: 4 major outages last year (20 hours downtime), SLA breach
19
+ (99.5% vs promised 99.9%)
20
+
21
+ The $4M program:
22
+ Year 1 ($1.8M): Upgrade MySQL 5.7→8.0, deploy HA, implement monitoring
23
+ Year 2 ($1.3M): Migrate to Aurora, implement auto-scaling, reduce team
24
+ Year 3 ($0.9M): Achieve 99.99% availability, self-service platform
25
+
26
+ Board concerns:
27
+ - "Why not just move to the cloud and let AWS handle it?"
28
+ - "Can't we just hire more DBAs?"
29
+ - "What if we delay until after IPO?"
30
+ - "How does this compare to competitors?"
31
+
32
+ Task: Write the board presentation. Include: strategic framing,
33
+ investment case with ROI, risk of inaction, phased plan, and
34
+ responses to board concerns.
35
+
36
+ assertions:
37
+ - type: llm_judge
38
+ criteria: "Strategic framing resonates with board — database as business asset, reliability as customer retention driver, IPO readiness (due diligence will examine infrastructure), uses business language for non-technical board members"
39
+ weight: 0.35
40
+ description: "Board-appropriate framing"
41
+ - type: llm_judge
42
+ criteria: "Investment case is compelling — ROI quantified (avoided downtime costs, SLA penalty avoidance, infrastructure cost reduction), risk of inaction (SLA breach exposure, IPO risk), phased approach reduces execution risk"
43
+ weight: 0.35
44
+ description: "Compelling investment case"
45
+ - type: llm_judge
46
+ criteria: "Board concerns addressed directly — cloud migration alone doesn't solve optimization problems, more DBAs is a band-aid, delaying increases cost and risk, competitive benchmarking provided. Responses are concise and business-focused"
47
+ weight: 0.30
48
+ description: "Concerns addressed"
@@ -0,0 +1,49 @@
1
+ meta:
2
+ id: comprehensive-platform
3
+ level: 5
4
+ course: mysql-query-optimization
5
+ type: output
6
+ description: "Design a MySQL database platform — architect self-service provisioning, automated operations, and unified observability for a large organization"
7
+ tags: [MySQL, platform, self-service, automation, observability, master]
8
+
9
+ state: {}
10
+
11
+ trigger: |
12
+ You're VP of Database Platform at a company with 5,000 engineers.
13
+ The CEO mandates "database as a platform" — engineers should provision
14
+ and manage databases without DBA tickets.
15
+
16
+ Current state:
17
+ - 300 MySQL databases, 60 teams
18
+ - Provisioning time: 2 weeks (ticket-based)
19
+ - 12 DBAs handling all requests (bottleneck)
20
+ - No self-service, every change requires DBA approval
21
+ - No cost attribution — database costs are one lump sum
22
+
23
+ Target state:
24
+ - Self-service provisioning in <10 minutes
25
+ - Automated schema change review and deployment
26
+ - Unified observability across all 300 databases
27
+ - Cost attribution per team
28
+ - Automated incident detection and remediation
29
+
30
+ Budget: $3M/year for platform team (15 engineers)
31
+ Migration: 18 months to onboard all 300 databases
32
+
33
+ Task: Design the database platform. Write: platform architecture,
34
+ self-service provisioning, governance model, migration strategy for
35
+ 300 databases, and success metrics.
36
+
37
+ assertions:
38
+ - type: llm_judge
39
+ criteria: "Platform covers key components — provisioning (Terraform/Kubernetes operator), schema management (GitOps), query governance (CI/CD), observability (centralized monitoring), cost management (per-team attribution), security (automated RBAC), DR (automated backups)"
40
+ weight: 0.35
41
+ description: "Complete platform"
42
+ - type: llm_judge
43
+ criteria: "Self-service balances autonomy with governance — instant provisioning within guardrails, automated schema review, clear boundaries for self-service vs platform team approval"
44
+ weight: 0.35
45
+ description: "Balanced self-service"
46
+ - type: llm_judge
47
+ criteria: "Migration is phased and measurable — onboards 300 databases in phases, success metrics defined (provisioning time, incident MTTR, team satisfaction, cost per database), 15-engineer team structure with clear roles"
48
+ weight: 0.30
49
+ description: "Phased migration"
@@ -0,0 +1,52 @@
1
+ meta:
2
+ id: consulting-engagement
3
+ level: 5
4
+ course: mysql-query-optimization
5
+ type: output
6
+ description: "Lead a MySQL consulting engagement — assess a client's infrastructure, deliver optimization roadmap, and quantify business impact"
7
+ tags: [MySQL, consulting, assessment, roadmap, business-impact, master]
8
+
9
+ state: {}
10
+
11
+ trigger: |
12
+ You're a MySQL consulting lead hired by a Series B e-commerce company
13
+ ($100M GMV) experiencing database growing pains. They've tripled
14
+ engineering from 50 to 150 in 18 months and MySQL is struggling.
15
+
16
+ Client briefing:
17
+ - Company: ShopFast (marketplace platform)
18
+ - Revenue: $100M GMV, $15M take rate
19
+ - Database: 6 MySQL clusters, 2TB total, all MySQL 5.7
20
+ - Team: 1 DBA (part-time, also does DevOps), 12 backend engineers
21
+ - Infrastructure cost: $80K/month (growing 25%/quarter)
22
+ - Incidents: 4 outages last quarter (18 hours total downtime)
23
+
24
+ Assessment findings:
25
+ 1. All 6 clusters still on MySQL 5.7 (approaching EOL)
26
+ 2. Buffer pool at 128MB default on 3 clusters (64GB RAM servers)
27
+ 3. 500+ queries with full table scans
28
+ 4. No connection pooling — services connect directly
29
+ 5. Single primary, 1 async replica — no HA
30
+ 6. Backups: mysqldump weekly (takes 8 hours), never tested restore
31
+ 7. No Performance Schema analysis ever performed
32
+ 8. 30% of tables have no primary key (InnoDB performance issue)
33
+ 9. Largest table: 500M rows, never partitioned, never optimized
34
+ 10. Application ORM generates N+1 queries extensively
35
+
36
+ Task: Write the consulting deliverable. Include: executive assessment,
37
+ prioritized roadmap (quick wins, medium-term, long-term), staffing
38
+ recommendations, cost projection, and risk register.
39
+
40
+ assertions:
41
+ - type: llm_judge
42
+ criteria: "Assessment quantifies business impact — translates each finding into cost/risk (18 hours downtime = $X revenue loss, 500+ full table scans = Y seconds of excess latency, MySQL 5.7 EOL = security risk). Prioritizes by business impact, not technical severity"
43
+ weight: 0.35
44
+ description: "Business-impact assessment"
45
+ - type: llm_judge
46
+ criteria: "Roadmap is phased and realistic — quick wins (buffer pool tuning, top 10 slow queries, add PKs to tables missing them) in weeks 1-2, medium-term (connection pooling, MySQL 8.0 upgrade, index cleanup) in months 1-3, long-term (HA setup, partitioning, monitoring) in months 3-6. Each phase has estimated cost savings"
47
+ weight: 0.35
48
+ description: "Phased roadmap"
49
+ - type: llm_judge
50
+ criteria: "Staffing and cost projections are realistic — recommends hiring a dedicated senior DBA, projects infrastructure costs with vs without optimization, and provides a framework for ongoing performance management (monitoring, query review process)"
51
+ weight: 0.30
52
+ description: "Staffing and cost"
@@ -0,0 +1,47 @@
1
+ meta:
2
+ id: ma-database-integration
3
+ level: 5
4
+ course: mysql-query-optimization
5
+ type: output
6
+ description: "Plan database integration after M&A — merge two companies' MySQL databases while maintaining service continuity"
7
+ tags: [MySQL, M&A, integration, migration, schema-merge, master]
8
+
9
+ state: {}
10
+
11
+ trigger: |
12
+ Your company ($150M ARR) acquired a competitor ($40M ARR). Both run
13
+ MySQL. The board mandates full integration within 12 months.
14
+
15
+ Acquirer: MySQL 8.0 on Aurora, 15 clusters, 20TB, well-documented
16
+ Acquired: MySQL 5.7 on EC2, 5 clusters, 5TB, monolithic, 1 DBA
17
+
18
+ Challenges:
19
+ 1. Schema conflicts: both have users, orders, payments tables with
20
+ different schemas and overlapping IDs
21
+ 2. 1,500 shared customers — data must be merged, not duplicated
22
+ 3. Acquired company stores PII in plain text
23
+ 4. MySQL 5.7→8.0 upgrade needed
24
+ 5. Both products must stay operational during integration
25
+ 6. API compatibility for 3rd-party integrations
26
+ 7. 7-year financial data retention requirement
27
+
28
+ CEO's directive: "One database, one platform, one team — 12 months.
29
+ Zero data loss."
30
+
31
+ Task: Write the integration plan. Include: system assessment, schema
32
+ unification strategy, data migration plan, phased timeline, and risk
33
+ mitigation.
34
+
35
+ assertions:
36
+ - type: llm_judge
37
+ criteria: "Schema unification handles conflicts — defines approach for merging tables (ID mapping, namespacing), resolves overlapping customer records (deduplication with merge rules), and preserves data lineage for regulatory compliance"
38
+ weight: 0.35
39
+ description: "Schema unification"
40
+ - type: llm_judge
41
+ criteria: "Timeline is phased and realistic — breaks into assessment, preparation, parallel run, migration, decommission phases. Includes MySQL 5.7→8.0 upgrade and PII encryption remediation. Both products remain operational throughout"
42
+ weight: 0.35
43
+ description: "Phased timeline"
44
+ - type: llm_judge
45
+ criteria: "Risk mitigation covers business-critical concerns — rollback plan at each phase, data validation (row counts, financial totals), parallel running period, API compatibility layer for 3rd parties, and kill switch if customer impact detected"
46
+ weight: 0.30
47
+ description: "Business-critical risk mitigation"
@@ -0,0 +1,56 @@
1
+ meta:
2
+ id: master-optimization-shift
3
+ level: 5
4
+ course: mysql-query-optimization
5
+ type: output
6
+ description: "Master optimization shift — advise a CEO on a complete MySQL transformation combining M&A integration, compliance, and 10x scaling"
7
+ tags: [MySQL, shift-simulation, transformation, comprehensive, master]
8
+
9
+ state: {}
10
+
11
+ trigger: |
12
+ You're an external database strategy advisor. A CEO calls with an
13
+ urgent, complex situation.
14
+
15
+ DataFlow ($300M ARR, 1,500 engineers) acquired two companies:
16
+ - MedTrack ($30M ARR, healthcare SaaS, HIPAA-regulated)
17
+ - EuroPay ($60M ARR, EU fintech, GDPR + PCI DSS)
18
+
19
+ DataFlow: MySQL 8.0 on Aurora, 20 clusters, 60TB
20
+ MedTrack: MySQL 5.7 on EC2, 4 clusters, 5TB
21
+ EuroPay: MariaDB 10.6 on Galera Cluster, 8 clusters, 25TB
22
+
23
+ Board mandates (18-month timeline):
24
+ 1. Integrate all three databases into unified platform
25
+ 2. Achieve HIPAA + GDPR + PCI DSS compliance
26
+ 3. Prepare for IPO (99.99% availability, SOX compliance)
27
+ 4. Support 10x growth ($300M → $3B ARR in 5 years)
28
+
29
+ Constraints:
30
+ - Combined team: 10 DBAs
31
+ - Infrastructure cost: $1.5M/month
32
+ - Zero customer data loss
33
+ - All 3 products remain operational during integration
34
+ - EU healthcare data currently stored in US (violation)
35
+
36
+ CEO: "Give me the plan — architecture, timeline, budget, risk, and
37
+ what to tell the board."
38
+
39
+ Task: Write the comprehensive advisory. Include: unified architecture
40
+ (Aurora + EC2 + Galera), compliance strategy (4 frameworks),
41
+ integration timeline (18 months), budget projection, and board
42
+ communication strategy.
43
+
44
+ assertions:
45
+ - type: llm_judge
46
+ criteria: "Unified architecture handles all 3 platforms — addresses Aurora + self-managed MySQL + MariaDB/Galera consolidation, MySQL 5.7 and MariaDB 10.6 upgrade paths, and designs for 10x scale (60TB → 600TB trajectory). Architecture is realistic given 10 DBAs"
47
+ weight: 0.35
48
+ description: "Viable unified architecture"
49
+ - type: llm_judge
50
+ criteria: "Compliance achieves all 4 frameworks — HIPAA (PHI encryption, access logging), GDPR (EU data residency, right to erasure), PCI DSS (cardholder tokenization), SOX (audit trails, separation of duties). Addresses the immediate EU data residency violation. Identifies overlapping requirements to reduce effort"
51
+ weight: 0.35
52
+ description: "Multi-framework compliance"
53
+ - type: llm_judge
54
+ criteria: "Timeline, budget, and board communication are executive-ready — 18-month phased plan with milestones, budget includes infrastructure + personnel + migration costs, risk register with top 5 risks, and board narrative frames integration as competitive advantage not just cost"
55
+ weight: 0.30
56
+ description: "Executive-ready delivery"
@@ -0,0 +1,48 @@
1
+ meta:
2
+ id: product-development
3
+ level: 5
4
+ course: mysql-query-optimization
5
+ type: output
6
+ description: "Build a MySQL performance product — design a SaaS tool for MySQL optimization from architecture to go-to-market"
7
+ tags: [MySQL, product-development, SaaS, monitoring, optimization, master]
8
+
9
+ state: {}
10
+
11
+ trigger: |
12
+ You're a technical co-founder building a SaaS product for MySQL
13
+ performance optimization. After 10 years as a MySQL DBA, you want
14
+ to productize your expertise.
15
+
16
+ Product vision: "Autopilot for MySQL performance"
17
+ - Connects to any MySQL database (RDS, Aurora, self-managed)
18
+ - Analyzes query performance via Performance Schema
19
+ - Recommends indexes, configuration changes, query rewrites
20
+ - Optionally applies safe optimizations automatically
21
+
22
+ Competitive landscape:
23
+ - Percona PMM (open-source monitoring)
24
+ - Datadog Database Monitoring ($23/host/mo)
25
+ - SolarWinds Database Performance Analyzer
26
+ - Releem (AI-powered MySQL tuning)
27
+ - VividCortex/SolarWinds (query analytics)
28
+
29
+ You have $2M seed funding, 5 engineers, 12 months to product-market
30
+ fit (40 paying customers).
31
+
32
+ Task: Write the product strategy. Include: product architecture,
33
+ MVP scope, go-to-market strategy, pricing model, and 12-month
34
+ technical roadmap.
35
+
36
+ assertions:
37
+ - type: llm_judge
38
+ criteria: "Architecture is technically sound — data collection via Performance Schema (minimal overhead), analysis engine for index/query recommendations, safe application path with testing, and multi-tenant data isolation"
39
+ weight: 0.35
40
+ description: "Sound architecture"
41
+ - type: llm_judge
42
+ criteria: "MVP is focused on fastest path to customers — identifies highest-value feature first, scopes achievable in 3-4 months, defines clear success metrics for product-market fit"
43
+ weight: 0.35
44
+ description: "Focused MVP"
45
+ - type: llm_judge
46
+ criteria: "GTM and pricing are realistic — target customer profile identified, distribution channels (MySQL community, DevOps conferences), pricing justified against competitors, 12-month roadmap with realistic milestones to 40 customers"
47
+ weight: 0.30
48
+ description: "Realistic GTM"
@@ -0,0 +1,48 @@
1
+ meta:
2
+ id: regulatory-compliance
3
+ level: 5
4
+ course: mysql-query-optimization
5
+ type: output
6
+ description: "Navigate MySQL regulatory compliance — design configurations for GDPR, PCI DSS, HIPAA, and SOX across multi-region deployments"
7
+ tags: [MySQL, compliance, GDPR, PCI-DSS, HIPAA, SOX, data-sovereignty, master]
8
+
9
+ state: {}
10
+
11
+ trigger: |
12
+ Your company is expanding into healthcare (HIPAA) and EU markets
13
+ (GDPR). Your MySQL infrastructure wasn't designed for regulatory
14
+ compliance. Legal gives you 6 months to comply or $25M in deals
15
+ will be lost.
16
+
17
+ Current MySQL infrastructure:
18
+ - 15 clusters, all US-East
19
+ - No data classification
20
+ - Audit logging: only general log (not tamper-evident)
21
+ - Encryption: TLS in transit, no at-rest encryption
22
+ - Access: 3 shared database users for 150 engineers
23
+ - Data retention: no automated deletion
24
+ - Backups: mysqldump, stored unencrypted
25
+
26
+ Requirements:
27
+ 1. GDPR: EU data residency, right to erasure, breach notification
28
+ 2. HIPAA: PHI encryption, access controls, 6-year audit retention
29
+ 3. PCI DSS: cardholder data encryption, quarterly scans
30
+ 4. SOX: change audit trail, separation of duties
31
+
32
+ Task: Design the compliance architecture. Write: data classification
33
+ strategy, encryption architecture, audit logging system, access
34
+ control redesign, and compliance automation.
35
+
36
+ assertions:
37
+ - type: llm_judge
38
+ criteria: "Data classification and encryption are addressed — defines tiers (public/internal/confidential/restricted), maps PII/PHI/cardholder data, designs multi-region for EU residency, implements InnoDB tablespace encryption and column-level encryption for sensitive fields"
39
+ weight: 0.35
40
+ description: "Classification and encryption"
41
+ - type: llm_judge
42
+ criteria: "Access control is redesigned — replaces 3 shared users with role-based access per engineer, implements MySQL Enterprise Audit or audit plugin for tamper-evident logging, retains per regulation requirements"
43
+ weight: 0.35
44
+ description: "Access control redesign"
45
+ - type: llm_judge
46
+ criteria: "Compliance automation is continuous — automated checks, drift detection, compliance dashboard rather than point-in-time audits. Addresses right-to-erasure with soft-delete and scheduled purge"
47
+ weight: 0.30
48
+ description: "Continuous compliance"
@@ -0,0 +1,70 @@
1
+ meta:
2
+ id: comprehensive-database-system
3
+ level: 5
4
+ course: postgresql-query-optimization
5
+ type: output
6
+ description: "Design a comprehensive database platform — architect the complete PostgreSQL infrastructure for a 10,000-engineer organization from provisioning to observability"
7
+ tags: [PostgreSQL, platform, infrastructure, self-service, observability, master]
8
+
9
+ state: {}
10
+
11
+ trigger: |
12
+ You're the VP of Database Platform at a Fortune 500 company with
13
+ 10,000 engineers. The CEO has mandated a "database as a platform"
14
+ initiative — engineers should be able to provision, use, and manage
15
+ databases without filing tickets or waiting for DBAs.
16
+
17
+ Current state (the problem):
18
+ - 500 PostgreSQL databases across 100 teams
19
+ - Average time to provision a new database: 3 weeks (ticket-based)
20
+ - 20 DBAs handling all requests (bottleneck)
21
+ - No self-service: every schema change requires DBA approval
22
+ - Each team configures databases differently
23
+ - Incident response depends on which DBA is on-call (inconsistent)
24
+ - No cost attribution — database costs appear as one lump sum
25
+
26
+ Target state (the vision):
27
+ - Self-service database provisioning in <5 minutes
28
+ - Automated schema change review and deployment
29
+ - Unified observability across all 500 databases
30
+ - Cost attribution to individual teams and services
31
+ - Automated incident detection and remediation
32
+ - DBA team transitions from ticket-taking to platform engineering
33
+ - Compliance and security automatically enforced
34
+
35
+ Platform components to design:
36
+ 1. Provisioning layer: Self-service database creation with guardrails
37
+ 2. Schema management: GitOps-based schema changes with CI/CD
38
+ 3. Query governance: Automated performance review before deployment
39
+ 4. Observability: Unified monitoring, alerting, and dashboards
40
+ 5. Cost management: Per-team cost tracking and budget alerts
41
+ 6. Security: Automated encryption, access control, audit logging
42
+ 7. Disaster recovery: Automated backup, tested recovery, failover
43
+ 8. Developer experience: CLI tools, documentation, onboarding
44
+
45
+ Constraints:
46
+ - Must support both on-premises and cloud (hybrid)
47
+ - Must integrate with existing CI/CD (Jenkins, GitHub Actions)
48
+ - Must meet SOC 2, PCI DSS, HIPAA compliance
49
+ - Budget: $5M/year for the platform team (20 engineers)
50
+ - Migration timeline: 18 months to onboard all 500 databases
51
+
52
+ Task: Design the database platform. Write: the platform architecture
53
+ (all 8 components), the self-service provisioning design, the
54
+ governance model (what's automated vs what needs human approval), the
55
+ migration strategy (onboarding 500 existing databases), and the
56
+ success metrics for the platform.
57
+
58
+ assertions:
59
+ - type: llm_judge
60
+ criteria: "Platform architecture covers all 8 components — provisioning (Kubernetes operator or Terraform modules), schema management (GitOps with migration tools), query governance (CI/CD integration), observability (centralized metrics, logs, traces), cost management (tagging and attribution), security (automated encryption and RBAC), DR (automated backup testing), and developer experience (CLI, docs, golden path templates)"
61
+ weight: 0.35
62
+ description: "Complete platform architecture"
63
+ - type: llm_judge
64
+ criteria: "Self-service design balances autonomy with governance — engineers can provision databases instantly within guardrails (size limits, approved configurations, automatic security settings), schema changes go through automated review (blocking dangerous operations, approving safe ones), and the governance model defines clear boundaries (what's self-service vs what needs platform team approval)"
65
+ weight: 0.35
66
+ description: "Balanced self-service governance"
67
+ - type: llm_judge
68
+ criteria: "Migration strategy and success metrics are realistic — onboards 500 databases in phases (start with willing teams, then high-value, then mandatory), defines success metrics (provisioning time, incident MTTR, DBA ticket volume, team satisfaction, cost per database), and the 20-engineer platform team structure is defined with clear roles"
69
+ weight: 0.30
70
+ description: "Realistic migration and metrics"
@@ -0,0 +1,81 @@
1
+ meta:
2
+ id: database-ai-future
3
+ level: 5
4
+ course: postgresql-query-optimization
5
+ type: output
6
+ description: "Explore the future of AI-powered database optimization — evaluate autonomous tuning, AI query optimization, vector search integration, and the evolving role of DBAs"
7
+ tags: [PostgreSQL, AI, machine-learning, autonomous-tuning, vector-search, future, master]
8
+
9
+ state: {}
10
+
11
+ trigger: |
12
+ Your CTO asks you to evaluate how AI will transform PostgreSQL
13
+ operations over the next 3-5 years and recommend which AI-powered
14
+ database technologies to invest in now.
15
+
16
+ Current AI-database landscape:
17
+
18
+ 1. Autonomous tuning:
19
+ - OtterTune / DBtune: ML-based parameter tuning
20
+ - They claim 2-5x performance improvement by optimizing postgresql.conf
21
+ - But: tuning 300+ parameters requires understanding workload patterns
22
+ - Question: Is this better than a senior DBA tuning manually?
23
+
24
+ 2. AI query optimization:
25
+ - Learned query optimizers (Bao, Neo, Balsa)
26
+ - They replace PostgreSQL's cost-based optimizer with ML models
27
+ - Claim: 50% improvement on complex queries vs traditional optimizer
28
+ - But: require training data, cold start problem, unpredictable behavior
29
+ - Question: Should we replace PostgreSQL's battle-tested optimizer?
30
+
31
+ 3. AI-powered indexing:
32
+ - Index advisor tools (Dexter, HypoPG + ML)
33
+ - Automatically recommend indexes based on workload analysis
34
+ - Question: How good are they vs experienced DBA recommendations?
35
+
36
+ 4. Vector search in PostgreSQL:
37
+ - pgvector: native vector similarity search
38
+ - pgvectorscale: improved indexing for high-dimensional vectors
39
+ - Use case: Semantic search, RAG, recommendation systems
40
+ - Question: Should we use PostgreSQL for vectors or a dedicated
41
+ vector DB (Pinecone, Weaviate, Qdrant)?
42
+
43
+ 5. Natural language to SQL:
44
+ - Text-to-SQL models (GPT-4, Claude, specialized models)
45
+ - Enable non-technical users to query the database
46
+ - But: security risks, performance risks (generated queries may be slow)
47
+ - Question: How to safely deploy text-to-SQL in production?
48
+
49
+ 6. Predictive operations:
50
+ - ML models that predict: disk full, replication lag spike, query
51
+ degradation, connection pool exhaustion
52
+ - Proactive alerts before incidents happen
53
+ - Question: What data do we need to collect now to enable this?
54
+
55
+ Your evaluation criteria:
56
+ - Production readiness (can we use it today?)
57
+ - ROI (does the benefit justify the complexity?)
58
+ - Risk (what happens when the AI is wrong?)
59
+ - PostgreSQL compatibility (native extension vs external tool?)
60
+ - Team skill requirements (do we need ML engineers?)
61
+
62
+ Task: Write the technology evaluation. Include: the assessment of
63
+ each AI-database technology (production readiness, ROI, risk), the
64
+ recommended adoption roadmap (what to adopt now, what to watch, what
65
+ to skip), the pgvector strategy (PostgreSQL vs dedicated vector DB),
66
+ the text-to-SQL safety framework, and the prediction of how the DBA
67
+ role evolves with AI.
68
+
69
+ assertions:
70
+ - type: llm_judge
71
+ criteria: "Each technology is honestly assessed — evaluates production readiness realistically (autonomous tuning: semi-ready, learned optimizers: research stage, index advisors: ready for recommendations, pgvector: production-ready for moderate scale, text-to-SQL: risky without guardrails, predictive ops: early but promising). Avoids both hype and dismissiveness"
72
+ weight: 0.35
73
+ description: "Honest technology assessment"
74
+ - type: llm_judge
75
+ criteria: "Adoption roadmap is practical — separates 'adopt now' (pgvector, index advisors, predictive monitoring), 'evaluate' (autonomous tuning, text-to-SQL with guardrails), and 'watch' (learned optimizers). Each recommendation includes implementation complexity, team skill requirements, and expected ROI timeline"
76
+ weight: 0.35
77
+ description: "Practical adoption roadmap"
78
+ - type: llm_judge
79
+ criteria: "DBA role evolution and safety frameworks are addressed — discusses how AI augments rather than replaces DBAs (shift from manual tuning to AI supervision, from reactive to predictive), and the text-to-SQL safety framework includes query validation, cost limits, read-only access, result set limits, and audit logging"
80
+ weight: 0.30
81
+ description: "DBA evolution and safety"