5 tough questions relating to the monitoring software

Hi guys,
I'm writing this on behalf of one of our partners. They are having major problems setting up the monitoring software (v 1.0.0_200809). I have asked them to verify that they are using the latest firmware upgrades on the cameras and that they are running the latest version of the monitoring software. They have confirmed that this is the case.
I have some doubts about this but perhaps you can help with the issues listed below.
The following issues have surfaced:
1. Issues with Graphic Card driver for Intel GMA945
- if this driver is installed in a laptop the monitoring software (1.0.0_200809) will not inititate/start.
The error message is: <or corrupted resource files.  Please reinstall to solve this problem.>
Reinstalling the software will unofortunately not solve the problem. The only way to fix this problem is by removing the driver.
Question: Is this the only way to get the monitoring software to work and is this a known issue?
2. The new version of the monitoring software is unable to find the cameras using "search" functionality. The only way to configure tha camera is to do it manually.
Question: Is this a known issue and how should I truobleshoot this?
3. The cameras will not store the video feed on the Cisco NAS servers if the monitoring software is shut down. I remember from previous discussions that this should be possible but my partner is unable to get this fixed.
Question: Are there any instructions for how to set up the cameras so that the video feed is still being stored on the NAS despite closing the monitoring software?
4. In order to setup an ftp -feed to the NAS server, each camera needs to be configured manually. According to the partner this can not be done centrally using the monitoring software.
Question: Is this really the case?
5. According to the partner, it is not possible to use the monitoring software to view stored material that has been transferred using ftp.
Question: Is this really the case?
Many thanks in advance!
Rasmus Almqvist, Cisco Systems Finland

Hello and sorry for my delay in responding (Was on Vacation).
1) I have seen the problem you refer to and the way I got around it was to change the screen resolution, believe it or not.  I remember lowering it to 1280x800 and even have it working at 1400x1050.   That is a weird problem, and I did report that to the BU who I believe told NUUO, but for now this is the only workaround.  Uninstalling and reinstalling will not help, as you realize now.
2) The new Utility WILL FIND all SB Cameras it supports on the LAN.  So if your PC is connected to the LAN and can route (ping) the cameras, it can find them.  Note: xVC2300 require FW upgrade to V1.01 to make them work.   WVC200 will not be recognized at all.
WAN Monitoring of course will require manual config and port forwarding to an alternate TCP port (PVC300) or an adjusted TCP port (xVC2300).
3) Correct.  If your it off, it wont record.   This is really menat to be on a dedicated PC that should always be running, so is per design, and I do realize the old utility worked as well when off, but this new one is much improved in other areas and is still free :-)
The Camera itself can send montion detection or scheduled recordings to an FTP Server (NSS2xxx, NSS3xxx) regardless of the presence of the SWVMS16, so yes, the camera can do this too (Simultaneous; dual stream; dual codec).
4)  Setting up the FTP client on the Camera and the FTP Server on the NSS is done with a WIZARD or manual config on the elements and is totally separate from SWVMS16, which is an additional capability.
5)  The SWVMS16 will only save information (video) it records, so is separate fromt he FTP sourced files from the camera. To access the FTP files, just add the NSS to your network neighborhood on the NSS and browse the files (CIFS or NFS) as you would if they were on your own PC.
Steve D
Systems Engineer
Cisco Small Business Sales

