Continue an SSIS task when one of many servers is down -
the purpose of ssis package grab data 1 centralized server , multicast data several servers.
i have 1 central server , 5 destinations.
i truncate each destination server's tables, send each table destinations using multicast. each data flow object updates 1 table on each server.
i need stress there no for-loops. data flow relatively linear.
these destination servers have unreliable internet connections, need plan if @ least 1 destination offline.
i've tried disable error messages, seen here
i've tried setting max error count high number.
however every time try execute, package stops entirely , complains 1 of connections broken (i broke on purpose test). how can force package continue, despite @ least 1 bad connection?
thanks
put each server in 1 data flow task. when connect 1 data flow other, instead of using success/failure precedence constraint, set completion. word on performance: slow down processing wont able multicast anymore. make sure if 1 of them fails, others can still continue , job.
if still use multicast method, suggest writing script in script component. tangled mess once encounter failure , need debug it.
Comments
Post a Comment