Is this normal in 'Normal Redundancy' ?

GI version: 11.2.0.4 (3-Node RAC)
OS : Oracle Linux 6.4
Storage from EMC Symmetrix VMAX
I created a diskgroup with normal redundancy as shown below.
10 LUNs of 500GB each = 5000GB
CREATE DISKGROUP DATA_DG1
NORMAL REDUNDANCY
DISK
'ORCL:DATA_D1',
'ORCL:DATA_D2',
'ORCL:DATA_D3',
'ORCL:DATA_D4',
'ORCL:DATA_D5',
'ORCL:DATA_D6',
'ORCL:DATA_D7',
'ORCL:DATA_D8',
'ORCL:DATA_D9',
'ORCL:DATA_D10'
ATTRIBUTE 'au_size' = '4M';
Diskgroup created.
Since it was normal I was expecting half of the Raw space 5000GB = 2.5 Terabyte of usable space. But, the below query output shows I got only 2.19 TeraBytes of Usable space (2249.86 GB). Around 250GB short of what I was expecting.So, where is my 250GB gone ?
SQL> select name, TYPE, TOTAL_MB/1024/1024, FREE_MB/1024/1024, USABLE_FILE_MB/1024/1024 from v$asm_diskgroup where name = 'DATA_DG1';
NAME                           TYPE   TOTAL_MB/1024/1024 FREE_MB/1024/1024 USABLE_FILE_MB/1024/1024
DATA_DG1                       NORMAL          4.8828125         4.8825531               2.19713593

The amount of usable file space is equal to the amount of free disk space subtracted by the amount of disk space that is required to restore redundancy after a failure divided by the redundancy level of the disk group which is two in your case.
Run:
select trunc((free_mb - required_mirror_free_mb) / 2) as useable from v$asm_diskgroup where name='DATA_DG1';
Source: http://prutser.wordpress.com/2013/01/03/demystifying-asm-required_mirror_free_mb-and-usable_file_mb/

