Should I disable RAID 0?

I need some advice on what to do with my present system. I will be using CS4 Prod Prem for editing HD, AVCHD, SD, etc. ...here's the issue -
I bought a custom built comp with -
Antec 902 Mid Tower ATX case
750Watt Corsair power supply w/140mm fan
2-120mm fans
ASUS P6T mobo
Core i7 920 CPU
Kingston V-Series SSD 128gb drive (for Win 7 + app's)
2- WD Caviar Black 1TB
12gb RAM (mushkin 4gbx3)
nVidia Quadro FX 1800 + Elemental Accelerator
+
I have 4 USB external drives, and one Firewire 800 drive attached as well. (Unfortunately these are 'mostly' maxed out, but I can still defrag.)
I had originally asked for the 2 WD Caviars to be set to RAID 0, but after I realized I would have no redundancy I asked for it just to be set up as two single drives. But, they kept it in RAID 0 . The RAID is controlled by the ASUS mobo. I am thinking a RAID 3, for now....eventually expanded to RAID 30 will be my best option.
I know I'll have to get more HDD's, but I need to know what would be my best option.....
1. Should I disable the RAID 0 until I can get more HDD's so I won't lose data? If so, how do I go about that....I would need to re-install Win 7 correct?
2. Or, should I just go ahead, get 2 more drives and go with a different RAID (x)?
3. If I have to get a RAID controller card for RAID 3, what's my cheapest/most reliable option? I just don't think I can swing the high end Areca cards right now.
4. If I go RAID 3, and want to expand to RAID 30, will I have to run an external RAID tower instead of internal discs?
5. If a drive goes down, how fast do I need to get the new drive in?
Lost, dazed and confused....please help!

1. Should I disable the RAID 0 until I can get more HDD's so I won't
lose data? If so, how do I go about that....I would need to re-install
Win 7 correct?
Win 7 and your programs are on the SSD, so there is no need to re-install Win7. To disable the current raid0, you have to know how it was setup. Was this done in the BIOS using the ICHR10 or the Marvell chip or was it done in software under Windows? Look in the user guide in section 4.4 for instructions on how to break out the raid to individual disks.
2. Or, should I just go ahead, get 2 more drives and go with a different RAID (x)?
Getting 2 more internals is always wise, since they are a lot faster than your current USB externals and these are already pretty full. I would make sure you get the identical model as your current WD Caviar Black. Also make sure that ACPI is disabled in the BIOS, because it can disrupt reliable operation of the Caviars in a raid. BTW, I'll explain later, but consider getting 3 Caviars instead of 2.
3. If I have to get a RAID controller card for RAID 3, what's my cheapest/most reliable option? I just don't think I can swing the high end Areca cards right now.
AFAIK Areca is the only controller card to offer Raid3. Also keep in mind that buying an Areca controller card is like buying a Vinten or Sachtler tripod and fluid head. Pretty expensive, but usually they last a lifetime. Now the Areca may not last a lifetime, but can certainly last a couple of PC generations.
4. If I go RAID 3, and want to expand to RAID 30, will I have to run an external RAID tower instead of internal discs?
Not at all, if your case is large enough. For instance in my case I currently have 2 BRD burners and 17 3.5" disks. If I want I can increase that to 2 BRD burners plus 21 3.5" disks of which 15 hot-swappable.
5. If a drive goes down, how fast do I need to get the new drive in?
As I said above, I suggest you get 3 WD CB disks. You can then configure them in a 4 disk raid5 array plus 1 hot-spare. The dilemma is that AFAIK neither the ICHR10 nor the Marvell support hot-spares, so you may need an Adaptec, Areca or 3Ware controller to get hot-spare support. If you don't have the budget for an Areca controller, then in the future you may find that the more affordable Adaptec or 3Ware card (or even Hightpoint or LSI) have no further use if the time comes for a raid3 card.
With a hot-spare in a raid5 when one disk fails, you can take your time with getting a new one (although with reduced security untill replacement). If one disk fails, you will have reduced performance for less than an hour, maybe only for minutes, untill the hot-spare kicks in. You can easily take a week or even two weeks to get a replacement disk if you can live with the reduced security of not having a hot-spare available anymore.
With hot-swappable drive cages you gain easy access to all your disks, like for instance the SuperMicro CSE-M35T, http://www.newegg.com/product/product.aspx?Item=N82E16817121405
Hope this helps.

Similar Messages

  • Is it possible to disable raid without reformatting?

    I'm currently running 2 Seagates in RAID striping mode (raid 0?), but I'm having some issues with my second HD, which is smaller and older than the MAIN drive. Is it possible to disable RAID, and go back to normal mode (C: and D: drive) without doing a complete reformat or losing anything that's already installed on the HD's? Thanks for any help
    i'm using a k8n Neo2 Plat.

    It depends on how much spare space you have on both drives - if the total data is significantly less than the smaller of the two drives what you could try is to use Raid manager to Convert the striping array to a mirror which would give two drives with identical content.  I haven't tried this but it should work AFAIK.  OTOH, it's probably better to do a backup anyway.

  • Do I need Java 8 or should i disable it? What happens if i disable it? And what is the difference between Java and Java Runtime?

    Do I need Java 8 or should I disable it? What happens if i disable it? And what is the difference between Java and Java Runtime?

    There's no difference. They're both runtime plug-ins (they run when an app calls for Java functions).
    You only need Java if you either have Java apps on your Mac that won't run without having it installed, or you use trusted web sites that require Java to function (getting fewer and far between). Otherwise, you have no need for it at all.

  • Parameter should be disabled

    Hi,
    I am having some parameters on selection screen.
    one parameter is having default value. At the time of execution, that paramter should be disabled, means it should be in 'display' mode with the default value entered.
    here is the code---
       PARAMETERS : p_pernr1 like pa0001-pernr,
                               : p_endda1 LIKE pa0001-endda DEFAULT '99991231'.
    I want p_endda1 in disable mode at selection screen.
    Can anyone suggest the logic for this?
    thanks
    Revanth

    Hi,
    PARAMETERS: p4(10) TYPE c default 'text' MODIF ID bl2,
                p5(20) TYPE c ,
                p6 TYPE c LENGTH 10 .
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
          if screen-group1 = 'BL2'.
           screen-input = '0'.
        endif.
        MODIFY SCREEN.
      ENDLOOP.
    rgds,
    bharat.
    Message was edited by:
            Bharat Kalagara

  • Should I disable Netinfo?

    When I upgraded to Tiger server, I started using LDAP. Working on another issue, I noticed that in Directory Access, I still have Netinfo service checked off. Should I disable Netinfo service on all my OS X clients now that I'm using LDAP?

    NetInfo has a local domain and a network domain. If the NetInfo plug-in is unchecked in Directory Access, the network is not searched for NetInfo servers but your local domain continues to work just fine. However, there should always be a netinfod process running to support the local domain. Don't disable that.

  • Should I disable wi-fi when not using it ? Will this preserve the Battery?

    When I`m at home,should I disable the wi-fi when not using the internet ? Does this preserve the battery?

    http://ipod.about.com/od/iphone3g/tp/iphone-battery-life.htm
    #5 on the list to preserve battery:
    Keep Wi-Fi Off
    The other kind of high-speed network that the iPhone can connect to is Wi-Fi. Wi-Fi is even faster than 3G, though it’s only available where there’s a hotspot (not virtually everywhere like 3G). Keeping Wi-Fi turned on at all times in hopes that an open hotspot will appear is a sure way to drain your battery life. So, unless you’re using it right this second, keep Wi-Fi turned off.
    Find it in Settings -> WiFi -> Slide to Off

  • Should I disable the sudden motion sensor after upgrading to an SSD

    I put a 1TB Samsung 840 EVO in my MacBook Pro (9,1).  Should I disable the sudden motion sensor?  Does it do anything else other than park the hard disk (like something with the fans)?

    You may want to read up on the SMS here:
    Mac notebooks: About the Sudden Motion Sensor
    Sounds like you can safely disable it if you wish since MacBooks which ship with an SSD drive seem to have it disabled.

  • Should I disable onboard sound when..

    Should I disable the onboard audio and stuff when I install the X-Fi. I installed my X-Fi some time ago and have never had any hardware problems with it, however recently I was in the BIOS options area (F2 at the splashscreen I think) and saw the option for disable onboard audio. Will it improve my system if I do disable it or will it require a reinstall of my soundcards driver and stuff. Any response is appreciated.

    Well,
    You're supposed to disable it, Yes. Your system needs to know wich card you will use. May create conflict if you have both enabled. Yes, disable it.
    Fremen

  • Should I disable apple ie dav

    should I disable apple ie dav

    Well I think I may have kicked this into life.
    Here are the steps that I followed:
    [Important] Backup your bookmarks, I use IE, so I exported them to a bookmarks.htm file for safe keeping. (I also deleted my Cookies and temporary Internet Files, just for good measure)
    Uninstall iCloud control panel
    Reboot your PC
    Once rebooted. Go to your user profile area, Favorites. Delete all your bookmarks under Favorites. (C:\Users\<yourusername>\Favorites\..)
    Download the latest iCloud control panel from Apple. v3.1.0.40 was what I downloaded. Save the exe, don't run it yet.
    Right click the iCloudSetup.exe and Run As Administrator.
    Reboot
    Login, open the iCloud Control Panel. Sign in with your apple ID.
    I am only syncing Bookmarks. So tick Bookmarks. Options->tick Internet Explorer. Click OK.
    Click Apply.
    If you then browse (using Windows Explorer) to C:\Users\<yourusername>\Favorites\.., within seconds you should see your Bookmarks appear, downloaded from iCloud. Check with your iPhone/iPad to see if they match up.
    This has worked for me so far, and there are no AppleIEDav errors (yet).
    WARNING: if you currently sync your photostream, AND you sign-out of iCloud Control Panel, or if you uninstall it, I'm not sure what effect it will have the photostream on your PC. So please be cautious.

  • Should I disable the wireless capabilities of my Bigpond modem/router when Airport Extreme is connected?

    Should I disable the wireless capabilities of my Bigpond modem/router when Airport Extreme is connected? I'm told that it's better to only use the WiFi capabilities of the Extreme and leave the Bigpond to feed to the extreme.

    No, bridge mode would not be the correct setting for this.
    Instead, look for a "wireless settings" tab or page that will provide the option to turn off or disable the wireless radio of the BigPond router.
    If you are still having difficulty, it would be a good idea to post your question on a BigPond support forum or contact your Internet Service Provider.
    Contact Technical Support - BigPond

  • Why is Telemetry enabled by default when support page says it should be disabled in release builds?

    Page at https://www.mozilla.org/en-US/privacy/firefox/#telemetry says Telemetry feature should be disabled by default in release builds. I just updated to 34.0.5 and it is enabled. I don't know if in a previous version is was enabled and it kept the same state, but I never manually set it to enabled.

    hello itabirca, just to be sure: you did look at options > advanced > data choices to check if the extension was enabled?
    did you use a firefox beta release or the testpilot addon in the past?
    https://wiki.mozilla.org/Telemetry/FAQ

  • [JList] serious bug: readonly attribute should not disable jlist nav

    Hi,
    I've got a JList with a navigation binding. As display attribute, I chose an attribute that is read-only (Updateable: "Never").
    Now the entire list becomes disabled. The fact that the field I'm displaying is readonly, does not mean that the navigation should be disabled. I want to be able to navigate through the records, which has no influence on the values of the attribute, so I see no reason why this is disabled.
    Something similar was already discussed here: re:Bug: JList does not always show the right selection
    but Shailesh could not reproduct it at that time. I've got a reproducable testcase now.
    By the way, it's fairly easy to create your own testcase:
    - Create an Entity with a default view object, and set the primary key (for example 'Id') to Updateable: Never.
    - Populate the table with a few records.
    - Create a JClient with a default form and panel to edit the data.
    - Add a JList to the panel and bind it as a navigation binding to the view object, and select Id as display attribute.
    - Run the app. You'll see that you can't use the list to navigate through the records. This should however be possible, as long as you don't change the values.
    I would like to file this as a bug report, and more importantly, I would like to know if there's a workaround I can try (calling setEnabled(true) on the JList from inside jbInit doesn't seem to work).
    Greetings,
    Ivo

    The same problem goes for the JCombBox with a navigational binding. Once the binding involves a non-updatable attribute, the control goes disabled.
    I have solved this by creating my own sub-class of JComboBox which cannot be disabled. It overrides the setEnabled(boolean) method and does nothing (no call to super.setEnabled()). So, whenever I need a JComboBox with a navigational binding, I use this sub-class.
    To work around your problem, I would suggest you create a JList subclass which also overrides the setEnabled() method and replace your JList instances with ones of the new clas.
    HTH

  • If Date Pick is future Date then Select List should get disabled

    Hi,
    I use Application Express 3.1.1.00.09 version.
    Item P320_LATEST_DLR_DATE_PROJECT which is Date Picker(DD-MON-RR), if the date selected is greater than system date then P320_LATEST_DLR_RATING_PROJECT which is Select List should get disabled.
    I tried in this manner:
    1. Javascript in the Page Header:
    <script>
    function dis_selectlist(pThis, pThat)
    if (pThis.value > 'SysDate')
    {$x(pThat).disabled = true;}
    else{$x(pThat).disabled = false;}
    </script>
    2. Date Picker(P320_LATEST_DLR_DATE_PROJECT) HTML Form Element Attribute:
    onchange="dis_selectlist(this,'P320_LATEST_DLR_RATING_PROJECT')"
    But it is not resulting in disabling of Select List Item.
    Can any one tell me if this is proper or any other method to get the result?
    Thanks,
    Priyanka.

    except for making a calendar (http://active.tutsplus.com/tutorials/actionscript/understanding-date-making-a-calendar-in- as3/) there is only logic needed to create that app.

  • Should I "disable" the older versions of Java Console prior to version 6.0.24?

    While exploring the new features of Firefox v4.0 I discovered, in the Add-ons Manager, that all of the previous versions of Java Console, back to v6.0.05, were still enabled. Should I disable all versions prior to the most recent?

    I'm quite sure that it is not possible to extricate Java from MacOSX. When installed, bits and pieces of it go everywhere and to locate individual items and remove them is next to impossible.
    That said, I believe it has been attempted, but whether successfully, I can't say.
    Reason I know this is because I ran into problem with latest version of JRE on MacOSX machine operating as FileMaker server. Latest version of JRE caused java-based administration console to break.

  • Disables RAID will work?

    my friend want  the new mobo ( MSI K8T Neo-FSR ). he had only one HDD 20GB WD. I know, it must have  two HDD for RAID. If disables RAID will work one HDD on IDE1? he want an AMD64.

    that is great. I will call him for good news.
    thank for fast reply.  

Maybe you are looking for

  • Installing an application with multiple CD's but one drive question....

    Hi Folks, Did a search but I wasn't really sure what I was looking for. Last weekend I tried to install a large application on my macpro. The first disk started working, mounted an image and did it's thing, then it asked for another disk, which I had

  • Photostream and Itune match are no longer working ?

    I couldn''t acces the Photostream wile in the previous releases I had no issue with that. So today I had some time and reinstalled my Apple TV 3, heart about some network problems and a reinstall should have solved the issues However, after the reins

  • PS Elements 12 very slow, very very slow!

    Hi, I started using Ps elements 12 to try it out. My past experience with elements is flawless speed but with 12 for example using the smudge tool can sometimes take up to 30+ seconds to complete. I can actually watch the progress are the picture as

  • Where do you buy your apps?

    Where do you buy your apps for the iphone? Right on the phone? Can you buy them online if you have an itunes gift card? 

  • Can I list/export more than 3-4 all-day events

    Hi: I need a way to list more than 4 all-day events in the monthly view. The three dots up above mean they will list in the daily/weekly view but this does me no good. I also wonder if you can export to .pdf more than 3 all-day events. Why is this no