January 6, 2023 at 5:32 pm
We have two SQL server instances. Server A is running on Azure, and Server B is on AWS. Both servers are synchronized via SQL Replication, a bidirectional transactional replication to be accurate.
Our website runs on Server A only, and in case there are issues on Azure we redirect our website to Server B.
Are there any options for SQL Server, similar to Atlas MongoDB, to rely on a cloud provider to manage your SQL Server instances? We would like to have both servers A and B active (like a load balancer), and up and running but every time we try the replication breaks. It throws a "violation of primary key constraint..." error.
January 7, 2023 at 6:10 pm
Thanks for posting your issue and hopefully someone will answer soon.
This is an automated bump to increase visibility of your question.
January 9, 2023 at 6:38 am
You may use the following options:
+ A SQL server cluster with "both nodes active" or "One node active and once node inactive".
No replication is required. The storage is shared between the two cluster nodes.
+ A windows server cluster with "One node active and once node passive".
Please review the notes from Anton Kolomyeytsev in this forum:
The replication errors is described here: (good technical information always.)
Best
DBASupport
January 10, 2023 at 10:52 pm
where can I find documentation for this?
+ A SQL server cluster with "both nodes active" or "One node active and once node inactive".
if both nodes are active on different SQL servers, what about seeding and latency to the storage? tons of questions
thanks
January 14, 2023 at 7:32 am
You cannot go wrong with the Web site: https://www.mssqltips.com/
https://www.mssqltips.com/sqlservertip/6586/clustering-sql-server-2019-step-by-step/
Here is something for : seeding and latency to the storage
You need to be concerned with capacity management which could include but not limited to :
(I like this article for sharedpoint systems, it is useful in other platforms.)
+ Network capacity:
+ Storage performance (consider raid 10 for good performance)
DBASupport
January 14, 2023 at 7:36 am
You may consider taking SQL server cluster setups to learn more about SQL server cluster quorum (shared storage):
https://learn.microsoft.com/en-us/windows-server/failover-clustering/manage-cluster-quorum
DBASupport
January 14, 2023 at 7:37 am
Apologies, I meant taking online classes
.
DBASupport
Viewing 7 posts - 1 through 6 (of 6 total)
You must be logged in to reply to this topic. Login to reply