Target: .NET 10 (LTS) · C# 14 · Last updated March 2026
This guide is a curated set of 100 performance rules, tips, and idioms every developer on this project must know. Each entry is concise and actionable. Entries marked 🆕 leverage features new in .NET 10 / C# 14.
A Practical Engineering Guide Best practices for designing, operating, and scaling production-grade distributed systems.
| { | |
| "data": [ | |
| { | |
| "time": "2025-07-17T08:00:00Z", | |
| "percentage": 32.5, | |
| "volume": 130.0, | |
| "inflow": 3.8, | |
| "outflow": 15.2, | |
| "status": "warning", | |
| "source": "estimate" |
A structured checklist for isolating, diagnosing, and resolving issues in shared-infrastructure systems.
For developers with limited multi-tenant experience and for people that need to refresh their knowledge and expertise on the subject.
"Any organization that designs a system, will produce a design
whose structure is a copy of the organization's communication structure."
"A broken, dysfunctional organization, driven by meeting unhealthy goals and metrics
will produce broken, dysfunctional systems, even if the developers in that organization are good."
"The avalanche has already started. It is too late for the pebbles to vote."
- 40-50k items per minute (3000 cursor size, 1000 concurrency counter, 500 batch size, 250 ms timeout)
- 25-45k items per minute (with 3ms SQL Delay)
- 30-50k items per minute (with 0ms SQL Delay)
- 18-40k items per minute (with 3ms SQL Delay)
- 25-45k items per minute (with 0ms SQL Delay
Target version: librdkafka v2.13.x (latest stable as of March 2026) Applies to: All language bindings built on librdkafka - confluent-kafka-python, confluent-kafka-go, confluent-kafka-dotnet, node-rdkafka, Karafka/rdkafka-ruby, and others.
Before touching a single configuration property, ensure the underlying infrastructure matches the workload profile.
-
Get authorization token POST
http://craftcluster/api/FacebookLogin/GetAuthorizationToken?facebookAccessToken=...&facebookProfileId=...
Kafka: 172.18.0.4
Zookeeper: 172.18.0.2
-
Create a topic named integration-test-topic with two partitions:
- kafka-topics --create --zookeeper 172.18.0.2:3001 --replication-factor 1 --partitions 2 --topic integration-test-topic
-
Check topic information:
-
kafka-topics --zookeeper 172.18.0.2:3001 --describe --topic integration-test-topic