Reputation: 670
I'm doing 3-tier file synchronization. Let say the tier is Corp - Store - Device
. I'm also doing it like 3-tier database synchronization. I create trigger
, router
, and trigger_router
for Corp - Store
and Store - Device
.
But appeared error TriggerRouterService - Could not find triger router [sym_file_snapshot] in list [sym_file_snapshot]
.
After I found out, the error is the Corp
node wants to connect to Device
node. What's wrong here? Is my approach wrong?
Update:
Corp
node wants to send initial load to Device
node directly.Upvotes: 1
Views: 183
Reputation: 670
Check sym_node_security
and look at initial_load_enabled
is set or not.
Upvotes: 1
Reputation: 64632
Seems like sym_router
routes files from Corp to Device directly. Create two sym_routers
:
corp_directory
to Store's store_directory
store_directory
to Device's device_directory
Upvotes: 0