RSV replication, on the thought of moving to a table. What's new?

Currently we run Bay on replication with Dell Compellent, although we have not yet deployed SRM. Replication is super fast and reliable. We are planning to move to vSphere replication for flexibility - that is to say we are not locked to the pairs Compellent more, and we can do things like Storage Vmotion and other things when we get deployed SRM. When I looked VRS 5.5 one thing that stands out is the replication was made on the management network. Is this always true? Because our interface is 1 GB, and we would certainly be able to use a 10 Gbit link at our hosts to do. A few other questions:

1. can you replicate to another table in the Vcenter even? I know 5 x, the device had to talk about a different vcenter, but I think I read some documents on how to solve this problem.

2. I am aware THAT VRs can never compete on performance with basic table replication, but in reality that is far behind? Yes, I know a bunch of installed variables. Just curious. We have about 700 mV.

You can use storage vMotion with ABR in the same consistency group.

In VR 6.0, you can use an interface of replication dedicated instead of the management interface. This was possible in 5.5, but was more than a work around to a feature.

1 Yes

2. don't know what you mean by 'never compete. Looking for an RPO? In this case, Yes, ABR can go lower than the current 15 minutes which offers the VR. Otherwise 'performance' wise they should be similar. Check this blog post for full details on the two SRM - table replication vs vSphere Replication | VMware vSphere Blog - VMware Blogs

Does that answer your questions?

Tags: VMware