Similar Messages

  • ASM Quorum Failgroup Setup is Mandatory for Normal and High Redundancy?

    Hi all,
    Since I have worked with version 11.2 I had a concept about Quorum Failgroup and its purpose, now reading the documentation 12c I'm  confuse about some aspect and want your views on this subject.
    My Concept About Quorum Failgroup:
    The Quorum Failgroup was introduced in 11.2 for setup with Extended RAC and/or for setup with Diskgroups that have only 2 ASMDISK using Normal redundancy or 3 ASMDISK using High redundancy.
    But if we are not using Extended RAC and/or have a Diskgroup Normal Redundancy with 3 or more ASMDISK  or Diskgroup High Redundancy with 5 or more ASMDISK the use of Quorum Failgroup is optional, most like not used.
    ==============================================================================
    Documentation isn't clear about WHEN we must to use Quorum Failgroup.
    https://docs.oracle.com/database/121/CWLIN/storage.htm#CWLIN287
    7.4.1 Configuring Storage for Oracle Automatic Storage Management
      2. Choose the Oracle ASM redundancy level to use for the Oracle ASM disk group.
    Except when using external redundancy, Oracle ASM mirrors all Oracle Clusterware files in separate failure groups within a disk group. A quorum failure group, a special type of failure group, contains mirror copies of voting files when voting files are stored in normal or high redundancy disk groups. If the voting files are in a disk group, then the disk groups that contain Oracle Clusterware files (OCR and voting files) have a higher minimum number of failure groups than other disk groups because the voting files are stored in quorum failure groups.
    A quorum failure group is a special type of failure group that is used to store the Oracle Clusterware voting files. The quorum failure group is used to ensure that a quorum of the specified failure groups are available. When Oracle ASM mounts a disk group that contains Oracle Clusterware files, the quorum failure group is used to determine if the disk group can be mounted in the event of the loss of one or more failure groups. Disks in the quorum failure group do not contain user data, therefore a quorum failure group is not considered when determining redundancy requirements in respect to storing user data.
    As mentioned in documentation above, I could understand that in ANY diskgroup that use Normal or High Redundancy MUST have a Quorum failgroup. (does not matter what setup)
    In my view, if a Quorum Failgroup is used to ENSURE that a quorum of the specified failure groups are available, then we must use it, in other words is mandatory.
    What's your view on this matter?
    ==============================================================================
    Another Issue:
    Suppose the following scenario (example using NORMAL Redundancy).
    Example 1
    Diskgroup Normal Redundancy  with 3 ASMDIKS.
    DSK_0000  - FG1 (QUORUM FAILGROUP)
    DSK_0001  - FG2 (REGULAR FAILGROUP)
    DSK_0002  - FG3 (REGULAR FAILGROUP)    
    The ASM will allow create only one Quorum Failgroup, and two Regular Failgroup ( a failgroup to each asm disk)    
    Storing Votedisk on this diskgroup the all three asmdisk will be used one votedisk in each asm disk.    
    Storing OCR on this diskgroup the two Regular Failgroup will be used, only one OCR and primary extents and  mirror of its extents accross two failgroup. (quorum failgroup will not be used to OCR)
    Example 2
    Diskgroup Normal Redundancy  with 5 ASMDIKS.
    DSK_0000  - FG1 (REGULAR FAILGROUP)
    DSK_0001  - FG2 (REGULAR FAILGROUP)
    DSK_0002  - FG3 (QUORUM FAILGROUP) 
    DSK_0003  - FG4 (QUORUM FAILGROUP)
    DSK_0004  - FG5 (QUORUM FAILGROUP)
    The ASM will allow create up to three Quorum Failgroup, and two Regular Failgroup.
    Storing Votedisk on this diskgroup the all three QUORUM FAILGROUP will be used. REGULAR FAILGROUP will not be used.
    Storing OCR on this diskgroup the two Regular Failgroup will be used, only one OCR and primary extents and  mirror of its extents accross two failgroup. (none quorum failgroup will not be used to OCR).
    This right here below is confuse to me.
    https://docs.oracle.com/database/121/CWLIN/storage.htm#CWLIN287
    7.4.1 Configuring Storage for Oracle Automatic Storage Management
      2. Choose the Oracle ASM redundancy level to use for the Oracle ASM disk group.
    The quorum failure group is used to determine if the disk group can be mounted in the event of the loss of one or more failure groups.
    Normal redundancy: For Oracle Clusterware files, a normal redundancy disk group requires a minimum of three disk devices (two of the three disks are used by failure groups and all three disks are used by the quorum failure group) and provides three voting files and one OCR and mirror of the OCR. When using a normal redundancy disk group, the cluster can survive the loss of one failure group.For most installations, Oracle recommends that you select normal redundancy disk groups.
    High redundancy:  For Oracle Clusterware files, a high redundancy disk group requires a minimum of five disk devices (three of the five disks are used by failure groups and all five disks are used by the quorum failure group) and provides five voting files and one OCR and two mirrors of the OCR. With high redundancy, the cluster can survive the loss of two failure groups.
    Documentation says:
    minimum of three disk devices:  two of the three disks are used by failure groups and all three disks are used by the quorum failure group for normal redundancy.
    minimum of five disk devices: three of the five disks are used by failure groups and all five disks are used by the quorum failure group for high redudancy.
    Questions :
    What this USED mean?
    How the all disk are USED by quorum failgroup?
    This USED mean used to determine if the disk group can be mounted?
    How Quorum Failgroup determine if a diskgroup can be mounted, what is the math?
    Consider following scenery:
    Diskgroup Normal Redundancy with 3 ASM Disks. (Two Regular failgroup and One Quorum Failgroup)
    If we lost the Quorum failgroup group. We can mount that diskgroup using force option.
    If we lost one Regular failgroup group. We can mount that diskgroup using force option.
    We can't lost two Failgroup at same time.
    If I don't use Quorum failgroup (i.e only Regular Failgroup) the result of test is the same.
    I see no difference between use Quorum Failgroup and only Regular Failgroup on this matter.
    ======================================================================================
    When Oracle docs says:
    one OCR and mirror of the OCR for normal redundancy
    one OCR and two mirrors of the OCR for high redundancy
    What this means is we have ONLY ONE OCR File and mirror of its extents, but oracle in documentation says 1 mirror of OCR (normal redundancy) and 2 mirror of OCR (high redudancy).
    What is sound like? a single file or two or more files ?
    Please don't confuse it with ocrconfig mirror location.

    Hi Levi Pereira,
    Sorry for the late answer. And as per 12c1 documentation, yes you are right, only the VD will be placed on the quorum fail groups:
    The redundancy level that you choose for the Oracle ASM disk group determines how Oracle ASM mirrors files in the disk group, and determines the number of disks and amount of disk space that you require. If the voting files are in a disk group, then the disk groups that contain Oracle Clusterware files (OCR and voting files) have a higher minimum number of failure groups than other disk groups because the voting files are stored in quorum failure groups.
    Managing Oracle Cluster Registry and Voting Files
    Regarding your question "I want answer about is mandatory to use Quorum Failgroup when use Normal or High Redundancy?" No it isn't, I have a normal redundancy diskgroup that I store VD with no Quorum Failgroup, indeed, it would prevent you to store data on the disks within this kind of failgroup as per the documentation:
    A quorum failure group is a special type of failure group that is used to store the Oracle Clusterware voting files. The quorum failure group is used to ensure that a quorum of the specified failure groups are available. When Oracle ASM mounts a disk group that contains Oracle Clusterware files, the quorum failure group is used to determine if the disk group can be mounted if there is a loss of one or more failure groups. Disks in the quorum failure group do not contain user data, therefore a quorum failure group is not considered when determining redundancy requirements in respect to storing user data.
    Managing Oracle Cluster Registry and Voting Files
    And as per the documentation, my answer are with red color:
    Could you explain what documentation meant:
    minimum of three disk devices:  two of the three disks are used by failure groups and all three disks are used by the quorum failure group for normal redundancy.
    how all three disk are used by the quorum failgroup? [I don't think this is correct, sounds a bit strange and it is the opposite for what is right before...]
    Regards.

  • How can I just disable "navigation toolbar" completely for the App Tabs? I don't want to disable this for other normal tabs.

    How can I just disable "navigation toolbar" completely for the App Tabs? I don't want to disable this for other normal tabs. This is important as otherwise while I am in the app tab, i mistakenly start browsing from that tab and meaning of the app tab is completely lost...

    How can I view my full billing history for the app and music stores without iTunes installed?
    No.
    If my account has been compromised
    If you even think this may have happened, immediately change your password.
    See this -> Apple ID: Changing your password

  • WSUS throwing 13002, "Client computers are installing updates with a higher than 25 percent failure rate. This is not normal."

    Hello,
    Within the past two months our WSUS Server started throwing error 13002, "Client computers are installing updates with a higher than 25 percent failure rate.  This is not normal."  We currently have 252 computers with errors in WSUS,
    and 33 updates with errors.  We have never had issues up until two months ago.  If you keep rebooting the machine, and keep running updates, they eventually all install.  I believe I will see the machines with errors go away as the weekly scheduled
    WSUS install runs over and over, and the machines reboot.
    - We run IE8 in our environment and sometimes IE9.
    - We have 300 clients, all running Windows 7 SP1 x64.
    - Our WSUS server is running on Server 2008 R2.  The WSUS build number is 3.2.7600.262.
    - We created an alternate WSUS 4.0 server on Server 2012, and redownloaded all updates.  We put one client on it and it is showing errors on 3 updates, KB890830, KB931125, and KB2917500.
    - Clients are throwing errors 800F0902, 80242016, and 80070005.
    - I've noticed something with the C:\Windows\SoftwareDistribution\Download folder on the clients.  When an update runs and fails, there is a "Install" folder created inside this folder.  If you try to open it after the failure you get
    "Access Denied"  If you reboot the machine, the install folder goes away.  (I assume this is a temp folder created to run updates).  I've checked the permissions on this folder on various machines and all seems normal.  I think
    this is the root of the problem, and why we need to keep rebooting to get all of the updates to run.  
    - I tried deleting the Software Distribution folder on a client after stopping the update service, then restarting the update service.  The folder redownloads but the client still throws errors.
    - I've gone through our Group Policies looking for anything that can cause this and found nothing.  We've created a test OU blocking inheritance, and only applying a WSUS policy in it to make it get the updates internally.  I then rebuilt multiple
    machines using Dell KACE, and still had failures.
    - We run SEP 11 and 12 on our clients.  I've tried removing the AV, making sure the firewall was off, etc.  It still throws errors.
    - I've spoken with our network team, and installed wireshark on a few clients looking for network errors and found nothing.
    - I've tried various Dell KACE scripted installs on test machines (erasing and rebuilding the machines from scratch), after which I run Windows Updates from WSUS.  They have thrown errors.
    - I've rebuilt a machine using Dell KACE, undomained it, then ran updates externally from WSUS going to Microsoft's site, and I'm still getting errors.
    - I've tried removing all software from the Dell KACE build to where it is just installing the OS and I'm still getting errors.
    - I tried taking a plain Windows 7 x64 DVD and installing that on a test machine, then without domaining it and without installing any other software, running updates from Microsofts update site.  This seems to work, althrough it does throw some errors
    but I believe those are related to having to reboot your machine in order to complete the updates (I can't remember that error code at the moment).
    Has anyone else been experiencing this?  Any suggestions as to how I can fix this?

    Hi,
    Error 800f0902
    Please try the method in this thread:
    Error
    Code: 800f0902
    Error 80242016
    If you receive Windows Update error 80242016 while checking for updates, it might be caused by a connection interruption between your computer and the Windows Update servers.
    80070005
    Usually means access denied
    Since it worked perfectly for a while, did you make any change on the server? Any applications new installed on clients?

  • When i click on iphone ine. how do i get out of this and sync normally?

    When i click on iphone in itunes it just comes up with option to restore from backup. how do i get out of this and sync normally?

    Found a setting in Google that was telling it to open all result in a new Windows which I was guessing that Firefox was overriding and open it in a new tab like settings suggested unchecked the box in Google and now the behavior is back to normal.

  • Why is my iPad all fuzzy and blue? This isn't normal? How do I get it back to normal? Someone please help me.....

    Why is my iPad all fuzzy and blue? This isn't normal? How do I get it back to normal? Someone please help me.....

    Try resetting it.  Hold the on/off and home buttons together for about 10 seconds till the Apple logo appears.

  • How can I un-install my adobe premiere Pro CC 2014, I can not do this in the normal way because this program is not in the UN-INSTALL list?

    How can I un-install my adobe premiere Pro CC 2014, I can not do this in the normal way because this program is not in the UN-INSTALL list?

    http://helpx.adobe.com/creative-cloud/help/install-apps.html (and uninstall)

  • Hello, on Mac, when I make a .pdf from a .doc, Acrobat reverses pagination. How do i stop this and get normal order 1,2, 3 ... ? And how will I know whether any good soul has answered, thanks much.

    Hello, on Mac, when I make a .pdf from a .doc, Acrobat reverses pagination. How do i stop this and get normal order 1,2, 3 ... ? And how will I know whether any good soul has answered, thanks much.

    How are you creating the file, exactly?
    And if you don't manage to solve it you can use this free tool I've developed to reverse the page order in Acrobat with a single click:
    Custom-made Adobe Scripts: Acrobat -- Reverse Page Order (FREE)

  • I am updating the software on my daughters IPOD touch 4th generation and it is going on 4 hours now.  I know this is not normal.  What can I do?  It synced just fine, but has been stuck on" updating ipod software for 3 hours now!

    I am updating the software on my daughters IPOD touch 4th generation and it is going on 4 hours now.  I know this is not normal.  What can I do?  It synced just fine, but has been stuck on "updating ipod software" for 3 hours now!
    She has had it for about 6 months and this is the first time we have plugged it into the computer since then.  I can not exit out of itunes either.

    If you still have the problem after retoring the iPOd to factory defaults/new iPod then The iPod is likely defective and replacement is required.  You can make an appoinment at the Genius Bar of an APple store or take it back to BestBuy if within warranty

  • Register Applications photoshop CC   Lightroom 300 baht per month Creative Cloud desktop install and load the program into Lightroom down normally open normally, but the work load photoshop program installed. Open access Like we use it to fill a 30-day tr

    Register Applications photoshop CC   Lightroom 300 baht per month Creative Cloud desktop install and load the program into Lightroom down normally open normally, but the work load photoshop program installed. Open access Like we use it to fill a 30-day trial version, serial no.

    1) WHAT if I juse JUST ONE Adobe program pretty often? 
    They have a single use subscription for $20/mo.  Similar to upgrading extended version every 1.5 years.
    2)  WHAT if I created projects like 2 months ago and I didn't use Photoshop for a full month.  Who assures us that with the CC series the projects are opened with the old CS ones?Or don't use it every day?
    Same problem if you own it.  If upgrade price is $400 every 1.5 year that is same as $16/month.  You can choose not to update and version will be same as when you last used it.
    3) WHAT if I don't use Adobe 24/7?  and 5) Making an day-based subscription??  Same problem if you own it.  If upgrade price is $400 every 1.5 year that is same as $16/month.
    4) Adobe, do you think to be the only one making these softwares?
    Competition is always a factor in market.
    6) After all this mess, you discriminate Europeans, too?
    Taxes charged by Governments and municipalities are not controlled by Adobe.

  • IPOD MINI&UPDATER PROBLEM!! THIS IS NOT NORMAL!!

    Hello guys
    I just downloaded the newest iPod updater 2006-01-10 for my brother's iPod mini. There was an update necessary. So then I install it, plug the iPod into my computer, and it determines that update is necessary. So I then update it. Normal routine. But when it says "please leave the iPod connected while it reboots" or something of that sort, it stays like that. Its not frozen, and Windows still responds. When I try to exit the program, it says "Can't interrupt process." So then I just remove the Mini from with Safely Remove Hardware. Now here's where it gets spookier and weirder. After I disconnect the Mini, I try to play a song. It plays. I try to forward to the next song. It doesn't! I try to rewind to the last song. It doesn't!! I reset the iPod then try it again. It still doesn't! It pauses, plays, and click wheel respongs, but it just doesn't wanna forward/rewind. So then I connect the Mini to my computer, and open the updater, thinking to restore the Mini. Then this dialogue comes up, saying "iPod service error." I can't even restore now. I tried the same thing with the updater 2005-11-17, and does the same thing to me. What is wrong? Has anyone had this similar or same problem? Is this because of the updater? Now I think I have no choice but to bring it to Apple store...if I can't find a solution to this. Please!! Help!! Thank you!!

    Oh and by the way when I keep holding the forward/rewind button, it can still search (if thats what its called) meaning that I can still go to a certain point in a song I choose so that I can start listening from there.

  • This code executes normally in VS2014, despite the fact that an inline member function is not defined in every TU in which it is odr-used.

    Consider this code:
    header.h:
    #include <iostream>
    class A{
    int i;
    public:
    A() : i(101) {}
    void print();
    void g(A&);
    cpp1:
    #include "header.h"
    inline void A::print() { std::cout << i << '\n'; }
    int main()
    A a;
    a.print();
    g(a);
    cpp2:
    #include "header.h"
    void g(A& a) { a.print(); }
    Note that the member function A::print is defined outside its class with the specifier inline. The code executes normally in VS2014, despite the fact that the member function is odr-used in cpp2, but it is not defined in this file.
    I found the following quotes from the C++11 Standard:
    9.3/3:
    An inline member function (whether static or non-static) may also be defined outside of its class definition provided either its declaration in the class definition or its definition outside of the class definition declares the function as inline.
    3.2/3:
    An inline function shall be defined in every translation unit in which it is odr-used.
    7.1.2/4:
    An inline function shall be defined in every translation unit in which it is odr-used and shall have exactly the same definition in every case.
    The two last quotes above don't speak exactly about a member function but I believe they should be applied in this case too, as the inline specifier is a hint for the compiler to expand the function inline at the point of call. If we assume the compiler
    does this inline expansion, how does it know the definition of the member function, while compiling the cpp2 file?  

    On 12/31/2014 12:13 PM, Belloc wrote:
    C++ is supported on many different systems, with tools provided by many different vendors. Microsoft's linker happens to be pretty smart about merging identical blocks of code. Other toolchains may use linkers that weren't designed with this in mind,
    and that would choke on multiple definitions of the same symbol. The C++ standard is written so that it's actually implementable, on as many platforms as possible.
    Frankly I don't understand your statement above. What would be the difficulty for any compiler*that is already compliant with 3.2/3 and 7.1.2/4*, to adapt its code, so that each call to an inline function in a TU, which doesn't carry the function
    definition, is simply not inlined?
    That's the easy part. The "there's identical function definition in every .obj file, and the linker is expected to merge them all together" is the hard part. Normally, if you define a regular (non-inline) function in more than one source
    file, you get a linker error. Microsoft's linker has a special way to mark "defined more than once, just pick any copy" block of code (see __declspec(selectany) ). Other linkers may not.
    Igor Tandetnik

  • Is this rendering time normal?

    ok, here's the set-up:
    a 1.30 minute sequence with 4 tracks:
    track 1: 16:9 DV footage with fisheye filter and extensive motion keys (lasts 1.30 minutes)
    track 2: a still PSD image with extensive motion keys and add composite mode (lasts 5 sec.)
    track 3: a still PSD image with extensive motion keys and add composite mode (lasts 1 min.)
    track 4: a still PSD image with an applied mask and extensive motion keys and a 16:9 matte filter (lasts 1 min.)
    (all footage and still images is located on my external LaCie FW drive)
    this whole sequence gives me a render time of 55 minutes.
    is this normal?
    if yes, any way of speeding it up?
    if no, what am i doing wrong?
    I am just worried that there is some sort of bottle neck caused by something i am unaware of.
    any answers out there?
    cheers
    -j-

    is this normal? < </div>
    Probably.
    if yes, any way of speeding it up? < </div>
    Yes, but they take practice and planning. When you stack up effects and moves, the pixels are rendered one at at time, looking all the way up and down the stack. You try to figure out what you can do as a pre-rendered movie and what you can combine. You also try to make sure you're not doing more work than necessary. With your hardware, scaling PSDs shouldn't be a big deal but if you do not need the huge images, yes, scale them down in PD or just export them as stills from FCP. Reimport.
    Pre-rendering individual layers is probably where you gain the most efficiencies. Takes lots of planning.
    It doesn't long to figure this stuff out.
    bogiesan

  • This sound is normal?

    Lapton I buy a toshiba L355-S7835,but each time the cumputer makes a noise,quietly,but I'm concerned,I don't think is the fan.The team works well so far and fast,but don't know if that sound is normal in this equipment.

    is the sound that silent radio frequency sound? my toshiba is making that noise and i just bought it

  • When I create a new tab it always presents a Yahoo search engine rather than my home page (Google). A new session of firefox does not do this but acts normally

    When opening a new tab, the 'homepage' presented in the new tab is a Yahoo homepage. If however, I open a new session of Firefox rather than a new tab, I get my normal Google homepage.

    For information about how to get rid of Yahoo see:
    http://medicine-opera.com/2010/03/how-to-disable-yahoos-theft-of-firefoxs-open-a-new-tab/

Maybe you are looking for

  • IPod was skipping songs. So I did a "restore".  Now it won't sync

    OK, my iPod was skipping songs. I'd play an album, it would try and play some songs, skip them one at a time. it was probably failing about 30% of the time. So, I thought I'd try to "Restore" the iPod, and then sync it. Restore worked great. It wiped

  • Previews are not visible in library mode or import mode.

    I downloaded LR2 and imported my catalog from LR1.0. It looks like the photos are there but no previews / thumbnails. I have uninstalled and reintstalled but still have the same problem. The really strange thing is when I click to open in CS3 the pho

  • Lightroom 5 non stop crashing on Windows 7

    And yes, I already did the ui.dll exchange... now it also blacks out randomly when moving around the interface. Not always the same but it will certainly do it after a few clicks... won't continue working with it WAY too risky. Needless to say every

  • Need to reinstall Acrobat X but Application Manager says it's installed.

    I have to reinstall Acrobat X and used the uninstaller to uninstall Acrobat and Distiller. Application Manager in CS6 says it's installed. How do I reinstall? Thanks!

  • Table maintanence dialog transaction

    Hi, i created a transaction to maintain a Ztable and all the fields in that table are enabled for input. i need to make only few fields enabled for input/change. is there any way to do that. Thanks, Venu.