Could anyone tell me what is a senior member in a coherence cluster?

Hi all,
I am problem finding the definition of Senior member in coherence documentation.
Could anyone tell me what is a Senior member in a coherence cluster?
Could we configure which server is Senior? How?
Thanks and Regards,
NB

Hi NB,
a senior member of a clustered service (there is one for each service) is the member which has special role in deciding service membership related issues. There is always one (usually the oldest living member), if it dies, then a new one is immediately elected.
Since the cluster is also a service it also has a senior member, and that is referred to as the senior member of the cluster.
You cannot configure which node is the senior for the cluster (or for any service for that matter), that is determined by the timing of the nodes being started, the senior will usually be the node started first unless they are started very quickly during cluster formation, at which point it can seem random from the outside.
Some parts of the documentation hints that the distributed cache services have a storage-senior node, too, which is not exactly the same thing as a service senior, as you can start a distributed cache service in a way that storage-disabled members happened to start first in which case the senior member for the service would not be storage-enabled and there would be no storage senior since there are no storage nodes until the first is started. You can consider this as a service (storage functionality) within a service (distributed cache service), similarly to how clustered services relate to the ClusterService.
Best regards,
Robert

Similar Messages

  • TS3988 i want to delete my iCloud account and get a new one. but i can not delete as it says that my iphone is being restored. could anyone tell me what would be the solution to my problem. i will be thankful to you..

    i want to delete my iCloud account and get a new one. but i can not delete as it says that my iphone is being restored. could anyone tell me what would be the solution to my problem. i will be thankful to you..

    You can go to icloud.com, open Mail, click on the gear shaped icon on the upper right and choose preferences, go to the Vacation tab and set up an auto response saying that the account is no longer in use.  Then go to Settings>iCloud and turn Mail to Off on your device and stop using the account.
    Incoming email to the account will receive your vacation auto response, and eventually the mailbox will fill up and no longer receive mail at all.

  • Hey, im really sick of this, how can i open folders but in the same windows, when i open a folder which is inside of another one, it just open me a new window, its so annoying, could anyone tell me what to do? im using mac os 10.7.2

    hey, im really sick of this, how can i open folders but in the same windows, when i open a folder which is inside of another one, it just open me a new window, its so annoying, could anyone tell me what to do? im using mac os 10.7.2

    Finder > Preferences > General > Always open folders in a new window: uncheck

  • Could anyone tell me what is the minium requirement to run a java program.

    I am new to java. Could anyone tell me what is the minium requirement to run a java program. Thanks in advance.

    Lara1983 wrote:
    Could anybody give me a direct answer? I think the minium requirement to run a java program is JVM and Java API. Is this right?What does Google tell you?
    BTW in order to get a direct answer, one must ask a direct unambiguous question. Are you asking for the minimum software or hardware requirements to run an application developed in Java or to develop an application in Java. What environment? Details are important and again Google is an interactive search engine, try it!
    Mel

  • Could anyone tell me whats the code means??

    Hi,
    Could anyone tell me explanation of the code below:
    player1.placeArmy(world.southAmerica().territory1());
    all I know is that it is calling the method of an objects. I am not really sure about whats inside the bracket. How could such argument have the dot notation format?
    Furthermore, could anyone have some advices about references to the multiple classes code example??

    player1.placeArmy(world.southAmerica().territory1());player1 is a variable of some type. This type has presumably a method called placeArmy, which takes a parameter.
    world is another variable of some type. This type has presumably a method called a method southAmerica(),
    which returns a value of a type, which has a method territory1(), whose return value is provided as teh paramtere value to the method call mentioned above.
    Another useful example as a food for thoughts could be:
    Object o = new Integer(3);
    System.out.println(o.toString());

  • Could anyone tell me what is a class

    Hi gurus,
                  could anyone explain me in detail what does a class mean (se24) in sap and for what it is used? i have tried my best to know about it. it is like greek and latin to me.
    Thanks in advance,
    Ramana

    Classes describe objects. From a technical point of view, objects are runtime instances of a class. In theory, you can create any number of objects based on a single class. Each instance (object) of a class has a unique identity and its own set of values for its attributes.
    classes consist of ABAP source code, enclosed in the ABAP statements CLASS ... ENDCLASS. A complete class definition consists of a declaration part and, if required, an implementation part. The declaration part of a class <class> is a statement block:
    CLASS <class> DEFINITION.
    ENDCLASS.
    It contains the declaration for all components (attributes, methods, events) of the class. When you define local classes, the declaration part belongs to the global program data. You should therefore place it at the beginning of the program.
    If you declare methods in the declaration part of a class, you must also write an implementation part for it. This consists of a further statement block:
    CLASS <class> IMPLEMENTATION.
    ENDCLASS.
    The implementation part of a class contains the implementation of all methods of the class. The implementation part of a local class is a processing block. Subsequent coding that is not itself part of a processing block is therefore not accessible.
    Structure of a Class
    The following statements define the structure of a class:
    A class contains components
    Each component is assigned to a visibility section
    Classes implement methods
    The following sections describe the structure of classes in more detail.
    Class Components
    The components of a class make up its contents. All components are declared in the declaration part of the class. The components define the attributes of the objects in a class. When you define the class, each component is assigned to one of the three visibility sections, which define the external interface of the class. All of the components of a class are visible within the class. All components are in the same namespace. This means that all components of the class must have names that are unique within the class.
    There are two kinds of components in a class - those that exist separately for each object in the class, and those that exist only once for the whole class, regardless of the number of instances. Instance-specific components are known as instance components. Components that are not instance-specific are called static components.
    In ABAP Objects, classes can define the following components. Since all components that you can declare in classes can also be declared in interfaces, the following descriptions apply equally to interfaces.
    Attributes
    Attributes are internal data fields within a class that can have any ABAP data type. The state of an object is determined by the contents of its attributes. One kind of attribute is the reference variable. Reference variables allow you to create and address objects. Reference variables can be defined in classes, allowing you to access objects from within a class.
    Instance Attributes
    The contents of instance attributes define the instance-specific state of an object. You declare them using the DATA statement.
    Static Attributes
    The contents of static attributes define the state of the class that is valid for all instances of the class. Static attributes exist once for each class. You declare them using the CLASS-DATA statement. They are accessible for the entire runtime of the class.
    All of the objects in a class can access its static attributes. If you change a static attribute in an object, the change is visible in all other objects in the class.
    Methods
    Methods are internal procedures in a class that define the behavior of an object. They can access all of the attributes of a class. This allows them to change the data content of an object. They also have a parameter interface, with which users can supply them with values when calling them, and receive values back from them The private attributes of a class can only be changed by methods in the same class.
    The definition and parameter interface of a method is similar to that of function modules. You define a method <met> in the definition part of a class and implement it in the implementation part using the following processing block:
    METHOD <meth>.
    ENDMETHOD.
    You can declare local data types and objects in methods in the same way as in other ABAP procedures (subroutines and function modules). You call methods using the CALL METHOD statement.
    Instance Methods
    You declare instance methods using the METHODS statement. They can access all of the attributes of a class, and can trigger all of the events of the class.
    Static Methods
    You declare static methods using the CLASS-METHODS statement. They can only access static attributes and trigger static events.
    Special Methods
    As well as normal methods, which you call using CALL METHOD, there are two special methods called CONSTRUCTOR and CLASS_CONSTRUCTOR, which are automatically called when you create an object (CONSTRUCTOR) or when you first access the components of a class (CLASS_CONSTRUCTOR).
    Events
    Objects or classes can use events to trigger event handler methods in other objects or classes. In a normal method call, one method can be called by any number of users. When an event is triggered, any number of event handler methods can be called. The link between the trigger and the handler is not established until runtime. In a normal method call, the calling program determines the methods that it wants to call. These methods must exist. With events, the handler determines the events to which it wants to react. There does not have to be a handler method registered for every event.
    The events of a class can be triggered in the methods of the same class using the RAISE EVENT statement. You can declare a method of the same or a different class as an event handler method for the event <evt> of class <class> using the addition FOR EVENT <evt> OF <class>.
    Events have a similar parameter interface to methods, but only have output parameters. These parameters are passed by the trigger (RAISE EVENT statement) to the event handler method, which receives them as input parameters.
    The link between trigger and handler is established dynamically in a program using the SET HANDLER statement. The trigger and handlers can be objects or classes, depending on whether you have instance or static events and event handler methods. When an event is triggered, the corresponding event handler methods are executed in all registered handling classes.
    Instance Events
    You declare instance events using the EVENTS statement. An instance event can only be triggered in an instance method.
    Static Events
    You declare static events using the CLASS-EVENTS statement. All methods (instance and static methods) can trigger static events. Static events are the only type of event that can be triggered in a static method.
    See also Triggering and Handling Events.
    Types
    You can define your own ABAP data types within a class using the TYPES statement. Types are not instance-specific, and exist once only for all of the objects in a class.
    Constants
    Constants are special static attributes. You set their values when you declare them, and they can then no longer be changed. You declare them using the CONSTANTS statement. Constants are not instance-specific, and exist once only for all of the objects in a class.
    Visibility Sections
    You can divide the declaration part of a class into up to three visibility areas:
    CLASS <class> DEFINITION.
      PUBLIC SECTION.
      PROTECTED SECTION.
      PRIVATE SECTION.
    ENDCLASS.
    These areas define the external visibility of the class components, that is, the interface between the class and its users. Each component of a class must be assigned to one of the visibility sections.
    Public Section
    All of the components declared in the public section are accessible to all users of the class, and to the methods of the class and any classes that inherit from it. The public components of the class form the interface between the class and its users.
    Protected Section
    All of the components declared in the protected section are accessible to all methods of the class and of classes that inherit from it. Protected components form a special interface between a class and its subclasses. Since inheritance is not active in Release 4.5B, the protected section currently has the same effect as the private section.
    Private Section
    Components that you declare in the private section are only visible in the methods of the same class. The private components are not part of the external interface of the class.

  • Could anyone tell me what usage of the Thread.dumpStack(); method?

    I am looking the java api , and found one method in the Thread.
    The method is public static void dumpStack().
    and the api description is "Prints a stack trace of the current thread. This method is used only for debugging. " .
    is there anyone to tell me exactly on what situation the method is used.
    it's better that there is a sample to show that.
    i have write a sample program. as following , but i still don't exactly understand the usage of this method.
    code:
    public class ThreadDumpStack {
    public ThreadDumpStack() {
    public static void main(String[] args) {
    ThreadDumpStack threadDumpStack1 = new ThreadDumpStack();
    System.out.println(threadDumpStack1.hello());
    Thread.currentThread().dumpStack();
    System.out.println(threadDumpStack1.string());
    public int hello () {
    int i = 10;
    int j =10;
    return i+j;
    public String string() {
    String a = "hello";
    String b ="world";
    return a + " " + b;
    result:
    java.lang.Exception: Stack trace
         at java.lang.Thread.dumpStack(Thread.java:1071)
         at api.ThreadDumpStack.main(ThreadDumpStack.java:21)
    20
    hello world

    It is for when you have got a large complex application, which is not working (as in running, but returning the wrong value, or getting into an ever lasting loop). You can then use this to work out what your application is doing.

  • HT4972 I bought my iPhone from Internet and after an update it got locked. Could anyone tell me what I can do pls?

    I bough an iPhone from Internet and after an update it got locked. Please anyone help.

    You can either figure out what carrier it's locked to and contact them to see if they offer unlocking, or you can throw it away or sell it and buy an unlocked iPhone from a legitimate source.

  • Could anyone tell me what the 'irj' stands for? what is its abbreviation?

    thanks, I have not found any explanation from SAP documentation.

    hi,
    In addition to what others said
    The Java iView Runtime is part of the iViewServer. It runs as a servlet on a Java application
    server. It executes Java iViews and renders the returned content. It provides Java iViews with
    access to infrastructure services such as user management. It also offers personalization of
    Java iViews and stores personalization data and any other persistent data in the persistence
    layer.
    In addition the Java iView Runtime provides a development platform that allows developers to
    build their own iViews written in Java or JSP.
    SAP portal components are deployed as enterprise archives to the iView Runtime for Java (IRJ), the EP's Java runtime environment. You can develop and build a portal component archive (PAR) file with any commercial IDE you can even use Apache Ant, the open source build tool. For the Eclipse Platform, SAP provides a custom plug-in that supports portal component development projects with wizards and templates based on the DynPage framework. The Eclipse plug-in also enables the hot deployment of portal archives directly to the IRJ.
    Regards,
    Ganesh N

  • Can anyone tell me what "Could not find namespace: AgCreativeCloudUtils" means when I hit the Import button?

    Can anyone tell me what "Could not find namespace: AgCreativeCloudUtils" means when I hit the Import button in Lightroom? Thanks

    It means you're hitting a bug.
    Consider filing a bug report here:
    New topic for Photoshop Family
    (along with pertinent information like OS & Lr version, plus conditions which it occurs AND conditions in which it does NOT occur, if you can find any).
    Maybe somebody else with more specific knowledge or experience will be more help.
    Good luck,
    Rob

  • I recently purchased a shutter release remote for my IPAD camera but the cord is only three feet long.  I purchased a 3 banded AV extension but it doesn't work.  Can anyone tell me what the correct extension cable is and where I can find one?  Thanks.

    I recently purchased a shutter release remote for my IPAD camera but the cord is only three feet long and I need an extension cord.  I purchased a 3 banded AV extension but it doesn't work.  I have been told that I need an extension cord that has AV and Mic to enable the remote shutter release to work with the extension cord.  Can anyone tell me what the correct extension cable is and where I can find one?  Thanks.

    Greetings,
    I've never seen this issue, and I handle many iPads, of all versions. WiFi issues are generally local to the WiFi router - they are not all of the same quality, range, immunity to interference, etc. You have distance, building construction, and the biggie - interference.
    At home, I use Apple routers, and have no issues with any of my WiFi enabled devices, computers, mobile devices, etc - even the lowly PeeCees. I have locations where I have Juniper Networks, as well as Aruba, and a few Netgears - all of them work as they should.
    The cheaper routers, Linksys, D-Link, Seimens home units, and many other no name devices have caused issues of various kinds, and even connectivity.
    I have no idea what Starbucks uses, but I always have a good connection, and I go there nearly every morning and get some work done, as well as play.
    You could try changing channels, 2.4 to 5 Gigs, changing locations of the router. I have had to do all of these at one time or another over the many years that I have been a Network Engineer.
    Good Luck - Cheers,
    M.

  • Transferred backed-up data from external hard disk to new hard drive on my MacBook Pro which seemed to be successful. I now find that some (or maybe all) old emails have been resent. Can anyone tell me what has happened?

    Transferred backed-up data from external hard disk to new hard drive on my MacBook Pro which seemed to be successful. I now find that some (or maybe all) old emails have been resent. Can anyone tell me what has happened?

    Greetings,
    I've never seen this issue, and I handle many iPads, of all versions. WiFi issues are generally local to the WiFi router - they are not all of the same quality, range, immunity to interference, etc. You have distance, building construction, and the biggie - interference.
    At home, I use Apple routers, and have no issues with any of my WiFi enabled devices, computers, mobile devices, etc - even the lowly PeeCees. I have locations where I have Juniper Networks, as well as Aruba, and a few Netgears - all of them work as they should.
    The cheaper routers, Linksys, D-Link, Seimens home units, and many other no name devices have caused issues of various kinds, and even connectivity.
    I have no idea what Starbucks uses, but I always have a good connection, and I go there nearly every morning and get some work done, as well as play.
    You could try changing channels, 2.4 to 5 Gigs, changing locations of the router. I have had to do all of these at one time or another over the many years that I have been a Network Engineer.
    Good Luck - Cheers,
    M.

  • Can anyone tell me whats going on? Crystal Report Exporting issue

    Hi,
    I am having a issue with the way that CR exports a report. It was working GREAT until we restarted our server. At which point a 2 page CR exported to a PDF began to display enlarged and over 21 pages. The code never changed and if exporting from the VS CR tool it previews and exports perfectly. Can anyone tell me whats going on? Could a install of Acrobat Reader 8 caused this? or anything else for that matter? Any thoughts would be a great help cause it might help me think of something I have over looked.
    Thanks
    Jeremy

    it would not be install of Adobe that would cause this, however a changed printer driver may. Has the printer driver changed? Do you see any difference on the rpeort if you set the option "No Printer? (File menu, select Page setup).
    When you say the report is now 21 pages, do you mean it has more data? Or has the format changed such that it is 21 pages long. The latter would again point to printer driver...

  • I can't get Safari to load period. It quits immediately. According to the troubleshooting, I'm to un-install any third party plug ins. Can anyone tell me what I should be looking for? I don't recall installing anything that wasn't an upgrade.

    I can't get Safari to load period. It quits immediately. According to the troubleshooting, I'm to un-install any third party plug ins. Can anyone tell me what I should be looking for? I don't recall installing anything that wasn't an upgrade.

    Unplug your iBook from the AC power, shut it down and take the main battery out for about fifteen minutes. Then you can put the battery back in, plug the power back in and restart. This should reset the USB and FireWire ports.
    If that doesn't help, you could reset the Power Management Unit. Follow the instructions in Knowledge Base Article #14449 for resetting your PMU.
    You probably should also startup from your Mac OS X install disk and run the Disk Utility to "repair disk" on your hard drive. This will determine if you've got some kind of file directory/software problems with the files on your hard drive.
    I'm not much at decoding kernel panic logs, but this line jumps out:
    Kernel loadable modules in backtrace (with dependencies):
    com.apple.filesystems.udf(1.4.1)@0x28a79000
    Did you have a DVD movie in the drive at the time? DVD movie disks are UDF format, but not much else is.
    -Doug

  • Could anyone tell me how many discs are suppose to come in this 10.4 Tiger Box?

    Could anyone tell me how many discs are suppose to come in this 10.4 Tiger Box? I might have bought more than one box at one time and then just combined the discs. I have two black OS X discs that look almost identical with the exception of what looks one disk is 10.4 and the other is 10.4.6.

    One DVD or four CDs depending on what you purchased.
    (67080)

Maybe you are looking for

  • Photoshop CC 2014 Brush Tip

    Im using CC and have installed all the latest updates.  My cap lock is off and my cursor preferences are fine. BUT my brush tips are all messed up today.  I see the brush outline only up to a specific size (different with each brush) but beyond that

  • Cannot install iTunes 10.7 on snow leopard MacBook Pro.

    I have received my new iPhone 5 two weeks ago but I am unable to use it since I cannot install iTunes 10.7. I have a MacBook Pro with Mac OS 10.6 (snow leopard) and 2GB RAM. I have been trying to install it and every time I get an error message sayin

  • Linking the UDO of type document to user defined field

    I created the user defined field and i need to link the UDO of type document to that user defined field. How to link the UDO to user defined field.

  • IPhoto 11 no pics from one event

    iphoto 11 will not display full size pictures from my most recent event, only thumbnails -- this after recent upgrade with file transfer from older macbook.  The files themselves are fine and I tried reverting them to original, though they had not be

  • TM Search not working properly?

    Ok, so I had a video I downloaded (the IGN Video Review of Crysis) in my downloads folder, time machine in this period ended up backing them up, after which, I deleted the files off my computer and just to test out time machines capabilities, I opene