Similar Messages

  • Question related to the Federated Portal Network.

    Hi All,
    I have a question related to the Federated Portal Network.
    I have to configured FPN between two portals :
    1. BI-portal  (Producer Portal) (EP 7.0)
    2. Portal for other systems (Consumer Portal) (EP 7.0)
    Can anybody help regarding this, I need material or URLs   ...
    Thanks & Regards,
    Jay

    Hi Jay,
    Check out following links for fedrated portals
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/703cfbbd-e85e-2a10-00a3-ecd502c08e82&overridelayout=true
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/70191d1e-2bd1-2a10-d9b7-ba19500da527&overridelayout=true
    Regards,
    Vaishali

  • Question related to the  JAX-RPC.

    Hi ,
    I have a question related to the JAX-RPC API.
    Please clear me following points whether I am right or not?
    1. If my two end points are in Java then and only we use the JAX-RPC API. Is it right?
    2. If my two end points are in .Net then we use the some other API in .NET. Is it right?
    Please give me links or associate info. regarding this.
    Thanks,
    Rahul

    With JAX-RPC API, you are writing or consuming web services. If you are building web services, then that web service should be interoperable to .NET as well as Java. You do not have to use JAX-RPC, because, JAX-WS can serve the same purpose but is much easier to program. More about web services may be found at [http://soalib.com|http://soalib.com]

  • Questions related to the localstorage=false client restarted and join back

    Hi, We are using the coherence 3.4.2 version. I notified a strange problem in our application, related to the coherence. I am posting here seeking for help. We are using JDK 1.6.0_16 on Linux 64 OS.
    To simplify the problems, let me just say that we have 3 JVM running as now. One is we called the data server, starting with following JVM settings:
    java -Xms1G -Xmx1G -server -Dlog4j.configuration=log4j.xml
    -Dtangosol.coherence.cacheconfig=/xxx/coherence_config.xml
    -Dtangosol.coherence.ttl=0
    -Dtangosol.coherence.log=log4j
    -Dtangosol.coherence.clusterport=5511
    -Dtangosol.coherence.distributed.localstorage=true The other 2 JVMs will use the same JVM settings as above, except -Dtangosol.coherence.distributed.localstorage=false.
    When I started the all servers in this order: data server -> one client jvm -> the other client jvm, I can see they all join into one cluster, and our application works fine.
    Now, if I shutdown client1 and client2, and restarted them, the problems comes:
    1) From the coherence log, I can see the client1 and client2 joined back in the cluster.
    2) But when client1 is trying to get cache using the following api:
    NamedCache cache = CacheFactory.getCache("cacheName");
    Object o = (Object)cache.get(id);The cache object is there, but without any elements in it. So Object o will always to Null. But I know in this case, there is one element in the case, which I just put in before restarted client 1 and 2.
    So in this case, I can get a cache object back, but without any element into it. This is not the case before the JVM restarted.
    3) In the above case, the cache is defined as a replicated cache as following:
              <cache-mapping>
                   <cache-name>cacheName</cache-name>
                   <scheme-name>ReplicatedScheme</scheme-name>
              </cache-mapping>
              <replicated-scheme>
                   <scheme-name>ReplicatedScheme</scheme-name>
                   <backing-map-scheme>
                        <local-scheme>
                             <scheme-ref>unlimited-backing-map</scheme-ref>
                        </local-scheme>
                   </backing-map-scheme>
              </replicated-scheme>
              <!-- Backing map scheme definition used by all the caches that do not require any eviction policies -->
              <local-scheme>
                   <scheme-name>unlimited-backing-map</scheme-name>
              </local-scheme>4) I tried to use the SimpleCacheExplorer example coming with the coherence to see if I can reproduce this case. But I can not. I use the same coherence.xml as our application. I used the same cache name in the SimpleCacheExplorer as in our application. I started 3 JVMs, one with localstorage=true, the other 2 with localstorage=false. Everytime, I restarted the other 2 JVMs, it can join back the cluster and get the value for the original key. So I am not sure which part in our application breaks this.
    5) I list the coherence log below from our application. I added 2-3 lines comments just to list what happened then.
    Any idea or hints about why this is happenning? Thanks for your help.

    Here is the log:
    ############ start the data server
    2009-11-19 14:55:07,389 Coherence  Logger@1398577124 3.4.2/411 INFO   2009-11-19 14:55:07.132/65.613 Oracle Coherence 3.4.2/411 <Info> (thread=http-8080-1, member=n/a): Loaded operational configuration from resource "jar:file:/datacloud/trunk/install/apache-tomcat-6.0.18/webapps/datacloud/WEB-INF/lib/coherence.jar!/tangosol-coherence.xml"
    2009-11-19 14:55:07,389 Coherence  Logger@1398577124 3.4.2/411 INFO   2009-11-19 14:55:07.187/65.668 Oracle Coherence 3.4.2/411 <Info> (thread=http-8080-1, member=n/a): Loaded operational overrides from resource "jar:file:/datacloud/trunk/install/apache-tomcat-6.0.18/webapps/datacloud/WEB-INF/lib/coherence.jar!/tangosol-coherence-override-dev.xml"
    2009-11-19 14:55:07,389 Coherence  Logger@1398577124 3.4.2/411 DEBUG  2009-11-19 14:55:07.187/65.668 Oracle Coherence 3.4.2/411 <D5> (thread=http-8080-1, member=n/a): Optional configuration override "/tangosol-coherence-override.xml" is not specified
    2009-11-19 14:55:07,389 Coherence  Logger@1398577124 3.4.2/411 DEBUG  2009-11-19 14:55:07.190/65.671 Oracle Coherence 3.4.2/411 <D5> (thread=http-8080-1, member=n/a): Optional configuration override "/custom-mbeans.xml" is not specified
    2009-11-19 14:55:07,389 Coherence  Logger@1398577124 3.4.2/411 DEBUG 
    Oracle Coherence Version 3.4.2/411
    Grid Edition: Development mode
    Copyright (c) 2000-2009 Oracle. All rights reserved.
    2009-11-19 14:55:08,356 Coherence  Logger@9218328 3.4.2/411 DEBUG  2009-11-19 14:55:08.351/863.022 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=1): Member(Id=2, Timestamp=2009-11-19 14:55:08.15, Address=10.241.59.246:8089, MachineId=49398, Location=site:americas.nokia.com,machine:daec-linuxvpn059246,process:30265, Role=ApacheCatalinaStartupBootstrap) joined Cluster with senior member 1
    2009-11-19 14:55:08,360 Coherence  Logger@9230760 3.4.2/411 INFO   2009-11-19 14:55:08.360/66.841 Oracle Coherence GE 3.4.2/411 <Info> (thread=Cluster, member=n/a): This Member(Id=2, Timestamp=2009-11-19 14:55:08.15, Address=10.241.59.246:8089, MachineId=49398, Location=site:americas.nokia.com,machine:daec-linuxvpn059246,process:30265, Role=ApacheCatalinaStartupBootstrap, Edition=Grid Edition, Mode=Development, CpuCount=2, SocketCount=1) joined cluster "cluster:0xC3E1" with senior Member(Id=1, Timestamp=2009-11-19 14:40:47.04, Address=10.241.59.246:8088, MachineId=49398, Location=site:americas.nokia.com,machine:daec-linuxvpn059246,process:29459, Role=NokiaDcServerDataServer, Edition=Grid Edition, Mode=Development, CpuCount=2, SocketCount=1)
    2009-11-19 14:55:08,386 Coherence  Logger@9230760 3.4.2/411 DEBUG  2009-11-19 14:55:08.385/66.866 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service ExpiryService with senior member 1
    2009-11-19 14:55:08,386 Coherence  Logger@9230760 3.4.2/411 DEBUG  2009-11-19 14:55:08.385/66.866 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistSearchService with senior member 1
    2009-11-19 14:55:08,386 Coherence  Logger@9230760 3.4.2/411 DEBUG  2009-11-19 14:55:08.385/66.866 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistributedCache with senior member 1
    2009-11-19 14:55:08,386 Coherence  Logger@9230760 3.4.2/411 DEBUG  2009-11-19 14:55:08.385/66.866 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistSmallLRUService with senior member 1
    2009-11-19 14:55:08,386 Coherence  Logger@9230760 3.4.2/411 DEBUG  2009-11-19 14:55:08.385/66.866 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistSmallLFUService with senior member 1
    2009-11-19 14:55:08,386 Coherence  Logger@9230760 3.4.2/411 DEBUG  2009-11-19 14:55:08.385/66.866 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistSmallHYBRIDService with senior member 1
    2009-11-19 14:55:08,386 Coherence  Logger@9230760 3.4.2/411 DEBUG  2009-11-19 14:55:08.385/66.866 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistMediumLRUService with senior member 1
    2009-11-19 14:55:08,386 Coherence  Logger@9230760 3.4.2/411 DEBUG  2009-11-19 14:55:08.385/66.866 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistMediumLFUService with senior member 1
    2009-11-19 14:55:08,386 Coherence  Logger@9230760 3.4.2/411 DEBUG  2009-11-19 14:55:08.385/66.866 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistMediumHYBRIDService with senior member 1
    2009-11-19 14:55:08,386 Coherence  Logger@9230760 3.4.2/411 DEBUG  2009-11-19 14:55:08.385/66.866 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistLargeLRUService with senior member 1
    2009-11-19 14:55:08,386 Coherence  Logger@9230760 3.4.2/411 DEBUG  2009-11-19 14:55:08.385/66.866 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistLargeLFUService with senior member 1
    2009-11-19 14:55:08,387 Coherence  Logger@9230760 3.4.2/411 DEBUG  2009-11-19 14:55:08.385/66.866 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistLargeHYBRIDService with senior member 1
    2009-11-19 14:55:08,682 Coherence  Logger@9218328 3.4.2/411 DEBUG  2009-11-19 14:55:08.681/863.352 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=1): Member 2 joined Service DistributedCache with senior member 1
    2009-11-19 14:55:08,686 Coherence  Logger@9230760 3.4.2/411 DEBUG  2009-11-19 14:55:08.686/67.167 Oracle Coherence GE 3.4.2/411 <D5> (thread=DistributedCache, member=2): Service DistributedCache joined the cluster with senior service member 1
    2009-11-19 14:55:08,690 Coherence  Logger@9218328 3.4.2/411 DEBUG  2009-11-19 14:55:08.686/863.357 Oracle Coherence GE 3.4.2/411 <D5> (thread=DistributedCache, member=1): Service DistributedCache: sending ServiceConfigSync containing 258 entries to Member 2
    2009-11-19 14:55:08,693 Coherence  Logger@9230760 3.4.2/411 DEBUG  2009-11-19 14:55:08.693/67.174 Oracle Coherence GE 3.4.2/411 <D5> (thread=DistributedCache, member=2): Service DistributedCache: received ServiceConfigSync containing 258 entries
    2009-11-19 14:55:09,593 Coherence  Logger@9218328 3.4.2/411 DEBUG  2009-11-19 14:55:09.593/864.264 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=1): TcpRing: connecting to member 2 using TcpSocket{State=STATE_OPEN, Socket=Socket[addr=/10.241.59.246,port=8089,localport=37475]}
    2009-11-19 14:55:09,597 Coherence  Logger@9230760 3.4.2/411 DEBUG  2009-11-19 14:55:09.596/68.077 Oracle Coherence GE 3.4.2/411 <D5> (thread=TcpRingListener, member=2): TcpRing: connecting to member 1 using TcpSocket{State=STATE_OPEN, Socket=Socket[addr=/10.241.59.246,port=37475,localport=8089]}
    2009-11-19 14:55:12,673 Coherence  Logger@1144704103 3.4.2/411 INFO   2009-11-19 14:55:12.508/172.386 Oracle Coherence 3.4.2/411 <Info> (thread=pool-2-thread-1, member=n/a): Loaded operational configuration from resource "jar:file:/datacloud/trunk/install/lib/coherence.jar!/tangosol-coherence.xml"
    2009-11-19 14:55:12,673 Coherence  Logger@1144704103 3.4.2/411 INFO   2009-11-19 14:55:12.514/172.392 Oracle Coherence 3.4.2/411 <Info> (thread=pool-2-thread-1, member=n/a): Loaded operational overrides from resource "jar:file:/datacloud/trunk/install/lib/coherence.jar!/tangosol-coherence-override-dev.xml"
    2009-11-19 14:55:12,673 Coherence  Logger@1144704103 3.4.2/411 DEBUG  2009-11-19 14:55:12.514/172.392 Oracle Coherence 3.4.2/411 <D5> (thread=pool-2-thread-1, member=n/a): Optional configuration override "/tangosol-coherence-override.xml" is not specified
    2009-11-19 14:55:12,673 Coherence  Logger@1144704103 3.4.2/411 DEBUG  2009-11-19 14:55:12.517/172.395 Oracle Coherence 3.4.2/411 <D5> (thread=pool-2-thread-1, member=n/a): Optional configuration override "/custom-mbeans.xml" is not specified
    2009-11-19 14:55:12,673 Coherence  Logger@1144704103 3.4.2/411 DEBUG 
    Oracle Coherence Version 3.4.2/411
    Grid Edition: Development mode
    Copyright (c) 2000-2009 Oracle. All rights reserved.
    2009-11-19 15:04:23,811 Coherence  Logger@9249408 3.4.2/411 DEBUG  2009-11-19 15:04:23.811/62.250 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistSmallLRUService with senior member 1
    2009-11-19 15:04:23,811 Coherence  Logger@9249408 3.4.2/411 DEBUG  2009-11-19 15:04:23.811/62.250 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistSmallLFUService with senior member 1
    2009-11-19 15:04:23,812 Coherence  Logger@9249408 3.4.2/411 DEBUG  2009-11-19 15:04:23.811/62.250 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistSmallHYBRIDService with senior member 1
    2009-11-19 15:04:23,812 Coherence  Logger@9249408 3.4.2/411 DEBUG  2009-11-19 15:04:23.812/62.251 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistMediumLRUService with senior member 1
    2009-11-19 15:04:23,812 Coherence  Logger@9249408 3.4.2/411 DEBUG  2009-11-19 15:04:23.812/62.251 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistMediumLFUService with senior member 1
    2009-11-19 15:04:23,812 Coherence  Logger@9249408 3.4.2/411 DEBUG  2009-11-19 15:04:23.812/62.251 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistMediumHYBRIDService with senior member 1
    2009-11-19 15:04:23,812 Coherence  Logger@9249408 3.4.2/411 DEBUG  2009-11-19 15:04:23.812/62.251 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistLargeLRUService with senior member 1
    2009-11-19 15:04:23,812 Coherence  Logger@9249408 3.4.2/411 DEBUG  2009-11-19 15:04:23.812/62.251 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistLargeLFUService with senior member 1
    2009-11-19 15:04:23,812 Coherence  Logger@9249408 3.4.2/411 DEBUG  2009-11-19 15:04:23.812/62.251 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistLargeHYBRIDService with senior member 1
    2009-11-19 15:04:23,946 Coherence  Logger@9218328 3.4.2/411 DEBUG  2009-11-19 15:04:23.946/1418.617 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=1): Member 2 joined Service DistributedCache with senior member 1
    2009-11-19 15:04:23,953 Coherence  Logger@9249408 3.4.2/411 DEBUG  2009-11-19 15:04:23.952/62.391 Oracle Coherence GE 3.4.2/411 <D5> (thread=DistributedCache, member=2): Service DistributedCache joined the cluster with senior service member 1
    2009-11-19 15:04:23,955 Coherence  Logger@9218328 3.4.2/411 DEBUG  2009-11-19 15:04:23.953/1418.624 Oracle Coherence GE 3.4.2/411 <D5> (thread=DistributedCache, member=1): Service DistributedCache: sending ServiceConfigSync containing 259 entries to Member 2
    2009-11-19 15:04:23,959 Coherence  Logger@9249408 3.4.2/411 DEBUG  2009-11-19 15:04:23.959/62.398 Oracle Coherence GE 3.4.2/411 <D5> (thread=DistributedCache, member=2): Service DistributedCache: received ServiceConfigSync containing 259 entries
    2009-11-19 15:04:24,513 Coherence  Logger@879081272 3.4.2/411 INFO   2009-11-19 15:04:24.351/181.083 Oracle Coherence 3.4.2/411 <Info> (thread=RMI TCP Connection(4)-127.0.0.2, member=n/a): Loaded operational configuration from resource "jar:file:/datacloud/trunk/install/lib/coherence.jar!/tangosol-coherence.xml"
    2009-11-19 15:04:24,514 Coherence  Logger@879081272 3.4.2/411 INFO   2009-11-19 15:04:24.355/181.087 Oracle Coherence 3.4.2/411 <Info> (thread=RMI TCP Connection(4)-127.0.0.2, member=n/a): Loaded operational overrides from resource "jar:file:/datacloud/trunk/install/lib/coherence.jar!/tangosol-coherence-override-dev.xml"
    2009-11-19 15:04:24,514 Coherence  Logger@879081272 3.4.2/411 DEBUG  2009-11-19 15:04:24.355/181.087 Oracle Coherence 3.4.2/411 <D5> (thread=RMI TCP Connection(4)-127.0.0.2, member=n/a): Optional configuration override "/tangosol-coherence-override.xml" is not specified
    2009-11-19 15:04:24,514 Coherence  Logger@879081272 3.4.2/411 DEBUG  2009-11-19 15:04:24.358/181.090 Oracle Coherence 3.4.2/411 <D5> (thread=RMI TCP Connection(4)-127.0.0.2, member=n/a): Optional configuration override "/custom-mbeans.xml" is not specified
    2009-11-19 15:04:24,514 Coherence  Logger@879081272 3.4.2/411 DEBUG 
    Oracle Coherence Version 3.4.2/411
    Grid Edition: Development mode
    Copyright (c) 2000-2009 Oracle. All rights reserved.
    2009-11-19 15:04:24,546 Coherence  Logger@879081272 3.4.2/411 INFO   2009-11-19 15:04:24.546/181.278 Oracle Coherence GE 3.4.2/411 <Info> (thread=RMI TCP Connection(4)-127.0.0.2, member=n/a): Loaded cache configuration from file "/datacloud/trunk/install/conf/coherence_config.xml"
    2009-11-19 15:04:24,760 Coherence  Logger@879081272 3.4.2/411 WARN   2009-11-19 15:04:24.760/181.492 Oracle Coherence GE 3.4.2/411 <Warning> (thread=RMI TCP Connection(4)-127.0.0.2, member=n/a): UnicastUdpSocket failed to set receive buffer size to 1428 packets (2096304 bytes); actual size is 89 packets (131071 bytes). Consult your OS documentation regarding increasing the maximum socket buffer size. Proceeding with the actual value may cause sub-optimal performance.
    2009-11-19 15:04:24,786 Coherence  Logger@9218328 3.4.2/411 DEBUG  2009-11-19 15:04:24.785/1419.456 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=1): TcpRing: connecting to member 2 using TcpSocket{State=STATE_OPEN, Socket=Socket[addr=/10.241.59.246,port=8089,localport=48995]}
    2009-11-19 15:04:24,787 Coherence  Logger@9249408 3.4.2/411 DEBUG  2009-11-19 15:04:24.787/63.226 Oracle Coherence GE 3.4.2/411 <D5> (thread=TcpRingListener, member=2): TcpRing: connecting to member 1 using TcpSocket{State=STATE_OPEN, Socket=Socket[addr=/10.241.59.246,port=48995,localport=8089]}
    2009-11-19 15:04:24,882 Coherence  Logger@879081272 3.4.2/411 DEBUG  2009-11-19 15:04:24.882/181.614 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Service Cluster joined the cluster with senior service member n/a
    2009-11-19 15:04:25,118 Coherence  Logger@9218328 3.4.2/411 DEBUG  2009-11-19 15:04:25.112/1419.783 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=1): Member(Id=3, Timestamp=2009-11-19 15:04:24.917, Address=10.241.59.246:8090, MachineId=49398, Location=site:americas.nokia.com,machine:daec-linuxvpn059246,process:30657, Role=NokiaDcServerBuildBuildServer) joined Cluster with senior member 1
    2009-11-19 15:04:25,118 Coherence  Logger@9249408 3.4.2/411 DEBUG  2009-11-19 15:04:25.115/63.554 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=2): Member(Id=3, Timestamp=2009-11-19 15:04:24.917, Address=10.241.59.246:8090, MachineId=49398, Location=site:americas.nokia.com,machine:daec-linuxvpn059246,process:30657, Role=NokiaDcServerBuildBuildServer) joined Cluster with senior member 1
    2009-11-19 15:04:25,120 Coherence  Logger@9242415 3.4.2/411 INFO   2009-11-19 15:04:25.120/181.852 Oracle Coherence GE 3.4.2/411 <Info> (thread=Cluster, member=n/a): This Member(Id=3, Timestamp=2009-11-19 15:04:24.917, Address=10.241.59.246:8090, MachineId=49398, Location=site:americas.nokia.com,machine:daec-linuxvpn059246,process:30657, Role=NokiaDcServerBuildBuildServer, Edition=Grid Edition, Mode=Development, CpuCount=2, SocketCount=1) joined cluster "cluster:0xC3E1" with senior Member(Id=1, Timestamp=2009-11-19 14:40:47.04, Address=10.241.59.246:8088, MachineId=49398, Location=site:americas.nokia.com,machine:daec-linuxvpn059246,process:29459, Role=NokiaDcServerDataServer, Edition=Grid Edition, Mode=Development, CpuCount=2, SocketCount=1)
    2009-11-19 15:04:25,127 Coherence  Logger@9242415 3.4.2/411 DEBUG  2009-11-19 15:04:25.127/181.859 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member(Id=2, Timestamp=2009-11-19 15:04:23.541, Address=10.241.59.246:8089, MachineId=49398, Location=site:americas.nokia.com,machine:daec-linuxvpn059246,process:30753, Role=ApacheCatalinaStartupBootstrap) joined Cluster with senior member 1
    2009-11-19 15:04:25,131 Coherence  Logger@9242415 3.4.2/411 DEBUG  2009-11-19 15:04:25.131/181.863 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service ExpiryService with senior member 1
    2009-11-19 15:04:25,131 Coherence  Logger@9242415 3.4.2/411 DEBUG  2009-11-19 15:04:25.131/181.863 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistSearchService with senior member 1
    2009-11-19 15:04:25,132 Coherence  Logger@9242415 3.4.2/411 DEBUG  2009-11-19 15:04:25.132/181.864 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistributedCache with senior member 1
    2009-11-19 15:04:25,132 Coherence  Logger@9242415 3.4.2/411 DEBUG  2009-11-19 15:04:25.132/181.864 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistSmallLRUService with senior member 1
    2009-11-19 15:04:25,132 Coherence  Logger@9242415 3.4.2/411 DEBUG  2009-11-19 15:04:25.132/181.864 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistSmallLFUService with senior member 1
    2009-11-19 15:04:25,133 Coherence  Logger@9242415 3.4.2/411 DEBUG  2009-11-19 15:04:25.132/181.864 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistSmallHYBRIDService with senior member 1
    2009-11-19 15:04:25,133 Coherence  Logger@9242415 3.4.2/411 DEBUG  2009-11-19 15:04:25.133/181.865 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistMediumLRUService with senior member 1
    2009-11-19 15:04:25,133 Coherence  Logger@9242415 3.4.2/411 DEBUG  2009-11-19 15:04:25.133/181.865 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistMediumLFUService with senior member 1
    2009-11-19 15:04:25,133 Coherence  Logger@9242415 3.4.2/411 DEBUG  2009-11-19 15:04:25.133/181.865 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistMediumHYBRIDService with senior member 1
    2009-11-19 15:04:25,133 Coherence  Logger@9242415 3.4.2/411 DEBUG  2009-11-19 15:04:25.133/181.865 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistLargeLRUService with senior member 1
    2009-11-19 15:04:25,133 Coherence  Logger@9242415 3.4.2/411 DEBUG  2009-11-19 15:04:25.133/181.865 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistLargeLFUService with senior member 1
    2009-11-19 15:04:25,133 Coherence  Logger@9242415 3.4.2/411 DEBUG  2009-11-19 15:04:25.133/181.865 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistLargeHYBRIDService with senior member 1
    2009-11-19 15:04:25,134 Coherence  Logger@9242415 3.4.2/411 DEBUG  2009-11-19 15:04:25.134/181.866 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Member 2 joined Service DistributedCache with senior member 1
    2009-11-19 15:04:25,219 Coherence  Logger@9218328 3.4.2/411 DEBUG  2009-11-19 15:04:25.219/1419.890 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=1): Member 3 joined Service ReplicatedCache with senior member 3
    2009-11-19 15:04:25,220 Coherence  Logger@9249408 3.4.2/411 DEBUG  2009-11-19 15:04:25.220/63.659 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=2): Member 3 joined Service ReplicatedCache with senior member 3
    2009-11-19 15:04:25,223 Coherence  Logger@9242415 3.4.2/411 DEBUG  2009-11-19 15:04:25.223/181.955 Oracle Coherence GE 3.4.2/411 <D5> (thread=ReplicatedCache, member=3): Service ReplicatedCache joined the cluster with senior service member 3
    2009-11-19 15:04:26,310 Coherence  Logger@9242415 3.4.2/411 DEBUG  2009-11-19 15:04:26.309/183.041 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=3): TcpRing: connecting to member 1 using TcpSocket{State=STATE_OPEN, Socket=Socket[addr=/10.241.59.246,port=8088,localport=58713]}
    2009-11-19 15:04:26,312 Coherence  Logger@9218328 3.4.2/411 DEBUG  2009-11-19 15:04:26.312/1420.983 Oracle Coherence GE 3.4.2/411 <D5> (thread=TcpRingListener, member=1): TcpRing: connecting to member 3 using TcpSocket{State=STATE_OPEN, Socket=Socket[addr=/10.241.59.246,port=58713,localport=8088]}

  • Basic question related to the Thread.

    HI all,
    I have simple question.This is the simple program for creating a Thread.
    My question is, when we invoke the start() method hos does the JVM knows to invoke run method?
    why not other method / s?
    I am new to the Thread progamming. Please explain it.
    Thanks,
    Rahul.
    public class HelloRunnable implements Runnable {
    public void run() {
    System.out.println("Hello from a thread!");
    public static void main(String args[]) {
    (new Thread(new HelloRunnable())).start();
    }

    rahulb1 wrote:
    My question is, when we invoke the start() method hos does the JVM knows to invoke run method?The library for Thread calls the run() method of Thread, this calls the run() of the Runnable. (See the code and javadocs for Thread)
    why not other method / s?Because thats what was chosen as the logical method to call.

  • Questions regarding using the .monitor command to retur a animated image and we would like feedback to a designed webpage that is monitoring a 5kW windturbine:)

    I'm embedding a front panel image in an existing HTML dokument. I would like to use the command .monitor in the URL together with the refresh command so the VI automatic will reload every 20 secund. This actual work, but simultaneous I want to have the possibility to refresh manually so I don't have to wait 20 sec before new values is shown in the display. Is this possible to do?
    Another question: Since the real time display updates 1-2 times a secund the command .monitor is used to get a animated picture of the Real Time Display.
    There are several ways to add animation on to web pages. The techniques used h
    ere are the �server push� and �client pull�which makes the browser repeatedly reloads a changing inline image to provide crude animated sequences. This is not the most efficient way as this result�s in an image being re-transmitted for each frame of the animation. The command .monitor with the attribute refresh and lifespan in the URL trigger this �server push� and �client pull� techniques.
    I use this automatic refresh uploading of the display so that it each time shows different values, is this called crude animation?Then I'm wondering what I'm suppose to use the command lifespan to?I can't see the use of it in my display.....?
    link to the webpage so you can have a look at the display:
    http://134.7.139.176/.monitor?Real%20Time%20Performance.vi&refresh=20
    This is a project that I'm working together with another Norwegian friend. WE are very happy for feedback on our web page and displays go to: http://www.ece.curtin.edu.au/~peersena/ if you would like to view itThanks

    Annis,
    One of the other things to keep in mind is that the generation of an image does take some computing power so having the generation and the acquistion on the same machine is not always ideal. If you're using the machine that is publishing the front panel just to collect data it's not so much of an issue.
    If you really want to monitor in "Real-Time" using Remote Panels (requies LabVIEW 6.1) is your best option. This posting has more information on using Remote Panels and links to some live examples:
    http://exchange.ni.com/servlet/ProcessRequest?RHIVEID=101&RPAGEID=135&HOID=506500000008000000C0660000&UCATEGORY_0=_49_%24_6_&UCATEGORY_S=0&USEARCHCONTEXT_TIER_0=0&USEARCHCONTEXT_TIER_S=0&USEARCHCONTEXT_QUESTION_0=web+control&USEARCHCONTEXT_QUESTION_S=0
    Remote panels makes it possible to control the application remotely as well.
    With .monitor the only way I've been able to manually refresh is to "Shift+Refresh" on the browser.
    Regards,
    Kamran

  • I have a question related to the discussions forum,

    and here it is:
    In which thread should I post a technical question about the "Apple Care" warranty--it doesn't seem to have its own heading like the other products and services offered by Apple.
    All I really want to ask is, "Why is it that I'm being asked for thirty dollars for a repair that you acknowledge is covered by the additional warranty that I've purchased? I was under the impression that one purchases a warranty so that he or she will NOT have to pay for repairs covered by said warranty."
    Anyhow, please let me know where I may direct my question.

    Hello,
    I recommend using the phone instead of these forums. The forums are user-to-user and are much too vast for Apple employees to ferret out the user who have special warranty needs or issues.
    Your AppleCare plan should have come with a toll-free contact number. Talk to someone there and, if that does not give satisfaction, ask for a customer relations supervisor.

  • Question related to the mini display port adapters

    So I just bought my new macbook pro and soon I'll need to buy an adapter so I'm able to connect it to a projector or monitor using the more commonly used ports.
    I'll need VGA and DVI, but I don't think I'll spend 50£+ on two adapters, instead I thought I'd just buy the MDP -> DVI adapter and then use a DVI to VGA converter I have laying around... Would that do the trick?
    By the way this is the particular adapter i'm talking about:
    http://www.amazon.co.uk/gp/product/B002ERZGKQ/ref=ox_sc_sfl_title_1?ie=UTF8&m=A1 T39SA8AUFT6J
    And this is what my converter looks like:
    http://www.amazon.co.uk/Cabling4Less-DVI-VGA-HD15-Adaptor/dp/B000FII810/ref=sr_1 _1?ie=UTF8&qid=1310517204&sr=8-1
    Thanks in advance!

    I guess I'll buy the MDP to VGA (Which I'll need more at school for presentations) and later on the DVI one, to use at home. I'd use VGA at home as well but I prefeer the looks of the digital signal, it just has better quality.
    Thanks for sharing your experience, now I know what to go for

  • HP Expert Day - January 9-10, 2013: Tough questions? Ask the Experts!

    Thank you for coming to Expert Day – the event has now concluded.
    **To find out about future HP Expert Day events, check out this page**
    On behalf of the Experts, I would like to thank you for coming to the Forum to connect with us.  We hope you will return to the boards to share your experiences, both good and bad.
    We will be holding more of these Expert Days on different topics in the months to come.  We hope to see you then!
    If you still have questions to ask, feel free to post them on the Forum – we always have Experts on the HP Support Forum to help you out.
    Do you have questions using or setting up your HP notebook, desktop PC, or printer?
    Well, we’ve got answers.
    Experts will be on the notebook, desktop, and printer and all in ones boards ready to answer your questions from Wednesday, January 9th 7:00am to Thursday, January 10th 7:00am Pacific Time.
    How the day works:
    Come to the Forums and ask your tech questions. More than 250 experts will be on the Forums and will do their best to help you out. An online conversation will be born!
    Why should you come to the Forums?
    Whether you own an HP Spectre notebook, Envy printer, or an HP home desktop computer, there has never been a better chance to learn about your product.
    When do you have a chance to talk directly with the people who designed the product or wrote the manual for it?
    This will be your opportunity to connect with the best and brightest minds at HP for free.
    We’ll share our knowledge on the best ways to:
    Tweak your product to increase performance;
    Troubleshoot the issue you are having;
    Upgrade to Windows 8 or Mountain Lion MacOS;
    Set up a Wireless network;
    Safeguard your PC from viruses and spyware;
    Choose the right power supply, upgrade your video card, or add the right amount of memory;
    Use the tools built into your product that can make it run better and fix common problems;
    Ensure you have the correct print driver;
    Get the most out of Win8 – learn tips and tricks;
    And it’s FREE.
    It doesn’t matter how old the product is or what it is connected to. We will do our best to help.
    In addition to the Consumer Forum, Expert Day will also be occurring here:
    Enterprise Business Forum (January 9th from 7:00am to January 10th 7:00am PT)
    Looking forward to seeing you on January 9th!
    I work for HP, supporting the HP Experts who volunteer their time and technical knowledge to help others.
    --Say "Thanks" by clicking the Kudos Star in the post that helped you.
    --Please mark the post that solves your problem as "Accepted Solution"

    My HP, purchased in June 2012, died on Saturday.  I was working in recently installed Photoshop, walked away from my computer to answer the phone and when I came back the screen was blank.  When I turned it on, I got a Windows Error Recovery message.  The computer was locked and wouldn't let me move the arrow keys up or down and hitting f8 didn't do anything. 
    I'm not happy with HP.  Any suggestions?

  • The problem related with the nokai software update

    hello friends,
    i am using nokia7230, 3 days before i updated my cell phone with nokia software updater, the version changed from V 6.9 to V9.83, i was happy to see my cell geting updated, but the moment it finished, there nothin else left with me other than a piece of box having some electronic items in it. There was nothing left in it, you can say it to be as a kind of formating of data and saying it to be as a update, all the softwares which i got when i bought ma cell where deleted, all the tones,themes,wallpaper,softwares, everything got washed away, in short a complete mess. but this was not the end, i cant view images as well as edit them anymore, it keeps on restarting again and again i dont know for what reasons, the organization is again and again restored everytime i manage it manually, now the number of the person is not displayed on reciving messages. after taking pic it hangs and doesnt shows the pic. there is no browser settings left. most of my jawa softwares not working properly.
    If nokia cant better my cell than please domt atleast ruine it.
    I want to ask is there any way to resolve this problem, i am reminding i an having the latest updete, which means i evan cant update it.
    can i get the previous version.
    please help me out.

    1. When you start the Software update.. it prompts you to take Back-up of your phone... If you have followed this instructions then all your data is safe in the Back-up..
    2. A Hard Reset is always recommended after Software Update.. so you may go for it..
    And ..
    3. You can not downgrade the software at user end... Nokia Care may help..( but if you have not kept a back-up.. your data will not come back even then..)
    --------------------------------------------------​--------------------------------------------------​--------------------------------------------------​--If you find this helpful, pl. hit the White Star in Green Box...

  • I have another question related to the connection and operation of FP-RLY-422

    1. I use one 25 VDC power to supply power for all the five fieldpoint modules(i.e. V and C terminals of FP-2000, FP-AI-110, FP-AO-200 and FP-RLY-422 are connected) However, as cascading power from neighboring bases or network modules defeats isolation between cascaded modules. I want to know whether the switching of one channel of a module have influence on the reading or switching of other channels in other modules. May I need to provide seperate power supply for FP-2000, FP-AI-100, FP-AO-200, and FP-RLY-422. If FP-RLY-422 was suppled by power of 120 VAC. Is it OK. I read the manual of FP-RLY-422 which specifies 3 A at 35 VDC or 250 VAC. If I used it to control three heaters of 500 w each and
    another 750 W. The current of each channel will be over 3 A. Can it be wired in this way?
    2. I use FP-RLY-422 to control four heaters. Now I connected it in this way. I connect it firstly to one of four solid state relays for each channel of the fieldpoint relay. The solid state relay is just a open/close relay the input is 3-32VDC and the output is 110-220VAC/25 A or 240 VAC/50 A. In this case, I build the VI for the operation of heater just in two statuses i.e. on and off. In this case the temperature can't be controlled very accurately. I want to know whether I can build a VI based on PID control based on the present wiring of my cable (i.e. fieldpoint relay control on/off solid relay to control operation of heater indiretly). In this case may I wire the fieldpoint relay FP-RLY-422 directly to the heater of 750 W? I understand the fieldpoint relay FP-RLY-422 in this way. It is a mechanical relay and I can heard the sound when it switched between normally open and normally closed.
    I think it have only two statuses i.e. on and off. In this case would you please explain how it contrl the output for the heater more accurately. Does it control by regulating the time being on/off?

    Bo,
    1a) All FieldPoint I/O modules are supplied operating power from the power supply in the network module. Certain modules may require additional power for sourcing power via outputs or inputs. Of the modules you list above, the following module requires external power; FP-AO-200. The following modules do not require external power wired to the V & C terminals; FP-AI-100, FP-AI-110, FP-TC-120, and FP-RLY-422. The V & C terminals are provided on modules that do not require them to simplify wiring (e.g. not requiring external terminal blocks if you have loop powered current transmitters).
    1b) The FP-RLY-422 is rated for up to 3 amps at 35 VDC or 250 VAC. Currents above 3 Amps may damage the relays, the traces on the terminal base and FP-RLY-422 PWBs, and wi
    ll cause overheating of the connectoer between the terminal base and the I/O module.
    2a) You can use the FP-RLY-422 with a PID control algorithm to control the heater. However, as relays have limited life expectancies and are simply on/off the control will not be a fine as some other options. What may be better is to use a FP-PWM-520 pulse width module to control the solid state relays. You still control the solid state relay via on/off, but in this case, the on/off time can be occuring relatively quickly, and you change the amount of on time vs the amount of off time, to control the power going in to the heater.
    Regards,
    Aaron

  • Question related to the use of multiple EVDRE's in one sheet

    I am trying to create an input schedule/report (input schedule that has history attached to it for users to reference) which would allow users to input their sales forecasts directly into BPC. However, our challenge is that we have roughly 5,000+ items and 3,000+ customers.  After many attempts, this input schedule will not run/re-fresh when using a single evdre report.  So, I tried to create 2 evdre's.  The first would pull only the customers that had data for the given time period for this particular sales person.  Then, the second evdre report references these customers using the evrng formula within the memberset.  This seems to work great, however, whenever I change the sales person in the current view, then I need to query the report twice (the first time it seems only the first evdre is populated with the current view change, while the second evdre report is queried but not updated for the info from the first.  Then when I query the report the second time the second evdre finally gets updated with the info from the first query.)  This is a slow process, as each time the query runs takes about 2 minutes.  If I break the first evdre report into a separate sheet, then the first query runs fine (in about 10 seconds).  Then, I can query the second report and wait the two minutes for that report.  However, this process is cumbersome (having users access and query two reports rather than one to get the info they need). 
    Can anyone offer any suggestions on how I can get this report/input schedule to work better?

    Hi Todd,
    I fully understand your dilema, we have a lot of development work in this area.  I would have to say though in our experience, the report/input schedule while nice to have has caused more issues than it really solved.  If I had my way, actuals and other memo fields would be removed from the input templates altogether.
    Things to consider are:  the getonly range (for your reported area) is fragile.  No matter how hard you try, a user will find a way to break your input template and over write actuals or other fields they shouldn't.  A fully formatted report is much better than a combined report/template..  Our users are pretty much sold on the all singing, all dancing report we created for them to tie out their inputed numbers.  The input template has become a vehicle to get the numbers in, and as such has been set up to allow for cross referencing their offline models leveraging vlookup, or index etc.
    I haven't helped you iin your quest, but I hope my findings over the past couple of years can help you decide if you cannot find the performance you are looking for.
    Cheers,
    Mark
    Edited by: Mark Tyson on Nov 24, 2009 1:55 PM

  • Re:Question related to the Packet timeout error

    2010-03-08 09:11:05.273 Tangosol Coherence CE 3.2.2/371 <Warning> (thread=PacketPublisher, member=2): Member(Id=3, Timestamp=2010-03-07 12:23:13.958, Address=xxxx, MachineId=5238) was unresponsive for 15369 ms, 93 packets have timed-out, PauseRate=0.0040, Paused=false, Deferring=true, OutstandingPackets=0, DeferredPackets=12, Threshold=512
    2010-03-08 09:19:22.772 Tangosol Coherence CE 3.2.2/371 <Warning> (thread=PacketPublisher, member=2): Member(Id=3, Timestamp=2010-03-07 12:23:13.958, Address=xxxx, MachineId=5238) was unresponsive for 16448 ms, 111 packets have timed-out, PauseRate=0.0042, Paused=false, Deferring=true, OutstandingPackets=0, DeferredPackets=10, Threshold=512
    2010-03-08 09:30:52.651 Tangosol Coherence CE 3.2.2/371 <D5> (thread=PacketPublisher, member=2): Member(Id=3, Timestamp=2010-03-07 12:23:13.958, Address=xxxx, MachineId=5238) was unresponsive for 28 ms, 20 packets have timed-out, PauseRate=0.0042, Paused=false, Deferring=true, OutstandingPackets=0, DeferredPackets=1, Threshold=512
    2010-03-08 09:37:50.583 Tangosol Coherence CE 3.2.2/371 <Warning> (thread=PacketPublisher, member=2): Member(Id=3, Timestamp=2010-03-07 12:23:13.958, Address=xxxx, MachineId=5238) was unresponsive for 10590 ms, 60 packets have timed-out, PauseRate=0.0043, Paused=false, Deferring=true, OutstandingPackets=0, DeferredPackets=5, Threshold=512
    2010-03-08 09:50:00.635 Tangosol Coherence CE 3.2.2/371 <D5> (thread=PacketPublisher, member=2): Member(Id=3, Timestamp=2010-03-07 12:23:13.958, Address=xxxx, MachineId=5238) was unresponsive for 132 ms, 20 packets have timed-out, PauseRate=0.0043, Paused=false, Deferring=true, OutstandingPackets=0, DeferredPackets=1, Threshold=512
    2010-03-08 09:50:19.086 Tangosol Coherence CE 3.2.2/371 <Warning> (thread=PacketPublisher, member=2): Member(Id=3, Timestamp=2010-03-07 12:23:13.958, Address=xxxx, MachineId=5238) was unresponsive for 8954 ms, 73 packets have timed-out, PauseRate=0.0044, Paused=false, Deferring=true, OutstandingPackets=0, DeferredPackets=10, Threshold=512
    1. Will the packet retry if they get this timeout error?
    2. why is the logs timestamp and the packet timestamp is having very large gap nearly 1 day in some cases
    3.How long does the packet wait before it timesout ,i see the unresponsive time varies from 80ms to 10000 ms
    4.When do we get this warnings? is there any remedy?

    Wow Coherence 3.2, I haven't seen that in years, it is a pre-Oracle version. I'd suggest considering an upgrade to 3.5, which should be doable without even recompiling your code, just restart the cluster with new jars.
    But that isn't what you asked. This message was reworded in Coherence 3.3 and later to refer to these events not as packet timeouts, but as rescheduled packets do indicate that they are automatically retried.
    Regarding the timestamp that is the timestamp of the cluster member to which the packet was sent. A members timestamp is the time at which it joined the cluster.
    The default packet retry interval is 200ms, I.e. If we don't get an ACK to a packet in that time we will retransmit it. After 1m of this we will give up and remove either the sender or receiver from the cluster. The time intervals in the log messages are with respect to when the first ACK was expected, so a reported delay of 80ms means it took 280ms to delived a packet.
    These messages highlight periods of failed communication, and usually are the result of garbage collections. Some of yours are quite bad (multiple second), indicating that you've likely overcommited your java heap. The effect of the outages should be poor overall cluster performance and if bad enogh should also cause heavily GCing nodes to be kicked out of the cluster.
    Mark
    Oracle (Tangosol) Coherence

  • Hi guys! I have a question related to the latest version of iMovie. For some reason, when I drag a video file to my project, the audio becomes slightly higher pitched. Any suggestions on how to avoid this? Thanks!

    This is iMovie 10 I believe. Thanks again!! Really appreciate the help!

    To do this in iMovie 11. use the SHARE menu. Share your project using the Share menu and choose Export Using QuickTime.
    In the Dialog box that comes up, choose Sound to AIFF, or one of the other sound options. This will create a file that you can drag into iTubes.

  • Compiler Question related to the instanceof

    Hi Everyone,
    I have come across a paragraph in a book that is a little confusing, I am hoping that somebody out there will be able to help clarify what is meant:
    "Some compilers, such as Sun's JDK, will not allow code to compile if they can determine with the available classes that a particular object cannot possibly inherit from a class specified in instanceof."
    Does this mean that if you test for an instanceof which is false the class will not compile? I don't get this. Any explenations will be greatly appreciated.
    Thanks
    Regards
    Davo

    consider this example:class InstOf {
         static {
              Object obj = null;
              if(obj instanceof Integer){
                   System.out.println("possible, but not true");
              Integer in = null;
              if(in instanceof String){
                   System.out.println("never possible.");
    } run it and see the effect. code fails. second instanceof cannot possibly
    be true, first one may be true.

Maybe you are looking for

  • No link to the local .avi files after exporting Crystal report as .pdf

    Hello all, The overall scenario is like- My application fires a query on SQL Server database and result of that query is stored in a Dataset. This dataset is set as a datasource to the Crystal report.  Now some, records (returned by the query) have .

  • How do i update a ipod 1st generation ?

    How do I update a ipod 1st generation or 2nd generation ?  MB528LL

  • Join Multiple Tables in Forms 9i

    I am attempting to create a tabular form in 9i using two tables. The tables have a one-to-many relationship. The Detail table is the main table for the form and I wish to pull in a column from the master table. It is similar to the example provided i

  • If I need to call back a method more than once....

    will this work?:     methodname( /*Blah*/ ) {         //What it does     anothermethodname( /*Blah*/ ) {         methodname();     }

  • JNLP-file's

    Hi all. I'm trying to make an application Web Startable and came up with the following problem: Due to customers' low-bandwidth Internet connections we have to distribute the software in CDs too. The installation from CD works fine, but the modified