New storage node not taking any traffic

Hi all,
I have a strange situation where we introduced a few new storage nodes into a cluster that already had about 190 storage nodes running. From what I can tell, the nodes joined the cluster just fine (I see them listed as part of the cluster according to the JMX node, and their logs indicate as much).
The problem is that they don't seem to take any traffic. Their get and put counts are at 0, their size is at 0. They have the exact same configuration as every other node running in the cluster, and are even running on the same box as other storage nodes (so shouldn't be networking related).
Any ideas as to what could cause this to happen? They nodes have been up for days now and nothing has changed. There isn't anything along the lines of errors in the storage node logs or anything that seems to be related or would indicate a problem.
Thanks,
Chris

Hi Chris,
What is your partition count set to, is it still the default of 257? If it is then this could be your problem, I have had issues in the past with partition counts too close to the cluster size. For a cluster of 190 nodes you really need a big partition size, we have 8191 on a 170 node cluster.
JK

Similar Messages

  • I was restoring my phone and sametime my laptop turned off and now i m trying to restore again so its not taking any ristore.. so what can i do????

    I was restoring my phone and sametime my laptop turned off and now i m trying to restore again so its not taking any ristore.. so what can i do????

    You have to enter the Apple ID and password. You are running into the Activation Lock
    iCloud: Find My iPhone Activation Lock in iOS 7
    Is there a way to find my Apple ID Name if I can't remember it?
    Yes. Visit My Apple ID and click Find your Apple ID. See Finding your Apple ID if you'd like more information.
    How do I change or recover a forgotten Apple ID Password?
    If you've forgotten your Apple ID Password or want to change it, go to My Apple ID and follow the instructions. SeeChanging your Apple ID password if you'd like more information.

  • HT5958 I have just updated to FCPX 10.1 but my new libraries do not contain any of my previous events or projects - any body know the answer?

    I have just updated to FCPX 10.1 but my new libraries do not contain any of my previous events or projects - any body know the answer?

    Did you select the "update old events and projects"  option?
    Are the originals on external hard drives that aren't connected at the moment?
    Exactly how did you upgrade to 10.1?

  • My new 5c will not text any other phones but other Iphones

    my new 5c will not text any other phones but other Iphones

    yoga3 wrote:
    thinking I may need to call AT&T?
    Yep

  • My new Ipad2 is not charging any suggestions?

    My new Ipad2 is not charging any suggestions?

    Thanks I used used my Iphone 4 plug and the ipad2 lead and its now charging Don't get why the plug that came with the Ipad wouldn't work or why it didn't work on my pc
    Thanks

  • My new iphone5 will not charge,any suggestions

    Hello, my new iphone5 will not charge, when I plugged it in to recharge, it was making beeping sounds for about 5 minutes then stopped, any suggestions? thanks

    First of all, you'd probably want to move this question out of iPod classic category to iPod touch one.
    Try reconnecting your cable. Try connecting to your computer instead of wall socket, or vice versa.
    Try resetting, restoring, restoring from backup. Make sure there's nothing wrong with your cable and try another one. The problem might be in your connector or the cable, if so — you might want to ask for a repair in your local Apple Store or Apple Authorised Reseller.

  • ACE is not recieving any traffic on VIP

    Hi,
    I have multiple vips running scenario, of which one vip is not functioning at all. I have bridged mode scenario. The probes for the rservers are showing as success and when i am trying to find the active connections using "show conn", i cant see any connection reaching ACE on that VIP. I can ping the VIP but unable to see any traffic on that VIP. When i telnet on the VIP on the port 8080 i can telnet, but on the browser its showing as Content Server error.
    Attached is the ace configuration.
    Thanks
    Amit

    Just to add in above post, from command prompt iam able to telnet on the VIP ip address (192.168.3.145) on port 8080 and from the web browser i cant.
    Thanks
    Amit

  • Parameters passed in smartforms are not taking any value

    hi everyone
    Ive passed parameters in my print program and these parameters are defined in the Forms Interface Section of the smartforms, but when I am executing the program, the smartforms is not taking the value of the parameters,
    Can anybody help me plz?

    how to check if I have correctly imported the data?
    The data in the print program is correct, but I dnt know why the values are not taken to the form.
    This is part of the code
    call function func_mod_name
        exporting
      ARCHIVE_INDEX              =
      ARCHIVE_INDEX_TAB          =
      ARCHIVE_PARAMETERS         =
        control_parameters         = control_parameters
      MAIL_APPL_OBJ              =
      MAIL_RECIPIENT             =
      MAIL_SENDER                =
       output_options             = options
      USER_SETTINGS              = 'X'
        SCHKZ                      = wa_print-schkz
        STARTDATE                  = wa_print-startdate
        DURATION                   = wa_print-duration
        COUNTRY                    = 'BE'
        importing
      DOCUMENT_OUTPUT_INFO       =
      JOB_OUTPUT_INFO            =
       job_output_options         = options
        exceptions
        formatting_error           = 1
        internal_error             = 2
        send_error                 = 3
        user_canceled              = 4
        others                     = 5
    and the variables SCHKZ  STARTDATE DURATION and  COUNTRY              
    are defined in the Form Interface level of the form
    is it ok? or i am missing something else?

  • New Jtree node not displaying

    I have created a Jtree with some default elements. Later on I add new ones with the: treeModel.insertNodeInto() method. However the new node is not displayed. If I colapse and expand the tree it's still not displayed. Is there anything I need to do to tell the tree to refresh itself.

    Here are some more details that might help isolate this refresh problem. I've got a custom JPanel that displays a JTree. The root of JTree has 2 children: A, and B. You can dynamically add a Foler to A, where Folder implements TreeNode. You can drag elements from the tree rooted at B to a Batch. I've subclassed JTree to handle the drag and drop.
    public class Folder implements MutableTreeNode {
    public class MyPanel extends JPanel {
        private DefaultMutableTreeNode root, A, B;
        private MyTree tree;
        public MyPanel() {
            root = new DefaultMutableTreeNode();
            A = new DefaultMutableTreeNode("A");
            B = new DefaultMutableTreeNode("B");
            root.add(A);
            root.add(B);
            tree = new MyTree(root);
        // this method refreshes the tree correctly!!!
        public void addFolder(Folder f) {
            A.insert(f, A.getChildCount());
            // let the model know that the node was inserted
            DefaultTreeModel model = (DefaultTreeModel)tree.getModel();
            model.nodesWereInserted(A, new int[] {A.getChildCount() - 1});
            tree.makeVisible(new TreePath(new Object[] {root, A, f}));
    public class MyTree extends JTree
    implements DropTargetListener, DragSourceListener, DragGestureListener {
        public MyTree(DefaultMutableTreeNode root) {
            super(root);
        // method that handles the drop
        // DnDNode is a subclass of MutableTreeNode that implements Transferable
        // this method does _not_ update the UI correctly
        public void drop(DropTargetDropEvent dtde) {
            try {
                Transferable t = dtde.getTransferable();
                if ( t.isDataFlavorSupported(...) ) {
                    Point p = dtde.getLocation();
                    TreePath path = getPathForLocation(p.x, p.y);
                    if (path != null && path.getLastPathComponent() instanceof Folder) {
                        dtde.acceptDrop(DnDConstants.ACTION_COPY);
                        Folder parent = (Folder)path.getLastPathComponent();
                        DnDNode child = (DnDNode)t.getTransferData(...);
                        parent.insert(child, parent.getChildCount());
                        model.nodesWereInserted(parent, new int[] {parent.getChildCount() - 1});
                        makeVisible(path.pathByAddingChild(child));
                        dtde.getDropTargetContext().dropComplete(true);
                    else dtde.rejectDrop();
                else dtde.rejectDrop();
            catch(Exception ioe) {... }
    }To sum up, the UI is correctly refreshed when I call the addFolder() method in the class MyPanel. The UI does not refresh correctly after the drop() method in the MyTree class. Even though the same methods are used for both insertions.

  • My Ipad 2 is brand new and is not taking a charge when plugged in, is there a reason for this?

    We have been running off of the orriginal charge for 2 weeks and are now down to 9% battery life. We plug it in at night and have tried severel different sockets in case that was the issue. Did our ipad2 come with a faulty charger? Is this a warranty item?

    Did our ipad2 come with a faulty charger? Is this a warranty item?
    Sounds like it and yes it's a warranty item.  Try plugging it into your computer (turned on) and leaving overnight.  It will say not charging but it should charge very slowly, enough to get you by until you can get a new charger.

  • Shared Apple ID - How do I set up a new ID but not lose any of my apps

    Hi there,
    My wife and I have been sharing an Apple ID ever since she got here first iPod Touch (version 1).  She asked me to set up the Apple ID in her name as she didn't feel comfortable with iTunes and setting everything up.  When I bought my first iPad, is continued using the same Apple ID as I had downloaded some apps on her iPod that I would use.   Now, many iDevices later, I am looking a getting my own ID to utilize the iOS8 and Yosemite to its full potential.
    I have looked into the Family sharing but I am not sure this is my answer to my problem.   I am sure that I am not the only one who has this as an issue, so any help you can give would be greatly appreciated.
    Best regards,
    Mike.

    Family Sharing is the only way to "transfer" your apps. Creating another Apple ID will not allow you to do so.

  • New-csEXUmContact does not generate any output or create a contact

    Hi,
    I have Lync 2013 on Prem and Exchange o365. 
    I am trying to create a Auto attendant as per this article:
    http://ahandyblog.wordpress.com/cloud-technologies/office-365-auto-attendant-with-lync-2013-on-premise/
    but when I execute the New-csEXUmContact, it does nothing. No contact gets created and neither a GUID output is generated. I have no clue how to troubleshoot further.
    Any help is appreciated.
    Thanks,

    New-CsExUmContact -SipAddress “sip:[email protected]
    -RegistrarPool “your_lync_fqdn”
    -OU “LAB Users” -DisplayNumber “required_extension”
    -AutoAttendant $True -Verbose
    New-CsExUmContact -SipAddress “sip:[email protected]
    -RegistrarPool “your_lync_fqdn”
    -OU “LAB Users” -DisplayNumber “required_extension”
    -AutoAttendant $True -Debug
    can we try these?
    Please remember, if you see a post that helped you please click "Vote As Helpful" and if it answered your question please click "Mark As Answer" Regards Edwin Anthony Joseph

  • Brand new Shuffle does not play any music ! Cannot debug it pls help !

    I checked everything :
    My XP run very well the compressed music.
    I can see the music files stored in Shuffle
    Battery is fine...
    But no music even, after reset etc...as per manual !
    This is the second Shuffle I bought in a week and I already returned the first

    This may help. I had exactly the same problem. Ipod plays o.k. via pc, but not through the earplugs.
    If this is the case, try this:
    Go to apple.com/ipod/download
    Choose relevant OS and download file.
    Now when I ran the file, it told me to reboot, I assumed this meant the installer had run. It hadn't!
    You then go into Start, Prog, ipod, ipod updater and run the new version. (Make sure ipod is plugged in). You should be given and option to restore. Click it and it will reformat and erase your ipod.
    I was at my wits end before I did this and spent hours trying to sort this out.
    BTW there is a problem with your ipod if the green light is permanently on at the top on the front of the ipod. Mine was and now isn't.
    Hope this sorts your problems out.

  • My new ipad2 does not show any apps

    I have turned my new ipad2 on, downloaded itunes, clicked on WiFi, but I get nothing except a diagram showing the itune connection. What am I doing wrong?

    You really didn't tell us what you did, but it appears you did not connect your iPad to your computer via the supplied USB cable.  If you have the latest version of iTunes, once connected, iTunes walks you through the necessary steps to activate your iPad. 

  • ASA5520 IPS, not seeing any traffic

    I have the IPS set to promiscuous mode.
    Have a policy map set don't see it doing anything I get no reports or logs I see no traffic on it.
    How do you know what it's doing? or get it to do something?
    I don't even know what questions to ask as the documentation for this thing is horrible.
    access-list IPS extended permit ip any any
    access-group Outside_access_in in interface Outside
    access-group Inside_access_in in interface Inside
    route Outside 0.0.0.0 0.0.0.0 xx.xx.xxx.1 1
    route Inside 10.0.0.0 255.0.0.0 10.1.7.50 1
    class-map IPS-CLASS
    match access-list IPS
    class-map inspection_default
    match default-inspection-traffic
    policy-map type inspect dns preset_dns_map
    parameters
    message-length maximum 1024
    policy-map global_policy
    class inspection_default
    inspect dns preset_dns_map
    inspect ftp
    inspect h323 h225
    inspect h323 ras
    inspect rsh
    inspect rtsp
    inspect sqlnet
    inspect skinny
    inspect sunrpc
    inspect xdmcp
    inspect sip
    inspect netbios
    inspect tftp
    inspect icmp
    class IPS-CLASS
    ips promiscuous fail-open

    Have you configured the AIP-SSM yet? You currently show the ASA configuration. And it looks like your going to send traffic to the AIP. Could you session into the AIP from the ASA and make sure that you have configured it as well?

Maybe you are looking for

  • Help in regular expression matching

    I have three expressions like 1) [(y2009)(y2011)] 2) [(y2008M5)(y2011M3)] or [(y2009M5)(y2010M12)] 3) [(y2009M1d20)(y2011M12d31)] i want regular expression pattern for the above three expressions I am using : REGEXP_LIKE(timedomainexpression, '???[:d

  • File Open Dialog box  + display  local path

    HI This is sasi from chennai I have problem for opon a file dialog and after opening file I need display full path ( local path like this c:\aa\bb.txt) how can I achive this , please help me any one. By SAsikumar if you find send mail to this ID [ema

  • Lack of Accidental Damage Protection (ADP) in Consumer Laptops in Malaysia

    Model: HP Envy TouchSmart 15 j137tx OS: Win 8.1 64bit Hello HP, I recently bought an HP Envy Laptop. Based on the price & specifications, I believe that it is one of the high-end products in its line. I intend to use it in long-term, which is why I i

  • Alv Grid Sub Total

    Hi All        I am have done an object in alv grid where it is working fine but what i want i am giving a sample please do let tell me how to do OUTPUT DATE       TIME-ENTRY  ACM-NO   CHARG    SHIFT   MACHINE-SPEED STANDARD-D    ACTUALL-DIPS   DOWNTI

  • [SOLVED] i3 window rules

    With dwm you can set window rules in config.h, such as setting certain window classes to floating etc. I can't find a way to do this in i3 window manager. Is it possible? I've noticed that sometimes windows automatically are set to floating without a