diff options
| author | chrislu <chris.lu@gmail.com> | 2025-12-08 11:09:59 -0800 |
|---|---|---|
| committer | chrislu <chris.lu@gmail.com> | 2025-12-08 11:09:59 -0800 |
| commit | 1856eaca03aa85895e4928042ad860a3097da5da (patch) | |
| tree | 2e9e1cb55871e6f4f6da2cfccd15e854e9f17d4b | |
| parent | 95f6a2bc13257dad9d4738685851cedf62808f67 (diff) | |
| download | seaweedfs-1856eaca03aa85895e4928042ad860a3097da5da.tar.xz seaweedfs-1856eaca03aa85895e4928042ad860a3097da5da.zip | |
Update notification.toml
| -rw-r--r-- | weed/command/scaffold/notification.toml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/weed/command/scaffold/notification.toml b/weed/command/scaffold/notification.toml index c3f0886f8..356c4719a 100644 --- a/weed/command/scaffold/notification.toml +++ b/weed/command/scaffold/notification.toml @@ -54,7 +54,9 @@ topic_url = "rabbit://myexchange" sub_url = "rabbit://myqueue" [notification.webhook] -# Send file system events to HTTP webhook endpoints +# Send file system events to HTTP webhook endpoints (push model) +# BEST FOR: Low to moderate traffic (< 100 events/second sustained) +# FOR HIGH TRAFFIC: Consider using Kafka, SQS, or pull-based event logs instead # Documentation: https://github.com/seaweedfs/seaweedfs/wiki/Filer-Notification-Webhook enabled = false endpoint = "https://your-server.com/webhook" # required: HTTP endpoint URL |
