Coherence 3.5 - slow start for a single node

EDIT - wrong forum
Edited by: user10613309 on 30-Jul-2009 02:42

Hi Tim,
The only parameter that controls the delay for the very first cluster member is the "join-timeout-milliseconds" element (http://wiki.tangosol.com/display/COH35UG/multicast-listener). I don't think any of the default values change in 3.5, but the value differs dramatically between the evaluation and development modes (3 sec) and the production mode (30 sec)
Regards,
Gene

Similar Messages

  • Applying PL19 for SAP J2EE 6.20  for a Single Node

    We are trying to upgrade from EP6 SP2 patch 2 to patch 3.
    A pre-req for applying Patch3 is that we need to be at PL19. Turns out we are in between PL16 and  PL17 from a SAP J2EE 6.20 standpoint.
    We managed to download SAPJ2EE620C_19-10001433.SAR the SAR file for getting the SAP J2EE 6.20 from PL16+ to PL19.
    On reading SAP Note 529088 ( that helps you with installing the SAR file ) it seems "SAPJ2EE620C..." the 'C" in the SAR file name denotes that it is for a Cluster Node. We have a Single node install. For which we ought to see a 'S' in that place. On Service.sap.com we dont know of a place where we can find the .SAR file that we may need for a single node version.
    We  went ahead and ran the visual.bat and that brought up a screen meant for a cluster version.
    It has been two days since we have working on this.
    Anybody has any idea/experience with what we are taking about. Please help.
    thanx for your help.
    rj.

    Hi rj,
    If you have installed EP6 SP2, you have installed the Clustered Version of J2EE (dispatcher, server, state(pl21)).  The Single node was used for EP5.  I believe you are getting this terminology confused with a clustered install of EP6 for HA purposes where the actual application piece is clustered.  So even an EP6 install running on a single server runs on a the J2EE Engine Cluster. 
    So if you ran the visual.bat for PL19 and the portal started up fine, you have successfully upgraded your J2EE version to PL 19.  Just a quick hint, when you are running the patch install, select upgrade and put in the path to your instance (i.e. c:\usr\sap\DEP1\j2ee\j2ee_00).
    Hope this helps to clarify,
    Marty

  • Slow start for Itunes

    I have been having trouble using songs purchased in Itunes in other media software. I select the songs and they are just gone through and greyed out without being played. Reinstalled Itunes with Quicktime. All authorized and library added. The other software asks for Quicktime to be installed. When I start Quicktime I get Error 46. Also Itunes is now going through a very long process to Start. I see 3-4 windows where I'm told Windows is installing in and then another refers to configuring Itunes. This all takes over a minute just to start it.. Help

    Reinstalled Itunes with Quicktime. All authorized and library added. The other software asks for Quicktime to be installed. When I start Quicktime I get Error 46. Also Itunes is now going through a very long process to Start. I see 3-4 windows where I'm told Windows is installing in and then another refers to configuring Itunes. This all takes over a minute just to start it..
    Several of those symptoms suggest a problem with access control lists (ACLs) on your iTunes and/or QuickTime registry keys.
    If that's what is afoot, the technique from the following weblog entry may be of some assistance:
    [Solving setup errors by using the SubInACL tool to repair file and registry permissions|http://blogs.msdn.com/astebner/archive/2006/09/04/solving-setup-err ors-by-using-the-subinacl-tool-to-repair-file-and-registry-permissions.aspx]

  • Slow start for SQL Developer

    SQL Developer works great, but is taking up to a minute to start upon clicking of the Windows executable. Any idea why?

    Hi,
    SQL Developer has its own forum: SQL Developer
    Frank

  • Error starting listener on single node in RAC..Error listening on: (DESCRIP

    LSNRCTL> start LISTENER_CORPNG04
    Starting /ora00/app/oracle/product/11/db1/bin/tnslsnr: please wait...
    TNSLSNR for HPUX: Version 11.1.0.7.0 - Production
    System parameter file is /ora00/app/oracle/product/11/db1/network/admin/listener.ora
    Error listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=vir_corpng04)(PORT=1521)(IP=FIRST)))
    TNS-12545: Connect failed because target host or object does not exist
    TNS-12560: TNS:protocol adapter error
    TNS-00515: Connect failed because target host or object does not exist
    HPUX Error: 227: Can't assign requested address
    Listener failed to start. See the error message(s) above...
    LSNRCTL>
    Plz help its production system
    Thanks in Advance
    Gagan

    Hello,s
    First of all, check the status of all resources by using crs_stat -t
    Check if your VIP resource is indeed up and running on the node where you want to start the listener. As listener is depending upon this VIP address, it is needed to be up on the node where listener is configured. If this is the case then relocate the vip back to the system by using either of the following commands
    1. crs_relocate <vip_resource_name>
    OR
    2. srvctl start nodeapps -n <hostname>
    listener should be automatically up once crs relocates back the vip to the system.
    If vip is already running fine on the system then check for your listener configuration as you check in normal systems.
    Lalit Verma
    [http://sites.google.com/site/racinsights1]

  • Unable to start crs on single-node instance

    Hello -
    I am running 11.1.0.7 for my ASM instance, and I am unable to start crs. I get the following error message:
    [root@mbiwfhmdwee 624]# ./crsctl start crs
    Attempting to start Oracle Clusterware stack
    Failure at scls_scr_create with code 1
    I just installed the Oracle software, and this is the first time I am trying to get ASM running on this server.
    Any help is appreciated!
    Thanks,
    Mike

    you are probably hitting bug 4632899 - CSS does not start if hostname has capital letters (ML note 4632899.8)
    => Change the hostname to from uppercase to lower case.

  • Adding 2 icons for a single node on a tree

    Hi,
    I am trying to create a tree to represent objects. These objects can be of different types, and different states. I intend to use two icons for each node in the tree, one signifying the type and the other the status. I am a bit stuck though.
    At present each node has a single icon, and uses a JLabel to add to the tree (with a custom renderer). Is it possible to manipulate the icons so instead of adding 2 16x16icons I can simplify it by adding a 32x16 icon?
    Alternativley is it possible to customise JLabel (or something) to allow two icons to be added and alligned?
    Cheers in advance
    Chris

    Just write your own composite Icon class:
    public class CompositeIcon implements Icon
      private Icon icon1;
      private Icon icon2;
      public CompositeIcon(Icon icon1, Icon icon2)
        this.icon1 = icon1;
        this.icon2 = icon2;
      public int getIconHeight()
        return Math.max(icon1.getIconHeight(), icon2.getIconHeight());
      public int getIconWidth()
        return icon1.getIconWidth() + icon2.getIconWidth();
      public void paintIcon(Component c, Graphics g, int x, int y)
        icon1.paintIcon(c, g, x, y);
        icon2.paintIcon(c, g, x + icon1.getIconWidth, y);
    }Hopefully a slightly more reusable solution. You could write all sorts of different layouts in this way.
    Hope this helps.

  • Install a grid infrastructure for a cluster for single node Windows Server

    Hello,
    Can you suggest me how to install a Oracle Single Node RAC 11g on a Windows Server 2008 x64 bits? It's for testing purposes and I don't need two nodes. I know that Linux is better, but my company only uses Windows servers. Our former consultant was able to do it, but didn't tell us how to and that server was lost.
    I know that we have to install first Grid Infrastructure. Running the "Oracle Grid Infrastructure" installer, I could successfully install a "Grid Infrastructure for a Standalone Server". But that grid is not for a RAC database. When trying to install the Database software, it allowed to me to only install "Single instance database", not "Real Application Cluster database installation".
    Running the "Oracle Grid Infrastructure" installer, I tried to select option:
    "Install and Configure Grid Infrastructure for a Cluster" -> Typical Installation:
    SCAN Name: SRVORAC-cluster
    Validating SCAN information
    INS-40922 Invalid SCAN Name - unresolvable to IP address.
    Is it possible to install a grid infrastructure for a cluster for a single-node or one-node Windows Server ?
    Edited by: user521219 on Jan 30, 2012 12:46 PM

    HI,
    You probably have misconception about Single node RAC. This feature does not need that you have only one physical machine in a RAC, it actually means that in a RAC environment (2 or more nodes), you can run your database on only one node(single instance) and then later you can move this single instance to any other node of the RAC (so that you can do some patching on this node making your database available all the time). This also has some other benefits, see bellow.
    http://www.oracle.com/technetwork/database/clustering/overview/ug-raconenode-2009-130760.pdf
    http://docs.oracle.com/cd/E11882_01/install.112/e25666/whatsnew.htm#sthref8
    Salman

  • Install RAC OBS on single node using VMWare

    Re: How to install Muti_node R12 using VMWARE
    Mine is a little different.
    I have the Test server which has OEL5 and one OAS 10g(Oracle application Server) with 10g database.
    I want to install RAC OBS on this server by installing VMWare for the single node. I do not want to wipe out the OAS, reinstore OSL5 and start from a blank machine.
    Can I keep what I have on the server and install RAC OBS by installing VMWare, configuring the virtual sharing disks, and install RAC OBS using ASM?

    Hi,
    Can I keep what I have on the server and install RAC OBS by installing VMWare, configuring the virtual sharing disks, and install RAC OBS using ASM?Yes, you can. Just make sure you have sufficient resources on this machine.
    Note: 388577.1 - Using Oracle 10g Release 2 Real Application Clusters and Automatic Storage Management with Oracle E-Business Suite Release 12
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=388577.1
    Regards,
    Hussein

  • Slow start up for podcasts

    After some recent upgrade, my iTunes 9 is *very slow* starting a podcast. It usually takes 20 seconds or so for the podcast to begin playing after hitting the "play" button or the space bar. This does not seem to be true of music, nor of all podcasts. The pause seems to make the whole computer come to a halt - even screen updating stops for other applications. For a given podcast this is reliably repeatable.

    After some recent upgrade, my iTunes 9 is *very slow* starting a podcast. It usually takes 20 seconds or so for the podcast to begin playing after hitting the "play" button or the space bar. This does not seem to be true of music, nor of all podcasts. The pause seems to make the whole computer come to a halt - even screen updating stops for other applications. For a given podcast this is reliably repeatable.

  • Slow Start up for Macbook Pro 2011

    Hi, I bought Macbook pro 13 inch i7 model 2 months ago and I'm having a problem with slow start up, even I have deleted some applications and use some tips provided but the same problem is still occured. It always freeze in blue sceen for awhile then it allows me to log in (is it normal?). I'm new to mac so I need some advice thank you in advance.

    Hi, I bought Macbook pro 13 inch i7 model 2 months ago and I'm having a problem with slow start up, even I have deleted some applications and use some tips provided but the same problem is still occured. It always freeze in blue sceen for awhile then it allows me to log in (is it normal?). I'm new to mac so I need some advice thank you in advance.

  • Invocation service only processing on a single node (Coherence 3.4).

    I'm trying to run a task on each node using the invocation service. The task should return a list of report files from each node.
    The service is setup as follows:<b>
        <invocation-scheme>
            <scheme-name>agents</scheme-name>
            <service-name>agents</service-name>
            <serializer>com.tangosol.io.DefaultSerializer</serializer>
        </invocation-scheme></b>
    And accessed as follows, using the deprecated getInvocationService method:<b>
        InvocationService service = CacheFactory.getInvocationService("agents");
        Map<Member, List<String>> reportQuery = service.query(new ReportFilesnameAgent(), null);</b>
    When I access it in this way, the ReportFilesnameAgent only runs on a single node, despite the following listing both cluster nodes:<b>
        Set memberSet = service.getCluster().getMemberSet();</b>
    I even tried to force it to run on all nodes by passing the member set to the query method, but this made no difference:<b>
        Map<Member, List<String>> reportQuery = service.query(new ReportFilesnameAgent(), memberSet);</b>
    If I access the service using the recommended (non-deprecated) method:<b>
        InvocationService service = (InvocationService) CacheFactory.getService("agents");</b>
    Coherences throws the following:<b>
        Caused by: java.lang.IllegalArgumentException: Missing scheme for service: "agents"</b>
    Any ideas?
    Many thanks in advance,
    Cormac.
    Edited by: user1744133 on Dec 21, 2009 4:15 AM

    Hi,
    I'm trying this invocation-schema with Version 3.5.2/463a and a pof serializer and it fails with the below stack trace suggesting that my nodes run of different configurations.
    I can see them loading the same cache-config and the same config though.
    Any ideas?
    many thanks,
    Christoph.
    The new invocation conig:
         <invocation-scheme>
              <scheme-name>agents</scheme-name>
              <service-name>agents</service-name>
              <serializer>
                   <class-name>
                        com.tangosol.io.pof.SafeConfigurablePofContext
              </class-name>
                   <init-params>
                        <init-param>
                             <param-type>string</param-type>
                             <param-value>
                                  orion-pof-config.xml
              </param-value>
                        </init-param>
                   </init-params>
              </serializer>          
              <autostart>true</autostart>
         </invocation-scheme>
    the stackt trace:
    2010-02-15 15:37:37.286/5.469 Oracle Coherence GE 3.5.2/463 <D5> (thread=Invocation:agents, member=2): Service agents joined the cluster with senior service member 1
    2010-02-15 15:37:37.333/5.516 Oracle Coherence GE 3.5.2/463 <Error> (thread=Invocation:agents, member=2): The service "agents" is configured to use serializer com.tangosol.io.DefaultSerializer {loader=sun.misc.Launcher$AppClassLoader@17590db}, which appears to be different from the serializer used by Member(Id=1, Timestamp=2010-02-15 15:37:20.268, Address=165.2.93.118:18001, MachineId=64118, Location=site:EMEA.AD.JPMORGANCHASE.COM,machine:LLDNCFI5SZW83J,process:2360, Role=TmpMain).
    java.io.StreamCorruptedException: invalid type: 78
         at com.tangosol.util.ExternalizableHelper.readObjectInternal(ExternalizableHelper.java:2231)
         at com.tangosol.util.ExternalizableHelper.readObject(ExternalizableHelper.java:2219)
         at com.tangosol.io.DefaultSerializer.deserialize(DefaultSerializer.java:60)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.readObject(Service.CDB:4)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid$ServiceConfigMap.readObject(Grid.CDB:1)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid$MemberConfigResponse.read(Grid.CDB:13)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid.onNotify(Grid.CDB:123)
         at com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:42)
         at java.lang.Thread.run(Thread.java:619)
    Stopping the agents service.
    2010-02-15 15:37:37.333/5.516 Oracle Coherence GE 3.5.2/463 <D5> (thread=Invocation:agents, member=2): Service agents left the cluster
    2010-02-15 15:37:37.333/5.516 Oracle Coherence GE 3.5.2/463 <Error> (thread=main, member=2): Error while starting service "agents": java.lang.RuntimeException: Failed to start Service "agents" (ServiceState=SERVICE_STOPPED)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.start(Service.CDB:38)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid.start(Grid.CDB:38)
         at com.tangosol.coherence.component.util.SafeService.startService(SafeService.CDB:28)
         at com.tangosol.coherence.component.util.SafeService.ensureRunningService(SafeService.CDB:27)
         at com.tangosol.coherence.component.util.SafeService.start(SafeService.CDB:14)
         at com.tangosol.net.CacheFactory.getInvocationService(CacheFactory.java:943)
         at com.tmp.InvocationClient.main(InvocationClient.java:37)

  • How to set Compatibility Mode for a single site in ie10

    This question was originally posted on the Answers forum -
    http://answers.microsoft.com/en-us/ie/forum/ie10-windows_7/how-to-set-compatibility-mode-for-a-single-site-in/187152e3-142a-4d96-8d1b-af82ef571eec
    I am having problem with getting ie10 to set ie9 compatibility for a single site (sharepoint.contoso.com).
    When I add this website in Compatibility View Settings (Alt > Tools > Compatibility View Settings > 'Add this Website') it adds the domain 'contoso.com' and not the individual website (sharepoint.contoso.com).
    This cause other sites (www.contoso.com) to be configured to use compatibility mode. Because this is a separate site (different web server) to the site sharepoint.contoso.com (sharepoint 2010 server) we need different compatibility settings.
    Using a different example to explain the issue -
    Microsoft has three websites that are different websites created by different developers written in different programming languages and they only work with certain browsers.
    microsoft.com (Website1 created by Developer1) - compatible with ie8/ie9/ie10
    msdn.microsoft.com (Website2 created by Developer2) - compatible with ie8/ie9
    technet.microsoft.com (Website3 website created by Developer3) - compatible only with ie10
    The only thing the three website share is the URL contains 'microsoft.com'.
    Marking 'msdn.microsoft.com' to run in compatibility mode affects the other 2 websites - mainly technet.microsoft.com which will not work now since it only runs in pure ie10 mode. 
    Should you be able to add an individual site to the compatibility list instead of all sites that have  .microsoft.com in the URL? Am I missing a simple setting in the ie10?
    As a workaround I am using the F12 Developer Tools to set the Browser Mode which temporary sets the compatibility mode. However this is not a nice solution to the end users at our organisation. 

    problem is not solved for non corporate environments...
    You could start your own thread.  Then if you got that answer and it was marked Answered you would have the ability to unmark it.  The OP of this one seems satisfied.  Also note that this is TechNet.  Consumers can get help on Answers
    forums.
    Robert Aldwinckle
    Oh! I wrote it wrong: I should have said: This is not solved for NON-AD environments. No demands what so ever to use Window 7/8 professional in a small corporation or on a big corporation with Island of smaller departments for example offshore.
    The problem is that the thread is not "Answered" by the OP, its is marked answered by a moderator (and same moderator that did the answer) so no way of telling if the OP is satisfied.
    But you are right in the fact that I am almost kidnapping the thread. But a complete answer would benefit all in this case I would presume.
    Regards
    /Aldus

  • There are two transactions ZJPVCS303 and ZJPVCS303_US for one single Report

    When run as a batch program, (currently this is the case), or withT-Code ZJPVCS303 the selection screen is unchanged (except for additional sales area above)
    - When run as T-Code ZJPVCS303_UL (UL stands for Upload) the selection screen is changed.  The unix file option is no longer available, and the user is able to upload a local file (in the same format as the current unix file, but tab delimited) to the program for processing.
    Requirements:
    There are two transactions ZJPVCS303 and ZJPVCS303_US for one single Report.
    ->When ZJPVCS303 Transaction is executed, the file is uploaded from the Application
      server to SAP R/3. The selection screen parameters would be:
      Logical Filename:
      Sales Organization:
      Distribution Channel:
      Division:
    ->When ZJPVCS303_US Transaction is executed, the file is uploaded from the Presentation Server
      to SAP R/3. When this transaction is executed, it should not have the 'Logical
      Filename' parameter anymore on the selection-screen. Instead it should only have
      Local File name on the presentation server:
      Sales Organization:
      Distribution Channel:
      Division:
        The same thing is applicable for the other transaction ZJPVCS303. When transaction ZJPVCS303
    is executed, it should not have the 'Local Filename' parameter anymore on the selection-screen. Instead it should only have
    Logical Filename:
    Sales Organization:
    Distribution Channel:
    Division:
    So how should I make these parameters invisible depending on the transaction codes execution.
    I have an idea of using MODIF ID, LOOPING AT SCREEN...MODIFY SCREEN.
    I have an idea of using SY-TCODE.
    EX:
    AT SELECTION-SCREEN OUTPUT.
    IF SY-TCODE = 'ZJPVCS303'.
    LOOP AT SCREEN.
    IF SCREEN-GROUPID = 'GRP'.
       SCREEN-INPUT   = 0.
       SCREEN-INVISIBLE = 1.
       MODIFY SCREEN.
    ENDIF.
    ENDLOOP.
    ELSEIF SY-TCODE = 'ZJPVCS303_US'.
    LOOP AT SCREEN.
    IF .....
    ENDLOOP.
    ENDIF.
    ENDIF.
    But I am not able to get the output which I require. Please help me out.

    Hello Rani
    Basically the transaction determines whether upload starts from application server (AS) or presentation server (PC). Thus, you will have the following parameter:
    PARAMETERS:
      p_as_fil          TYPE filename   MODIF ID unx,  " e.g. Unix server
      p_pc_fil          TYPE filename   MODIF ID wnd.  " e.g. Windows PC
    AT SELECTION-SCREEN OUTPUT.
      CASE syst-tcode.
    *   transaction(s) for upload from server (AS)
        WHEN 'ZJPVCS303.
          LOOP AT screen.
            IF ( screen-group1 = 'UNX' ).
              screen-input = 0.
              screen-invisible = 1.
              MODIFY screen.
            ENDIF.
          ENDLOOP.
    *   transaction(s) for upload from local PC (PC)
        WHEN 'ZJPVCS303_US.
          LOOP AT screen.
            IF ( screen-group1 = 'WND' ).
              screen-input = 0.
              screen-invisible = 1.
              MODIFY screen.
            ENDIF.
          ENDLOOP.
       WHEN others.
       ENDCASE.
    Regards
      Uwe

  • I am having a problem with very slow start up after expanding RAM on my 2009 Mac Pro.

    I am having a problem with very slow start up after expanding RAM on my 2009 Mac Pro (8 Core 2.93GHz). When I run the Mac Pro with 2 x 2Gb RAM it takes 4 seconds before the gray screen, chime and spinning wheel appear.However when I expand the RAM to 20GB the grey screen and chimes appear after a long 20+ second black screen.
    The RAM modules are paored  2 x 4GB Crucial CT51272BA1339.M18FMR and  6 x 2GB SAMSUNG M391B5673FH0-CH9, all DDR3 ECC.
    Reading articles on the internet, I thought it may be damaged RAM modules, but I have completed memtest and all are okay. I have tried changing the pairs around and if I use any paired 2 modules the Mac Pro starts normally, only when I try running more than 2 modules the delayed start up happens. (black screen 20 Seconds)
    I also have tried PRAM and SMU resets after changing the RAM setups, and the issues always occurs when I have more than 2 modules. As you can see I have 6 SAMSUNG modules and even with identical modules the issue happens, when increasing the RAM to more than 2 modules.
    The Mac Pro runs fine after the start up screen and can see all the modules, but has anyone else come across this issue, or have any ideas as to why my Mac Pro is taking 20 seconds to start up with 20 GB RAM?

    Hi there. Thanks for your comments.
    I have tried all the different combinations of RAM setup, and as stated in my initial topic, the Mac Pro boot up time only slows when I have more that 2 modules. Where I place these does not seem to make a difference.
    I have taken the Mac Pro to an Apple Reseller technician yesterday and they where not able to find any RAM errors. Apparently the boot up time is within Apple's acceptable parameters for this set up.
    Could anyone that is running a Mac Pro 2009 with more that 4 modules of RAM, please let me know if the boot up time is normal. ( the time it takes from pressing the power button to seeing the gray screen around 16 - 20 seconds)
    Or is anyone else having the same issues?
    thanks for your responce

Maybe you are looking for