Similar Questions

  • So, what's new in the Sierra?

    I mean by that - once the upgrade there is zero information about what is new. No visit. No clues. Nothing on how to call Siri, etc.. No welcome to the message of Sierra.

    Basically, it's like taking just El Capitan. I don't see anything else yet, and there is no obvious guides to show me how to discover and use the features of the Sierra.

    I suppose that if I Google I find guides. But my point is this - why isn't any information provided after the upgrade? Basically I just continue on my way, using my Mac, I always and can't see anything else yet. No problems to speak of. Only no idea of what has changed.

    http://www.Apple.com/MacOS/Sierra/

    Their Web site?

  • SRM 5.5 - vSphere replication - error: impossible to reverse the replication for the Virtual Machine. A snapshot operation cannot be performed

    Hi all, we have just run a test DR failover of a couple of virtual machines in our protected our failover site and all site swung perfectly, two virtual machines came online and all applications work well. However when we cam to r-eprotect machines virtual, we get some errors.

    One of the virtual machines seems to have lived the reprotect end process, it is still running, but has not moved to 89% for some time. The virtual machine has a couple of grand (a little less than 2 TB) VMDK. slow progress is just a consequence of the large VMDK?

    More worrisome is the virtual machine which don't reprotect at all. It generates an error whenever I click on the "Restore" button (error: impossible to reverse the replication for the Virtual Machine.) A snapshot operation can not be performed).


    Does anyone have any ideas as to the cause?

    Thanks in advance for any help.

    Andy

    Finally got to the bottom of this. The issue was that reprotect SRM work was trying to dispel any snapshots that were taken on the computer object virtual destination in VMWare, but could not clean snapshots.

    The reason why snapshots would not consolidate was because it was snapshots of temporary VEEAM who in fact any snapshot file listed in the VSAN data store. So when we looked through the browser data store, no snapshot file existed in the virtual computers folder. Trying a manual removal also failed.

    To fix this, we created a snapshot of the virtual machine in the original data center (note is the engine to the bottom of the virtual machine), this effect was to get rid of the 'fade' snapshot that was visible in the Snapshot Manager that VEEAM backup had left behind. Once this had disappeared, the reprotect back to DCA worked perfectly.

  • Popup overlooking the picture freezes if the frame is moved

    Hi again.

    I implement a semi-automatic custom text, using Popup field to see the list. I enclose the sample code at the end of the post.

    If the image is small and the popup above the frame then the popup does not update its location if the frame is moved. Why?
    There is no problem if the pop-up window boundaries are completely within the frame.

    Any piece of advice?

    I first thought of work around that by tracking the location of the image, but I don't know how. See {: identifier of the thread = 2262958}.

    Thanks for your time.
    Antonio.
    import java.awt.BorderLayout;
    import java.awt.Dimension;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.JFrame;
    import javax.swing.JList;
    import javax.swing.JScrollPane;
    import javax.swing.JTextField;
    import javax.swing.JToggleButton;
    import javax.swing.Popup;
    import javax.swing.PopupFactory;
    import javax.swing.SwingUtilities;
    
    /**
     * JUST SAVE, COMPILE AND RUN IN DEFAULT PACKAGE.
     * POC for autocomplete textfield. If popup list overhangs the frame then list
     * location is not updated if the frame is moved. Just toggle the button and
     * move the frame window. 
     */
    public class PopupOutOfFrame extends JFrame implements ActionListener {
        String[] data = new String[]{"1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12"};
        JTextField text = new JTextField();
        JToggleButton toggle = new JToggleButton("Toggle");
        JList list = new JList(data);
        JScrollPane scroll = new JScrollPane(list);
        Popup popup = null;
    
        PopupOutOfFrame() {
            text.setColumns(10);
            toggle.addActionListener(this);
    
            getContentPane().add(text);
            getContentPane().add(toggle, BorderLayout.EAST);
            
            //no problem if the pop up bounds are completely inside the frame
    //        getContentPane().add(new JList(data), BorderLayout.SOUTH);
        }
    
        @Override
        public void actionPerformed(ActionEvent e) {
            boolean on = toggle.getModel().isSelected();
    
            if (on) { 
                //compute location
                int x = text.getLocationOnScreen().x;
                int y = text.getLocationOnScreen().y + text.getHeight();
                
                //compute widht
                scroll.setPreferredSize(new Dimension(text.getWidth(),
                        (int) scroll.getPreferredSize().getHeight()));
                
                //pop up
                popup = PopupFactory.getSharedInstance().getPopup(text, scroll, x, y);
                popup.show();
            } else {
                popup.hide();
            }
        }
    
        public static void main(String args[]) {
            SwingUtilities.invokeLater(new Runnable() {
    
                @Override
                public void run() {
                    JFrame fr = new PopupOutOfFrame();
    
                    fr.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                    fr.setLocationRelativeTo(null);
                    fr.setTitle("Just testing");
    
                    fr.pack();
                    fr.setVisible(true);
                }
            });
        }
    }

    If the image is small and the popup above the frame then the popup does not update its location if the frame is moved. Why?
    There is no problem if the pop-up window boundaries are completely within the frame.

    A popup of Swing that is entirely within its parent window is drawn as a lightweight component. One who has a party outside the window is displayed in a window of its own heavyweight. If you do not understand the terms search the net for "heavy and light weight java component.

    DB

  • 25.0 Firefox crashes, unless the mouse is moving

    25.0 Firefox crashes, unless the mouse is moving

    People from bad news. While this problem is certainly wrong with 25 and 25.0.1, I also saw him on 24 on Windows 7 after downgrading from 25. The behavior on 24 is quite erratic (a YouTube may play very well once but freeze on the replay), but it's still there intermittently. I've ever seen before moving to 25 so my suspicion is that some of the damage by the upgrade (perhaps entries from registry or links to flash drive) which cannot simply be cancelled by the resettlement of 24.

  • page stops loading until the cursor is moved, video stops playing while the audio continues until the cursor is moved, WHY?

    Recently updated for Firefox 25, Windows 7 and noticed that the pages load slowly or not at all. I realized, then, that the pages loaded so I had my cursor moving. Similarly, I noticed very well the videos loaded but played audio directly by. The video alone "moved" when the cursor moves. In the contrary case, it freezes. Don't know if it's a hardware problem, but I don't get it on IE. Have tried disabling all add-ons, no change. Have reset FF, no change. Please notify.

    This problem has been fixed in Firefox 25.0.1.

    25.0.1: pages sometimes would not load without first moving a cursor

  • Question... I was not able to take tab FireFox Mode... you have eliminated the possibility of moving from a 2 window... If not what should be checked in t

    Question... I was not able to take tab FireFox Mode... you have eliminated the possibility of moving from a 2 window... If not, what needs to be checked in the menu options for mode 2 window window... I use Version 23.0.1

    Hi gordie, you could use an addon to restore this configuration of the user interface: https://addons.mozilla.org/firefox/addon/hide-tab-bar-with-one-tab/

  • I need to transfer my history of the text and images from my old iPhone to my new iPhone, but have already moved all other data to my new phone via iTunes and spent time to organize.  How do I reset this transfer without any?

    I need to transfer my history of the text and images from my old iPhone to my new iPhone, but have already moved all other data to my new phone via iTunes and spent time to organize.  How do I reset this transfer without any?  I transfer a 5s to itself.

    For your photos, try importing them to your computer and their synchronization then back to the SE.

    Import photos and videos from your iPhone, iPad or iPod touch - Apple Support

    For your texts, they moved with the backup restore?

  • Firefox 5.0 said header-no-the track is moved, what do you mean, no option to activate-no-track more?

    What's new in Firefox 5.0 said that-not-Track header has been moved to increase the possibility to discover... This means that it would not be option to activate-no-track more? What this privacy of sacrifice? or it also means that you will be always localizable (in general or personally)? -Thank you.

    You can find it in another location.

    • Tools > Options > privacy > Tracking: "say I won't be the subject of a follow-up of web sites.

    The choice of the "-non-piste" won't that make Firefox sends a header HTTP specific (TSD = 1) on a web server.

    This is the server to do something with this request.

  • could you change the behavior of ff in full screen? I hate it when I move the whole page view tab bar. tab bar should slide on the page without moving

    could you change the behavior of ff in full screen? I hate it when I move the whole page view tab bar. tab bar should slide on the page without moving

    You can watch the extension auto hide:

    AutoHide: http://www.krickelkrackel.de/autohide/

  • Vi transitional measure displayed in the graph of the wave are moving outside the scale

    With the help of a graph of a waveform to display the pressure over time. I wanted to be able to calculate the time to drop in pressure over time, so I use the vi transitional measure. I copied what was exactly in the example for the measurement of transition inside help and it is correctly determine when to transition down, but I'm having a problem with the cursors in waveform graph. I would like to see a set of greenery along the fall time start and end time of fall as pictured, I have attached the vertical sliders (capture2) as in the example. The problem is the two always begin to 3.43 (capture1) and after each sampling period they (4.34, 5.34, 6.34) increment him come right out of all of the output of transition as these numbers measure. The period of the signal that I am interested is always less than 2 seconds, so I never see the vertical sliders.

    I tried replacing it by my signal daq with an sine wave signal generator and it does the same thing.

    The block diagram is in the first capture

    also, I would be interested to know exactly how the numbers wired to the cursor property active of the property of a waveform graph node toward real sliders on the chart. They are just automatically numbered starting at 0 from the top down?

    Wayland

    Hi Wayland,

    The sliders are still apparent in the example VI for the transitional Measurement.vi, is because the generated signal is always set to zero. Thus, signal resets a 'new' signal for the sliders to move and therefore always on the same location a bit. The waveform graph is also configured so that it won't move or continue to show new incoming data, data sliders have moved on. So in your case, you want to click with the right button on the chart and make sure that "Ignore Time Stamp" is not checked/selected. This will make it so the graph continues with your incoming data and cursors. You can check it in the example file by removing the constant True is the generator of signals and change the mentioned time stamp option previously.

    In order to view the available sliders as well as their position numbered, you can right-click in the waveform graph and select Properties. In the Properties window, there is a tab of cursors, inside this tab at the top is a drop-down menu that lists all available sliders, indexed starting with 0 at the top.

    -Jake B.

  • Envy 17 J053: Intense Lag / distorted or no sound for 30-40 seconds when the laptop is moved or picked up

    If at first I thought it was a problem with the hard drive or the power supply.

    Now I have a new adapter and also changed the standard for one SSD for Windows HARD disk starts from there instead, and all programs are installed there also. So I'm sure that's not a problem with these 2?

    I looked through the forums and elsewhere, without success and didn't have a clue what to do next, any suggestions?

    All drivers are up-to-date.

    Thank you.

    Hi @Verveon,

    Please become a member of the HP's Support Forums. I understand that you have a problem with the sound pauseing. I'll be happy to help you.

    Follow step no noise or distortion of the sound from the speakers (10 of Windows).

    Please keep me informed of the progress of things.

    If you need help, let me know and I will gladly make all that I can to help you.

    Please let me know if that solves the problem by marking this post as "accept as a Solution.
    To simply say thank you, click the Thumbs up below!

    Thank you.

  • Installing the card Point 2011 stops because the prerequisite programs moved. What should I do?

    Installing the card Point 2011 stops because the prerequisite programs moved.  What should I do?

    Hello

    Check with the help of MapPoint and in the MapPoint Forums.

    Highway, Streets & Trips, MapPoint - Forum
    http://social.Microsoft.com/forums/is/streetsandtrips/threads

    MapPoint - Support
    http://www.Microsoft.com/MapPoint/en-us/support.aspx

    Support for MapPoint, streets & trips and Highway
    http://support.Microsoft.com/ph/851

    I hope this helps.

    Rob Brown - Microsoft MVP<- profile="" -="" windows="" expert="" -="" consumer="" :="" bicycle=""><- mark="" twain="" said="" it="">

  • How do I change the speed of moving on Chess titans

    How can I change the speed of the movement of my men of opponents (playing against the computer).  They are so fast, it is difficult to follow who moved where piece

    Hello

    The speed that the movements of the computer is not configurable, but you can see the position of the last piece that moved by searching for yellow flags that will appear on the piece that moved and the Exchequer this piece comes from the post.

    Also you can find some other useful settings to make Chess Titans easier to see by pressing F5 during the game Chess Titans to open the Options screen.

  • How to highlight cells in a tree programmatically when the arrow of the mouse is moved over this last

    Hello

    I would like to emphasize a particular in a tree cell, when an arrow of the mouse is moved to the latter. Similar to drop-wndows. Can anyone help me on these.

    Concerning

    Bharath

Maybe you are looking for

  • Uncloseable pop-up windows in firefox for mac

    Hello Some Web sites will open the pop-up windows, even if I have a pop-up blocker enabled. The problem with these pop-up windows, it is that they have the option close as for other windows of Firefox for Mac. This results in the ToolTip remains open

  • Satellite Pro A10 battery replacement?

    Hi all I get the message "Critical autonomy" on my laptop for a while now. Now, I want to replace the battery because I killed the other: (.) However I've not done this before. How can I change the battery? Y at - it web sites you know that illustrat

  • Satellite L40 - the Wireless does not connect until svchost has been disabled

    Hello. I have a Satellite L40 without BONES, I bought and I installed a XP/SP3. I have a small problem when I connect to my wireless NET. It does not connect until I open the Task Manager and remove one of the two svchost process open with the name '

  • Development of SharePoint or programmer

    We are a Las Vegas-based structural engineering firm. We are looking for a developer of sharepoint, local preference to help on the configuration of the workflow that we need for our practice.  The idea is to simplify the way our customers transfer u

  • Hi there I have an acer aspire one and I have a problem with my wireless connection.

    Hi there I have an acer aspire one and I have problems with my wireless connection.it is connected, but I can't use internet.any thoughts? Thank you