woikos
|
9da1784b1b
|
Add Blossom bandwidth limiting and tune rate limiters (v0.49.0)
Go / build-and-release (push) Waiting to run
- Add token-bucket bandwidth rate limiting for Blossom uploads
- ORLY_BLOSSOM_RATE_LIMIT enables limiting (default: false)
- ORLY_BLOSSOM_DAILY_LIMIT_MB sets daily limit (default: 10MB)
- ORLY_BLOSSOM_BURST_LIMIT_MB sets burst cap (default: 50MB)
- Followed users, admins, owners are exempt (unlimited)
- Change emergency mode throttling from exponential to linear scaling
- Old: 16x multiplier at emergency threshold entry
- New: 1x at threshold, +1x per 20% excess pressure
- Reduce follows ACL throttle increment from 200ms to 25ms per event
- Update dependencies
Files modified:
- app/blossom.go: Pass rate limit config to blossom server
- app/config/config.go: Add Blossom rate limit config options
- pkg/blossom/ratelimit.go: New bandwidth limiter implementation
- pkg/blossom/server.go: Add rate limiter integration
- pkg/blossom/handlers.go: Check rate limits on upload/mirror/media
- pkg/ratelimit/limiter.go: Linear emergency throttling
- pkg/acl/follows.go: Reduce default throttle increment
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
|
2026-01-14 08:09:39 +01:00 |
|
|
|
24383ef1f4
|
Decompose handle-event.go into DDD domain services (v0.36.15)
Go / build-and-release (push) Has been cancelled
Major refactoring of event handling into clean, testable domain services:
- Add pkg/event/validation: JSON hex validation, signature verification,
timestamp bounds, NIP-70 protected tag validation
- Add pkg/event/authorization: Policy and ACL authorization decisions,
auth challenge handling, access level determination
- Add pkg/event/routing: Event router registry with ephemeral and delete
handlers, kind-based dispatch
- Add pkg/event/processing: Event persistence, delivery to subscribers,
and post-save hooks (ACL reconfig, sync, relay groups)
- Reduce handle-event.go from 783 to 296 lines (62% reduction)
- Add comprehensive unit tests for all new domain services
- Refactor database tests to use shared TestMain setup
- Fix blossom URL test expectations (missing "/" separator)
- Add go-memory-optimization skill and analysis documentation
- Update DDD_ANALYSIS.md to reflect completed decomposition
Files modified:
- app/handle-event.go: Slim orchestrator using domain services
- app/server.go: Service initialization and interface wrappers
- app/handle-event-types.go: Shared types (OkHelper, result types)
- pkg/event/validation/*: New validation service package
- pkg/event/authorization/*: New authorization service package
- pkg/event/routing/*: New routing service package
- pkg/event/processing/*: New processing service package
- pkg/database/*_test.go: Refactored to shared TestMain
- pkg/blossom/http_test.go: Fixed URL format expectations
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
|
2025-12-25 05:30:07 +01:00 |
|