This is an automated email from the ASF dual-hosted git repository.
xiaoyu pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-shenyu-website.git
The following commit(s) were added to refs/heads/main by this push:
new 55ae33f Update index.md (#176)
55ae33f is described below
commit 55ae33f57b8f9f054a10f9dfe816e4ba291318bf
Author: midnight2104 <[email protected]>
AuthorDate: Wed Aug 4 14:30:51 2021 +0800
Update index.md (#176)
---
content/en/projects/shenyu/data-sync/index.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/content/en/projects/shenyu/data-sync/index.md
b/content/en/projects/shenyu/data-sync/index.md
index 7f026bc..9f5d8c7 100644
--- a/content/en/projects/shenyu/data-sync/index.md
+++ b/content/en/projects/shenyu/data-sync/index.md
@@ -55,7 +55,7 @@ In the original version, the configuration service relied on
the Zookeeper imple
As showing picture below,`shenyu-admin` will issue a configuration change
notification through `EventPublisher` after users change
configuration,`EventDispatcher` will handle this modification and send
configuration to corresponding event handler according to configured
synchronization strategy.
-- If it is a `websocket` synchronization strategy,it will push modified data
to `shenyu-web`,and corresponding `WebsocketCacheHandler` handler will handle
`shenyu-admin` data push at the gateway layer
+- If it is a `websocket` synchronization strategy,it will push modified data
to `shenyu-web`,and corresponding `WebsocketDataHandler` handler will handle
`shenyu-admin` data push at the gateway layer
- If it is a `zookeeper` synchronization strategy,it will push modified data
to `zookeeper`,and the `ZookeeperSyncCache` will monitor the data changes of
`zookeeper` and process them
- If it is a `http` synchronization strategy,`shenyu-web` proactively
initiates long polling requests,90 seconds timeout by default,if there is no
modified data in `shenyu-admin`,http request will be blocked,if there is a data
change, it will respond to the changed data information,if there is no data
change after 60 seconds,then respond with empty data,gateway continue to make
http request after getting response,this kind of request will repeat.