In 3 seconds around 15 transacions comes.

  • I have a sql sevrer cluster and for 3 seconds it takes in movement to another node.

    In thses 3 seconds around 15 transacions comes.

    Please answer:

    1.Will these 15 transactions will be lost during cluster movement?

    2. The 100 connections which are already created with database will they also disconnect?

    Thanks

  • 1. Those 15 transactions will not be performed. SQL server will refuse any connection during that time.

    2. I think they will be disconnected.

    Ryan
    //All our dreams can come true, if we have the courage to pursue them//

  • The instance will go into shutdown and not accept any new connections during the fail over. Any connections which are currently running at the point of failure will terminate. If the transaction is complete it will get replayed upon startup when recovery is started if not it will roll forward / rollback the database to a consistant state.

    That is my understanding

  • You could mitigate against this by writing a try/catch into the application code, parsing feedback from SQL Server for 'SQLServerException', 'Connection refused' or similar. You could alter it so that if such a message is received, the transaction is retried after x seconds (i.e. 5 seconds).

    Maybe easier said than done, yes - but it means that if a CONNECT is attempted during failover, there's an automatic reattempt. If an exception is raised by SQL Server because e.g. the transaction was rolled back midway during failover, it is resubmitted.

    Depends on what high-availability, high-transactional, hardcore application is running on there and what requirements it has.

    ---

    Note to developers:
    CAST(SUBSTRING(CAST(FLOOR(NULLIF(ISNULL(COALESCE(1,NULL),NULL),NULL)) AS CHAR(1)),1,1) AS INT) == 1
    So why complicate your code AND MAKE MY JOB HARDER??!:crazy:

    Want to get the best help? Click here https://www.sqlservercentral.com/articles/forum-etiquette-how-to-post-datacode-on-a-forum-to-get-the-best-help (Jeff Moden)
    My blog: http://uksqldba.blogspot.com
    Visit http://www.DerekColley.co.uk to find out more about me.

Viewing 4 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic. Login to reply