ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login

    Server 2012 Hyper V Cluster

    IT Discussion
    7
    27
    913
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • mroth911M
      mroth911
      last edited by

      I am trying to build A hyper V cluster using failover cluster, I do not what shared storage. I want to use the hard rives in the machines and replicate data across. Is this possible. ?

      Regards

      ObsolesceO dbeatoD scottalanmillerS 3 Replies Last reply Reply Quote 1
      • JaredBuschJ
        JaredBusch
        last edited by

        To build an actual cluster, you need SCCM.

        That is the MS tool for the job.

        Once you have that installed, you will see what you can do.

        ObsolesceO 1 Reply Last reply Reply Quote 0
        • ObsolesceO
          Obsolesce @mroth911
          last edited by Obsolesce

          @mroth911 said in Server 2012 Hyper V Cluster:

          I am trying to build A hyper V cluster using failover cluster, I do not what shared storage. I want to use the hard rives in the machines and replicate data across. Is this possible. ?

          Regards

          If you don't want the features of a failover cluster, it sounds like plain old Hyper-V Replication will do what you need, without all those extra requirements.

          But to answer your question, yeah, you do not have to use shared storage.

          ObsolesceO scottalanmillerS 2 Replies Last reply Reply Quote 0
          • ObsolesceO
            Obsolesce @Obsolesce
            last edited by

            This post is deleted!
            1 Reply Last reply Reply Quote 0
            • ObsolesceO
              Obsolesce @JaredBusch
              last edited by Obsolesce

              @JaredBusch said in Server 2012 Hyper V Cluster:

              To build an actual cluster, you need SCCM.

              Definitely not a requirement in any way, nor is SCVMM.

              A Hyper-V failover cluster can be set up, configured, and managed using FCM.

              1 Reply Last reply Reply Quote 0
              • dbeatoD
                dbeato @mroth911
                last edited by dbeato

                @mroth911 said in Server 2012 Hyper V Cluster:

                I am trying to build A hyper V cluster using failover cluster, I do not what shared storage. I want to use the hard rives in the machines and replicate data across. Is this possible. ?

                Regards

                Yes, but you will need Starwind with VSAN for that to happen.

                1 Reply Last reply Reply Quote 0
                • scottalanmillerS
                  scottalanmiller @mroth911
                  last edited by

                  @mroth911 said in Server 2012 Hyper V Cluster:

                  I am trying to build A hyper V cluster using failover cluster, I do not what shared storage. I want to use the hard rives in the machines and replicate data across. Is this possible. ?

                  Regards

                  Possible but doesnt make sense. No advantage over shared storage across the nodes, its the same hardware, its just more overhead and more risk and more effort your way.

                  Whats making you "want" this?

                  1 Reply Last reply Reply Quote 0
                  • scottalanmillerS
                    scottalanmiller @Obsolesce
                    last edited by

                    @Obsolesce said in Server 2012 Hyper V Cluster:

                    @mroth911 said in Server 2012 Hyper V Cluster:

                    I am trying to build A hyper V cluster using failover cluster, I do not what shared storage. I want to use the hard rives in the machines and replicate data across. Is this possible. ?

                    Regards

                    If you don't want the features of a failover cluster, it sounds like plain old Hyper-V Replication will do what you need, without all those extra requirements.

                    But to answer your question, yeah, you do not have to use shared storage.

                    Dont have to, but you have to provide all the same storage physically so why skip the benefits?

                    1 Reply Last reply Reply Quote 0
                    • mroth911M
                      mroth911
                      last edited by

                      I basically want to use the storage in the servers to replicate to each node. So if one goes off I still have two other servers.

                      I was thinking about Maxtra software, or using Ovirt.

                      scottalanmillerS 1 Reply Last reply Reply Quote 0
                      • scottalanmillerS
                        scottalanmiller @mroth911
                        last edited by

                        @mroth911 said in Server 2012 Hyper V Cluster:

                        I basically want to use the storage in the servers to replicate to each node. So if one goes off I still have two other servers.

                        Right, and the best way to do that is shared storage. RLS.

                        https://smbitjournal.com/2013/07/replicated-local-storage/

                        1 Reply Last reply Reply Quote 1
                        • scottalanmillerS
                          scottalanmiller
                          last edited by

                          There are two types of replication... async replication (a la Veeam or Hyper-V built in) which syncs a copy "every so often" whether minutes or hours apart. It is a copy that isn't live or shared.

                          The other type is sync replication (a la Starwind, DRBD, Gluster) which keeps a copy on both nodes and keeps them fully in sync allowing it to be "shared."

                          The advantage to async is that it can work well on disparate systems or over a WAN link to a remote site. In the past we used it because common products were free where sync was not, but that has changed.

                          The advantage to sync is that you can use less overhead, keep data fully protected, failover automatically, etc. Basically if you can sync, you do sync. Async is only useful when sync isn't an option.

                          1 Reply Last reply Reply Quote 1
                          • scottalanmillerS
                            scottalanmiller
                            last edited by

                            Two Node Free Replication Comparison

                            Sync / Shared Async / Unshared
                            Cost Free Free
                            Overhead of Sync Low Sporadic
                            Overhead of Writes Some None
                            Risk of Data Loss None Up to Time Between Syncs
                            Handles Memory Replication Sometimes No
                            Protects In Fight Workloads Sometimes No
                            Allows for Automatic Failover / High Availability Yes No
                            Fully Utilizes Available Gear Yes No
                            1 Reply Last reply Reply Quote 1
                            • scottalanmillerS
                              scottalanmiller
                              last edited by

                              To compare in a different way, think of having a single server with two hard drives. You are require to protect the data on the drives.

                              You could do one of two things:

                              1. Use RAID 1, all data is instantly protected on write. Two copies made of every thing that goes to disk, every time. Failover is transparent and instantaneous. Recovery is also transparent.
                              2. Create an identical filesystem on the second drive and use a tool like Robocopy to copy all of the stuff from the first disk to the second every twenty minutes and hope that it gets everything. And recovery is difficult.

                              There is a reason why approach 1 is the industry standard and a foregone conclusion and approach 2 would be considered crazy.

                              Taking this to the two node space, something like DRBD or Starwind is literally using RAID 1 over the network, and the approach you are looking at is a form of the second, just not using Robocopy specifically. It's almost an identical scenario.

                              ObsolesceO 1 Reply Last reply Reply Quote 0
                              • ObsolesceO
                                Obsolesce @scottalanmiller
                                last edited by

                                @scottalanmiller said in Server 2012 Hyper V Cluster:

                                the approach you are looking at is a form of the second, just not using Robocopy specifically. It's almost an identical scenario.

                                It uses Hyper-V VSS

                                scottalanmillerS 1 Reply Last reply Reply Quote 0
                                • scottalanmillerS
                                  scottalanmiller @Obsolesce
                                  last edited by

                                  @Obsolesce said in Server 2012 Hyper V Cluster:

                                  @scottalanmiller said in Server 2012 Hyper V Cluster:

                                  the approach you are looking at is a form of the second, just not using Robocopy specifically. It's almost an identical scenario.

                                  It uses Hyper-V VSS

                                  I know, but that's only one piece of it. VSS grabs the snap, something transfers it, and that part might actually be Robocopy. VSS isn't the part that does the work we are talking about.

                                  JaredBuschJ 1 Reply Last reply Reply Quote 0
                                  • JaredBuschJ
                                    JaredBusch @scottalanmiller
                                    last edited by

                                    @scottalanmiller said in Server 2012 Hyper V Cluster:

                                    @Obsolesce said in Server 2012 Hyper V Cluster:

                                    @scottalanmiller said in Server 2012 Hyper V Cluster:

                                    the approach you are looking at is a form of the second, just not using Robocopy specifically. It's almost an identical scenario.

                                    It uses Hyper-V VSS

                                    I know, but that's only one piece of it. VSS grabs the snap, something transfers it, and that part might actually be Robocopy. VSS isn't the part that does the work we are talking about.

                                    The transfer can have zero to do with the Veeam instance. You tell the backup job during creation if it will use the Veeam server or go direct from hypervisor to storage repository.

                                    DashrenderD ObsolesceO scottalanmillerS 3 Replies Last reply Reply Quote 0
                                    • DashrenderD
                                      Dashrender @JaredBusch
                                      last edited by

                                      @JaredBusch said in Server 2012 Hyper V Cluster:

                                      @scottalanmiller said in Server 2012 Hyper V Cluster:

                                      @Obsolesce said in Server 2012 Hyper V Cluster:

                                      @scottalanmiller said in Server 2012 Hyper V Cluster:

                                      the approach you are looking at is a form of the second, just not using Robocopy specifically. It's almost an identical scenario.

                                      It uses Hyper-V VSS

                                      I know, but that's only one piece of it. VSS grabs the snap, something transfers it, and that part might actually be Robocopy. VSS isn't the part that does the work we are talking about.

                                      The transfer can have zero to do with the Veeam instance. You tell the backup job during creation if it will use the Veeam server or go direct from hypervisor to storage repository.

                                      hmmm... this means I have something look at!

                                      JaredBuschJ 1 Reply Last reply Reply Quote 0
                                      • ObsolesceO
                                        Obsolesce @JaredBusch
                                        last edited by

                                        @JaredBusch said in Server 2012 Hyper V Cluster:

                                        @scottalanmiller said in Server 2012 Hyper V Cluster:

                                        @Obsolesce said in Server 2012 Hyper V Cluster:

                                        @scottalanmiller said in Server 2012 Hyper V Cluster:

                                        the approach you are looking at is a form of the second, just not using Robocopy specifically. It's almost an identical scenario.

                                        It uses Hyper-V VSS

                                        I know, but that's only one piece of it. VSS grabs the snap, something transfers it, and that part might actually be Robocopy. VSS isn't the part that does the work we are talking about.

                                        The transfer can have zero to do with the Veeam instance. You tell the backup job during creation if it will use the Veeam server or go direct from hypervisor to storage repository.

                                        This is true. I have a backup repo (das) attached to a Hyper-V Server, and the Veeam backup server is separate. The data never leaves the Hyper-V Server. Same with the tape backups.

                                        1 Reply Last reply Reply Quote 0
                                        • scottalanmillerS
                                          scottalanmiller @JaredBusch
                                          last edited by scottalanmiller

                                          @JaredBusch said in Server 2012 Hyper V Cluster:

                                          @scottalanmiller said in Server 2012 Hyper V Cluster:

                                          @Obsolesce said in Server 2012 Hyper V Cluster:

                                          @scottalanmiller said in Server 2012 Hyper V Cluster:

                                          the approach you are looking at is a form of the second, just not using Robocopy specifically. It's almost an identical scenario.

                                          It uses Hyper-V VSS

                                          I know, but that's only one piece of it. VSS grabs the snap, something transfers it, and that part might actually be Robocopy. VSS isn't the part that does the work we are talking about.

                                          The transfer can have zero to do with the Veeam instance. You tell the backup job during creation if it will use the Veeam server or go direct from hypervisor to storage repository.

                                          VSS is Volume Shadow Copy. The question was really... after VSS takes a snap, what MS tool is being used to move the data over to the other node.

                                          JaredBuschJ DashrenderD 2 Replies Last reply Reply Quote 0
                                          • JaredBuschJ
                                            JaredBusch @scottalanmiller
                                            last edited by

                                            @scottalanmiller said in Server 2012 Hyper V Cluster:

                                            @JaredBusch said in Server 2012 Hyper V Cluster:

                                            @scottalanmiller said in Server 2012 Hyper V Cluster:

                                            @Obsolesce said in Server 2012 Hyper V Cluster:

                                            @scottalanmiller said in Server 2012 Hyper V Cluster:

                                            the approach you are looking at is a form of the second, just not using Robocopy specifically. It's almost an identical scenario.

                                            It uses Hyper-V VSS

                                            I know, but that's only one piece of it. VSS grabs the snap, something transfers it, and that part might actually be Robocopy. VSS isn't the part that does the work we are talking about.

                                            The transfer can have zero to do with the Veeam instance. You tell the backup job during creation if it will use the Veeam server or go direct from hypervisor to storage repository.

                                            VSS is Volume Shadow Copy. The question was really... after VSS takes a snap, what MS tool is being used to move the data over to the other node.

                                            No idea. I just know the Veeam tools that are put onto the hypervisor and storage repository control things (if told to do so).

                                            1 Reply Last reply Reply Quote 0
                                            • 1
                                            • 2
                                            • 1 / 2
                                            • First post
                                              Last post