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
Added `OrganizationDataStore` which allows orgs to have data stored in
specific separate services.
For now this is just used for ClickHouse. When using ClickHouse we get a
client for the factory and pass in the org id.
Particular care has to be made with two hot-insert paths:
1. RunReplicationService
2. OTLPExporter
---------
Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
Co-authored-by: Claude <noreply@anthropic.com>
**Prefer static imports over dynamic imports.** Only use dynamic `import()` when:
77
+
- Circular dependencies cannot be resolved otherwise
78
+
- Code splitting is genuinely needed for performance
79
+
- The module must be loaded conditionally at runtime
80
+
81
+
Dynamic imports add unnecessary overhead in hot paths and make code harder to analyze. If you find yourself using `await import()`, ask if a regular `import` statement would work instead.
82
+
72
83
## Changesets and Server Changes
73
84
74
85
When modifying any public package (`packages/*` or `integrations/*`), add a changeset:
0 commit comments