How to diagnose performance problems?

Hi all,
I'm trying to run some basic performance tests of our app with Coherence, and I'm getting some pretty miserable results. I'm obviously missing something very basic about the configuration, but I can't figure out what it is.
For our test app, I'm using 3 machines, all Mac Pros running OSX 10.5. Each JVM is configured with 1G RAM and is running in server mode. We're connected on a gigabit LAN (I ran the datagram test, we get about 108Mb/sec but with high packet loss, around 10-12%). Two of the nodes are storage enabled, the other runs as a client performing an approximation of one of the operations we perform routinely.
The test consists of running a single operation many times. We're developing a card processing system, so I create a bunch of cards (10,000 by default), each of which has about 10 related objects in different caches. The objects are serialised using POF. I write all these to the caches, then perform a single operation for each card. The operation consists of about 14 reads and 6 writes. I can do this about 6-6.5 times per second, for a total of ~120 Coherence ops/sec, which seems extremely low.
During the test, the network tops out at about 1.2M/s, and the CPU at about 35% on the storage nodes and almost unnoticeable on the client. There's clearly something blocking somewhere, but I can't find what it is. The client uses a thread pool of 100 threads and has 100 threads assigned to its distributed service, and the storage nodes also have 100 threads assigned to their distributed services. I also tried giving more threads to the invocation service (since we use VersionedPut a lot), but that didn't seem to help either. I've also created the required indexes.
Any help in diagnosing what the problem would be greatly appreciated. I've attached the config used for the two types of node below.
Cheers,
Colin
Config for storage nodes:
-Dtangosol.coherence.wka=10.1.1.2
-Dtangosol.coherence.override=%HOME%/coherence.override.xml
-Dtangosol.coherence.distributed.localstorage=true
-Dtangosol.coherence.wkaport=8088
-Dtangosol.coherence.distributed.threads=100
<cache-config>
<caching-scheme-mapping>
<cache-mapping>
<cache-name>*</cache-name>
<scheme-name>distributed-scheme</scheme-name>
</cache-mapping>
</caching-scheme-mapping>
<caching-schemes>
<distributed-scheme>
<scheme-name>distributed-scheme</scheme-name>
<service-name>DistributedCache</service-name>
<backing-map-scheme>
<local-scheme>
<scheme-ref>distributed-backing-map</scheme-ref>
</local-scheme>
</backing-map-scheme>
<autostart>true</autostart>
<serializer>
<class-name>runtime.util.protobuf.ProtobufPofContext</class-name>
</serializer>
<backup-count>1</backup-count>
</distributed-scheme>
<local-scheme>
<scheme-name>distributed-backing-map</scheme-name>
<listener>
<class-scheme>
<class-name>service.data.manager.coherence.impl.utilfile.CoherenceBackingMapListener</class-name>
<init-params>
<init-param>
<param-type>com.tangosol.net.BackingMapManagerContext</param-type>
<param-value>{manager-context}</param-value>
</init-param>
<init-param>
<param-type>java.lang.String</param-type>
<param-value>{cache-name}</param-value>
</init-param>
</init-params>
</class-scheme>
</listener>
</local-scheme>
<invocation-scheme>
<service-name>InvocationService</service-name>
<autostart>true</autostart>
</invocation-scheme>
</caching-schemes>
</cache-config>
Config for client node:
-Dtangosol.coherence.wka=10.1.1.2
-Dtangosol.coherence.wkaport=8088
-Dtangosol.coherence.distributed.localstorage=false
<cache-config>
<caching-scheme-mapping>
<cache-mapping>
<cache-name>*</cache-name>
<scheme-name>distributed-scheme</scheme-name>
</cache-mapping>
</caching-scheme-mapping>
<caching-schemes>
<distributed-scheme>
<scheme-name>distributed-scheme</scheme-name>
<service-name>DistributedCache</service-name>
<thread-count>100</thread-count>
<backing-map-scheme>
<local-scheme>
<scheme-ref>distributed-backing-map</scheme-ref>
</local-scheme>
</backing-map-scheme>
<autostart>true</autostart>
<backup-count>1</backup-count>
</distributed-scheme>
<local-scheme>
<scheme-name>distributed-backing-map</scheme-name>
</local-scheme>
<invocation-scheme>
<service-name>InvocationService</service-name>
<autostart>true</autostart>
</invocation-scheme>
</caching-schemes>
</cache-config>

Hi David,
Thanks for the quick response. I'm currently using an executor with 100 threads on the client. I thought that might not be enough since the CPU on the client hardly moves at all, but bumping that up to 1000 didn't change things. If I run the same code with a single Coherence instance in my local machine I get around 110/sec, so I suspect that somewhere in the transport layer something doesn't have enough threads.
The code is somewhat complicated because we have an abstraction layer on top of Coherence. I'll try to post the relevant parts below:
The main loop is pretty straightforward. This is a Runnable that I post to the client executor:
public void run()
Card card = read(dataManager, Card.class, "cardNumber", cardNumber);
assert card != null;
Group group = read(dataManager, Group.class, "id", card.getGroupId());
assert group != null;
Account account = read(dataManager, Account.class, "groupId", group.getId());
assert account != null;
User user = read(dataManager, User.class, "groupId", group.getId());
assert user != null;
ClientUser clientUser = read(dataManager, ClientUser.class, "userId", user.getId());
HoldLog holdLog = createHoldLog(group, account);
account.getCurrentHolds().add(holdLog);
account.setUpdated(now());
write(dataManager, HoldLog.class, holdLog);
ClientUser clientUser2 = read(dataManager, ClientUser.class, "userId", user.getId());
write(dataManager, Account.class, account);
NetworkMessage networkMessage = createNetworkMessage(message, card, group, holdLog);
write(dataManager, NetworkMessage.class, networkMessage);
read does a bit of juggling with our abstraction layer, basically this just gets a ValueExtractor for a named field and then creates an EqualsFilter with it:
private static <V extends Identifiable> V read(DataManager dataManager,
Class<V> valueClass,
String keyField,
Object keyValue)
DataMap<Identifiable> dataMap = dataManager.getDataMap(valueClass.getSimpleName(), valueClass);
FilterFactory filterFactory = dataManager.getFilterFactory();
ValueExtractorFactory extractorFactory = dataManager.getValueExtractorFactory();
Filter<Identifiable> filter = filterFactory.equals(extractorFactory.fieldExtractor(valueClass, keyField), keyValue);
Set<Map.Entry<GUID, Identifiable>> entries = dataMap.entrySet(filter);
if (entries.isEmpty())
return null;
assert entries.size() == 1 : "Expected single entry, found " + entries.size() + " for " + valueClass.getSimpleName();
return valueClass.cast(entries.iterator().next().getValue());
write is trivial:
private static <V extends Identifiable> void write(DataManager dataManager, Class<V> valueClass, V value)
DataMap<Identifiable> dataMap = dataManager.getDataMap(valueClass.getSimpleName(), valueClass);
dataMap.put(value.getId(), value);
And entrySet directly wraps the Coherence call:
public Set<Entry<GUID, V>> entrySet(Filter<V> filter)
validateFilter(filter);
return wrapEntrySet(dataMap.entrySet(((CoherenceFilterAdapter<V>) filter).getCoherenceFilter()));
This just returns a Map.EntrySet implementation that decodes the binary encoded objects.
I'm not really sure how much more code to post - what I have is really just a thin layer over Coherence, and I'm reasonably sure that the main problem isn't there since the CPU hardly moves on the client. I suspect thread starvation at some point, but I'm not sure where to look.
Thanks,
Colin

Similar Messages

  • How to avoid performance problems in PL/SQL?

    How to avoid performance problems in PL/SQL?
    As per my knowledge, below some points to avoid performance proble in PL/SQL.
    Is there other point to avoid performance problems?
    1. Use FORALL instead of FOR, and use BULK COLLECT to avoid looping many times.
    2. EXECUTE IMMEDIATE is faster than DBMS_SQL
    3. Use NOCOPY for OUT and IN OUT if the original value need not be retained. Overhead of keeping a copy of OUT is avoided.

    Susil Kumar Nagarajan wrote:
    1. Group no of functions or procedures into a PACKAGEPutting related functions and procedures into packages is useful from a code organization standpoint. It has nothing whatsoever to do with performance.
    2. Good to use collections in place of cursors that do DML operations on large set of recordsBut using SQL is more efficient than using PL/SQL with bulk collects.
    4. Optimize SQL statements if they need to
    -> Avoid using IN, NOT IN conditions or those cause full table scans in queriesThat is not true.
    -> See to queries they use Indexes properly , sometimes Leading index column is missed out that cause performance overheadAssuming "properly" implies that it is entirely possible that a table scan is more efficient than using an index.
    5. use Oracle HINTS if query can't be further tuned and hints can considerably help youHints should be used only as a last resort. It is almost certainly the case that if you can use a hint that forces a particular plan to improve performance that there is some problem in the underlying statistics that should be fixed in order to resolve issues with many queries rather than just the one you're looking at.
    Justin

  • CUP: How to determine Performance Problem

    Hi All,
    A user have complained that he was getting slow response from GRC server (from CUP as  he was accessing this application). Howerver, other user were able to successfully perform their actions without performance problem. May I know the  best way to find the response times for all the users on a specifc day? I looked into the NWA->Java monitorng->users. Howerver, somehow I am finding information for different dates. I put my desired dates in "Custom" time period, but still I am not getting the details for these dates. Can any one help me in finding these details?
    Regards,
    Faisal

    Faisal,
    If you have solution manager installed on your landscape you can connect GRC as a managed system. If you configure Wily Introscope you have the option to view various graphics regarding performance of your GRC modules. below I upload a picture to clarify what it's look like:
    http://imageshack.us/photo/my-images/526/wilyo.jpg
    I know you probably are looking for something straightforward, but if you have to face with this problems often Wily could be a good tool for you.
    Regards,
    Diego.

  • How to diagnose a problem with my imac graphics card

    I've been having some glitchy graphics when I scroll around a map in some basic gaming. (League of Lengends)
    Is there a way to check if the graphic card is functioning correctly?
    I noticed it after I went from Mt Lion to Mavericks, but that was a while ago and I dont know if that is the cause.
    any help with this would be greatly appreciated
    Thanks

    Hello Mokhtary123 and welcome to Apple Support Communities,
    It will help us diagnose your problem to know the exact model, size, year built, RAM installed and OS you're running.
    But basically your system can't find the boot disk. Usually this is a symptom of a dead/dying/corrupted hard drive;
    A flashing question mark or globe appears when you start your Mac - Apple Support
    OS X Recovery
    http://support.apple.com/en-us/HT4718

  • How to diagnose Acrobat problem

    I've inherited/taken over my precursor's PC, which has FM 10 and CS 5.5 on. So far so good, but it didn't take long to hit a problem: Save as .pdf doesn't work :-{ I just get a couple of seconds' busy cursor, then a sort of bounce as though the entire screen is being redrawn, and that's it. No message, no log and no .pdf output.
    This is the only FM installation in a fairly large company, and it must have been installed by ICT because it's on a closed PC. I'd like to gather as much background information as I can before contacting them.
    Windows 7.0, as far as I know; FrameMaker 10.0.2.419 – just let me know if there's any more information you need.
    Thanks in advance!
    Niels Grundtvig Nielsen

    Niels,
    The SaveAsPDF has been working reasonably reliably in the last releases provided everything is installed correctly and the proper options are enabled.
    First, make certain that the Adobe PDF printer instance is the deafult in the FM session (use the SetPrint utility to ensure that it is).
    If you already had Acrobat installed prior to installing FM, then the default FM instalation also installs the PDFCreator add-on (you have to manually deselect it - very bad design on Adobe's part), which will hose the Acrobat installation. Try running the Repair option (under Help menu) in Acrobat. If that doesn't work, you may have to go through a re-install cycle.
    I also keep running into the "rely on system fonts" error message every so often. It seems like any Acrobat update that comes out resets the defaults the wrong way.

  • How to diagnose speed problems.

    A year ago my computer was running terriblyslow.  I took it to the genuis at the apple store and he ran a script that showed what was going on in the background.  He noticed Spotify was running and open/close script constantly over and over using up RAM.  I scraped Spotify and it worked great.
    Now my computer is running slow again and I'd like to be able to run and understand that script.  Can anyone explain how to do it and what to look for?

    Thanks for the replies.
    capacity = 999.35 GB
    Available = 492.54 GB
    The most I run is having a browser (sometimes 2) open while using photoshop or LR.  I mostly notice the slowness when opening or closing an application.  Sometimes it takes up to 2 minutes to open photoshop (CC) where as it usuallly only takes a few seconds. 
    Applications I normally run: mail, chrome, Firefox, Photoshop, Lightroom.
    4 GB 1067 Mhz RAM (factory)
    No antivirus.
    No crapwear I'm aware of.
    Thanks again.

  • Imac crashes daily, how can diagnose the problem

    My imac is crashing (Black screen) once to maybe 3 times daily. I think it's a kernel panic, but I'm not sure.
    I'm not sure if this is the information needed. It's from the Console/System Diagnostic reports/Kernel_2013-10-07-085723-imac-3.panic. Can anyone translate this for me? If this is not the right information, where would I find the right information. Thanks
    Mon Oct  7 08:57:23 2013
    panic(cpu 0 caller 0x5df48c97): NVRM[0/1:0:0]: Read Error 0x0000336c: CFG 0x060910de 0x20100406 0xe2000000, BAR0 0xe2000000 0x5ea5c000 0x092480a2, D0, P3/4
    Backtrace (CPU 0), Frame : Return Address (4 potential args on stack)
    0x5c7f3728 : 0x21b837 (0x5dd7fc 0x5c7f375c 0x223ce1 0x0)
    0x5c7f3778 : 0x5df48c97 (0x5e15e22c 0x5e1ce840 0x5e16cf88 0x0)
    0x5c7f3818 : 0x5e749a7d (0x8be7804 0x7411004 0x336c 0x5df38774)
    0x5c7f3858 : 0x5e72293b (0x7411004 0x336c 0x9f74804 0x0)
    0x5c7f38c8 : 0x5e72f273 (0x7411004 0x9da4004 0xa 0x5c7f391c)
    0x5c7f39e8 : 0x5e0cebe3 (0x7411004 0x9da4004 0x5c7f3af0 0x5c7f3af0)
    0x5c7f3b28 : 0x5e0cf58d (0x7411004 0x9db1c04 0x0 0x0)
    0x5c7f3bb8 : 0x5e76c1b7 (0x7411004 0x9db1c04 0xd 0x2)
    0x5c7f3cc8 : 0x5e7711e7 (0x7411004 0x9ced004 0x0 0x0)
    0x5c7f3df8 : 0x5e082258 (0x7411004 0x749d004 0x0 0x0)
    0x5c7f3e38 : 0x5df51e2b (0x7411004 0x749d004 0x0 0x0)
    0x5c7f3ed8 : 0x553ec7 (0x0 0x9e4cf00 0x1 0x2275c6)
    0x5c7f3f28 : 0x552ea6 (0x9e4cf00 0x0 0x0 0x0)
    0x5c7f3f88 : 0x552eea (0x8c85280 0x8c85280 0x84cb3bf0 0x7fff)
    0x5c7f3fc8 : 0x2a179c (0x8c85280 0x0 0x10 0x994fc24)
          Kernel Extensions in backtrace (with dependencies):
             com.apple.nvidia.nv50hal(6.3.6)@0x5e647000->0x5ea5bfff
                dependency: com.apple.NVDAResman(6.3.6)@0x5dee2000
             com.apple.NVDAResman(6.3.6)@0x5dee2000->0x5e1cffff
                dependency: com.apple.iokit.IOPCIFamily(2.6.5)@0x55a02000
                dependency: com.apple.iokit.IONDRVSupport(2.2.1)@0x5ce34000
                dependency: com.apple.iokit.IOGraphicsFamily(2.2.1)@0x55668000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    10K549
    Kernel version:
    Darwin Kernel Version 10.8.0: Tue Jun  7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386
    System model name: iMac8,1 (Mac-F227BEC8)
    System uptime in nanoseconds: 81510992370745
    unloaded kexts:
    (none)
    loaded kexts:
    org.virtualbox.kext.VBoxNetAdp          4.1.18
    org.virtualbox.kext.VBoxNetFlt          4.1.18
    org.virtualbox.kext.VBoxUSB          4.1.18
    org.virtualbox.kext.VBoxDrv          4.1.18
    com.bresink.driver.BRESINKx86Monitoring          2.0
    com.vmware.kext.vmnet          3.1.2
    com.vmware.kext.vmioplug          3.1.2
    com.vmware.kext.vmci          3.1.2
    com.vmware.kext.vmx86          3.1.2
    com.kensington.mouseworks.driver.VirtualMouse          3.0
    com.kensington.mouseworks.iokit.KensingtonMouseDriver          3.0
    com.pctools.iantivirus.kfs          1.0.1
    com.makemkv.kext.daspi          1
    com.airgrab.driver.AirGrabFirewallModule          3.0
    com.Logitech.Control Center.HID Driver          3.3.0
    com.seagate.driver.PowSecLeafDriver_10_5          5.2.2
    com.seagate.driver.PowSecLeafDriver_10_4          5.2.2
    com.roxio.BluRaySupport          1.1.6
    com.seagate.driver.PowSecDriverCore          5.2.2
    com.apple.driver.AppleBluetoothMultitouch          54.3 - last loaded 337546357843
    com.apple.filesystems.msdosfs          1.6.3
    com.apple.filesystems.udf          2.1.1
    com.apple.driver.AppleHWSensor          1.9.3d0
    com.apple.filesystems.autofs          2.1.0
    com.apple.driver.AppleTyMCEDriver          1.0.2d2
    com.apple.driver.InternalModemSupport          2.6.2
    com.apple.driver.AudioAUUC          1.57
    com.apple.driver.AppleUpstreamUserClient          3.5.7
    com.apple.driver.AppleIntelYonahProfile          14
    com.apple.driver.AppleMCCSControl          1.0.20
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AppleIntelPenrynProfile          17
    com.apple.driver.AppleGraphicsControl          2.10.6
    com.apple.GeForce          6.3.6
    com.apple.driver.AppleHDA          2.0.5f14
    com.apple.driver.AudioIPCDriver          1.1.6
    com.apple.driver.AirPortBrcm43xx          423.91.27
    com.apple.driver.AppleIntelNehalemProfile          11
    com.apple.driver.AppleLPC          1.5.1
    com.apple.driver.AppleBacklight          170.0.46
    com.apple.iokit.AppleYukon2          3.2.1b1
    com.apple.driver.AirPortBrcm43224          428.42.4
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.7.0a1
    com.apple.driver.AppleIntelMeromProfile          19
    com.apple.driver.AppleIRController          303.8
    com.apple.driver.StorageLynx          2.6.1
    com.apple.driver.Oxford_Semi          2.6.1
    com.apple.driver.LSI_FW_500          2.6.1
    com.apple.driver.IOFireWireSerialBusProtocolSansPhysicalUnit          2.6.1
    com.apple.driver.initioFWBridge          2.6.1
    com.apple.iokit.SCSITaskUserClient          2.6.8
    com.apple.driver.PioneerSuperDrive          2.6.1
    com.apple.iokit.IOAHCIBlockStorage          1.6.4
    com.apple.driver.AppleFWOHCI          4.7.3
    com.apple.driver.AppleAHCIPort          2.1.7
    com.apple.driver.AppleIntelPIIXATA          2.5.1
    com.apple.driver.AppleUSBHub          4.2.4
    com.apple.BootCache          31.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.driver.AppleEFINVRAM          1.4.0
    com.apple.driver.AppleUSBEHCI          4.2.4
    com.apple.driver.AppleUSBUHCI          4.2.0
    com.apple.driver.AppleRTC          1.3.1
    com.apple.driver.AppleHPET          1.5
    com.apple.driver.AppleACPIButtons          1.3.6
    com.apple.driver.AppleSMBIOS          1.7
    com.apple.driver.AppleACPIEC          1.3.6
    com.apple.driver.AppleAPIC          1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient          142.6.0
    com.apple.security.sandbox          1
    com.apple.security.quarantine          0
    com.apple.nke.applicationfirewall          2.1.14
    com.apple.driver.AppleIntelCPUPowerManagement          142.6.0
    com.apple.driver.IOBluetoothHIDDriver          2.4.5f3
    com.apple.driver.AppleMultitouchDriver          207.11
    com.apple.driver.AppleProfileReadCounterAction          17
    com.apple.driver.AppleProfileTimestampAction          10
    com.apple.driver.AppleProfileThreadInfoAction          14
    com.apple.driver.AppleProfileRegisterStateAction          10
    com.apple.driver.AppleProfileKEventAction          10
    com.apple.driver.AppleProfileCallstackAction          20
    com.apple.iokit.IOSurface          74.2
    com.apple.iokit.IOBluetoothSerialManager          2.4.5f3
    com.apple.iokit.IOSerialFamily          10.0.3
    com.apple.driver.AppleHDAHardwareConfigDriver          2.0.5f14
    com.apple.driver.DspFuncLib          2.0.5f14
    com.apple.iokit.IOAudioFamily          1.8.3fc2
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.AppleBacklightExpert          1.0.1
    com.apple.nvidia.nv50hal          6.3.6
    com.apple.NVDAResman          6.3.6
    com.apple.iokit.IONDRVSupport          2.2.1
    com.apple.iokit.IOFireWireIP          2.0.3
    com.apple.driver.AppleHDAController          2.0.5f14
    com.apple.iokit.IOGraphicsFamily          2.2.1
    com.apple.iokit.IOHDAFamily          2.0.5f14
    com.apple.iokit.IO80211Family          320.1
    com.apple.iokit.IONetworkingFamily          1.10
    com.apple.driver.IOPlatformPluginFamily          4.7.0a1
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.driver.AppleSMC          3.1.0d5
    com.apple.iokit.AppleProfileFamily          41
    com.apple.driver.AppleUSBHIDKeyboard          141.5
    com.apple.driver.AppleHIDKeyboard          141.5
    com.apple.driver.BroadcomUSBBluetoothHCIController          2.4.5f3
    com.apple.driver.AppleUSBBluetoothHCIController          2.4.5f3
    com.apple.iokit.IOBluetoothFamily          2.4.5f3
    com.apple.iokit.IOUSBHIDDriver          4.2.0
    com.apple.iokit.IOUSBMassStorageClass          2.6.7
    com.apple.driver.AppleUSBMergeNub          4.2.4
    com.apple.driver.AppleUSBComposite          3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          2.6.8
    com.apple.iokit.IOBDStorageFamily          1.6
    com.apple.iokit.IODVDStorageFamily          1.6
    com.apple.iokit.IOCDStorageFamily          1.6.1
    com.apple.driver.XsanFilter          402.1
    com.apple.iokit.IOFireWireSerialBusProtocolTransport          2.1.0
    com.apple.iokit.IOFireWireSBP2          4.0.6
    com.apple.iokit.IOSCSIBlockCommandsDevice          2.6.8
    com.apple.iokit.IOATAPIProtocolTransport          2.5.1
    com.apple.iokit.IOSCSIArchitectureModelFamily          2.6.8
    com.apple.iokit.IOFireWireFamily          4.2.6
    com.apple.iokit.IOAHCIFamily          2.0.6
    com.apple.iokit.IOATAFamily          2.5.1
    com.apple.iokit.IOUSBUserClient          4.2.4
    com.apple.driver.AppleFileSystemDriver          2.0
    com.apple.iokit.IOUSBFamily          4.2.4
    com.apple.driver.AppleEFIRuntime          1.4.0
    com.apple.iokit.IOHIDFamily          1.6.6
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.TMSafetyNet          6
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.driver.DiskImages          289
    com.apple.iokit.IOStorageFamily          1.6.3
    com.apple.driver.AppleACPIPlatform          1.3.6
    com.apple.iokit.IOPCIFamily          2.6.5
    com.apple.iokit.IOACPIFamily          1.3.0

    Thanks for the reply. I do have more reports. Here are 4. They are oldest first.
    The Crash Reports did not always come up after restarting. I'm not sure why.
    Thanks for the help.
    Sept 12
    Interval Since Last Panic Report:  28485426 sec
    Panics Since Last Report:          1
    Anonymous UUID:                    7C83D2C1-7F6C-4719-B712-D7C377C8A24D
    Thu Sep 12 13:11:11 2013
    panic(cpu 1 caller 0x5e03ac97): NVRM[0/1:0:0]: Read Error 0x00070000: CFG 0xffffffff 0xffffffff 0xffffffff, BAR0 0xe2000000 0x5eb4e000 0x092480a2, D0, P3/4
    Backtrace (CPU 1), Frame : Return Address (4 potential args on stack)
    0x5da71c88 : 0x21b837 (0x5dd7fc 0x5da71cbc 0x223ce1 0x0)
    0x5da71cd8 : 0x5e03ac97 (0x5e25022c 0x5e2c0840 0x5e25ef88 0x0)
    0x5da71d78 : 0x5e83ba7d (0x8a75c04 0x73d5004 0x70000 0x5e032fa0)
    0x5da71db8 : 0x5e74ce03 (0x73d5004 0x70000 0x5da71dd4 0x0)
    0x5da71e08 : 0x5e8296ab (0x73d5004 0x9eff004 0x1 0x1)
    0x5da71ed8 : 0x5e8314c0 (0x73d5004 0xb027004 0x0 0x1)
    0x5da71fe8 : 0x5e1c0ca2 (0x73d5004 0xb027004 0x5da7203c 0x5da720f0)
    0x5da72128 : 0x5e1c158d (0x73d5004 0x7b3fc04 0x0 0x0)
    0x5da721b8 : 0x5e85dff7 (0x73d5004 0x7b3fc04 0xd 0x2)
    0x5da722c8 : 0x5e8631e7 (0x73d5004 0x7bc3804 0x0 0x0)
    0x5da723f8 : 0x5e174258 (0x73d5004 0x78dc004 0x0 0x0)
    0x5da72438 : 0x5e043e2b (0x73d5004 0x78dc004 0x0 0x0)
    0x5da724d8 : 0x5e04050a (0x0 0x9 0x0 0x0)
    0x5da72688 : 0x5e042467 (0x0 0x600d600d 0x7029 0x5da726b8)
    0x5da72758 : 0x5d922e99 (0xc1d00051 0xbeef0003 0x87f3a00 0x87f3a00)
    0x5da727a8 : 0x5d922fce (0x46dcb000 0x87f3a00 0x2301e000 0x0)
    0x5da727d8 : 0x5d8fa484 (0x46dcb000 0x87f3a00 0x2301e000 0x0)
    0x5da727f8 : 0x5d91beb2 (0x46dcb000 0x722e800 0x5da72828 0x55f3f4)
    0x5da72838 : 0x5d91bccd (0x46dcb000 0x722e800 0x5da72868 0x506769)
    0x5da72868 : 0x5d91bc45 (0x46dcb000 0x7e01980 0x722e800 0x0)
    0x5da72898 : 0x5d91bfa7 (0x46dcb000 0x7e01980 0x7f68800 0x0)
    0x5da728b8 : 0x5d93ebce (0x7e01980 0x7f68800 0x626 0x139bb800)
    0x5da728e8 : 0x5d93d1a1 (0x47181000 0x47181788 0x1 0x2209aa)
    0x5da72908 : 0x5d90488f (0x47181000 0x47181788 0xa6d41c0 0x507617)
    0x5da72938 : 0x5d93ec64 (0x47181000 0x5da72a7c 0x5da72968 0x47181000)
    0x5da72978 : 0x5d908c93 (0x47181000 0x5da72a7c 0x5da72a7c 0x5da729e0)
    0x5da72ab8 : 0x5d9425d8 (0x47181000 0x1 0x5da72bcc 0x5da72bc8)
    0x5da72b68 : 0x5d904fe1 (0x47181000 0x1 0x5da72bcc 0x5da72bc8)
    0x5da72be8 : 0x56da06 (0x47181000 0x0 0x5da72e3c 0x5da72c74)
    0x5da72c38 : 0x56e2a5 (0x5d993720 0x47181000 0x9259788 0x1)
    0x5da72c88 : 0x56eb59 (0x47181000 0x10 0x5da72cd0 0x0)
    0x5da72da8 : 0x286638 (0x47181000 0x10 0x9259788 0x1)
    0x5da73e58 : 0x21dbe5 (0x9259760 0x98215a0 0x12c778 0x38993)
    0x5da73e98 : 0x210a86 (0x9259700 0x0 0x7f8b8c0 0x9096f10)
    0x5da73ef8 : 0x216f84 (0x9259700 0x0 0x0 0x0)
    0x5da73f78 : 0x295c57 (0x9ad6368 0x0 0x0 0x0)
    0x5da73fc8 : 0x2a256d (0x9ad6364 0x2 0x10 0x9ad6364)
          Kernel Extensions in backtrace (with dependencies):
             com.apple.GeForce(6.3.6)@0x5d8f9000->0x5d9affff
                dependency: com.apple.NVDAResman(6.3.6)@0x5dfd4000
                dependency: com.apple.iokit.IONDRVSupport(2.2.1)@0x55643000
                dependency: com.apple.iokit.IOPCIFamily(2.6.5)@0x559ca000
                dependency: com.apple.iokit.IOGraphicsFamily(2.2.1)@0x5cddc000
             com.apple.nvidia.nv50hal(6.3.6)@0x5e739000->0x5eb4dfff
                dependency: com.apple.NVDAResman(6.3.6)@0x5dfd4000
             com.apple.NVDAResman(6.3.6)@0x5dfd4000->0x5e2c1fff
                dependency: com.apple.iokit.IOPCIFamily(2.6.5)@0x559ca000
                dependency: com.apple.iokit.IONDRVSupport(2.2.1)@0x55643000
                dependency: com.apple.iokit.IOGraphicsFamily(2.2.1)@0x5cddc000
    BSD process name corresponding to current thread: Safari
    Mac OS version:
    10K549
    Kernel version:
    Darwin Kernel Version 10.8.0: Tue Jun  7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386
    System model name: iMac8,1 (Mac-F227BEC8)
    System uptime in nanoseconds: 248930691666315
    unloaded kexts:
    com.seagate.driver.PowSecLeafDriver_10_4          5.2.2 (addr 0x5c70f000, size 0x16384) - last unloaded 238309029785429
    loaded kexts:
    org.virtualbox.kext.VBoxNetAdp          4.1.18 - last loaded 193895133420921
    org.virtualbox.kext.VBoxNetFlt          4.1.18
    org.virtualbox.kext.VBoxUSB          4.1.18
    org.virtualbox.kext.VBoxDrv          4.1.18
    com.bresink.driver.BRESINKx86Monitoring          2.0
    com.vmware.kext.vmnet          3.1.2
    com.vmware.kext.vmioplug          3.1.2
    com.vmware.kext.vmci          3.1.2
    com.vmware.kext.vmx86          3.1.2
    com.kensington.mouseworks.driver.VirtualMouse          3.0
    com.pctools.iantivirus.kfs          1.0.1
    com.kensington.trackballworks.driver          1.0.0
    com.kensington.mouseworks.iokit.KensingtonMouseDriver          3.0
    com.makemkv.kext.daspi          1
    com.airgrab.driver.AirGrabFirewallModule          3.0
    com.seagate.driver.PowSecLeafDriver_10_5          5.2.2
    com.seagate.driver.PowSecDriverCore          5.2.2
    com.apple.filesystems.udf          2.1.1
    com.apple.driver.AppleHWSensor          1.9.3d0
    com.apple.driver.AudioAUUC          1.57
    com.apple.filesystems.autofs          2.1.0
    com.apple.driver.AppleUpstreamUserClient          3.5.7
    com.apple.driver.AppleMCCSControl          1.0.20
    com.apple.driver.AppleIntelPenrynProfile          17
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.GeForce          6.3.6
    com.apple.driver.AudioIPCDriver          1.1.6
    com.apple.driver.AppleHDA          2.0.5f14
    com.apple.driver.AppleBluetoothMultitouch          54.3
    com.apple.iokit.AppleYukon2          3.2.1b1
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.7.0a1
    com.apple.driver.AppleLPC          1.5.1
    com.apple.driver.AppleBacklight          170.0.46
    com.apple.driver.AirPortBrcm43224          428.42.4
    com.apple.driver.AppleIRController          303.8
    com.apple.driver.Oxford_Semi          2.6.1
    com.apple.iokit.SCSITaskUserClient          2.6.8
    com.apple.iokit.IOAHCIBlockStorage          1.6.4
    com.apple.driver.AppleUSBHub          4.2.4
    com.apple.BootCache          31.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.driver.AppleEFINVRAM          1.4.0
    com.apple.driver.AppleAHCIPort          2.1.7
    com.apple.driver.AppleIntelPIIXATA          2.5.1
    com.apple.driver.AppleFWOHCI          4.7.3
    com.apple.driver.AppleUSBEHCI          4.2.4
    com.apple.driver.AppleUSBUHCI          4.2.0
    com.apple.driver.AppleRTC          1.3.1
    com.apple.driver.AppleHPET          1.5
    com.apple.driver.AppleACPIButtons          1.3.6
    com.apple.driver.AppleSMBIOS          1.7
    com.apple.driver.AppleACPIEC          1.3.6
    com.apple.driver.AppleAPIC          1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient          142.6.0
    com.apple.security.sandbox          1
    com.apple.security.quarantine          0
    com.apple.nke.applicationfirewall          2.1.14
    com.apple.driver.AppleIntelCPUPowerManagement          142.6.0
    com.apple.driver.AppleProfileReadCounterAction          17
    com.apple.driver.AppleProfileTimestampAction          10
    com.apple.driver.AppleProfileThreadInfoAction          14
    com.apple.driver.AppleProfileRegisterStateAction          10
    com.apple.driver.AppleProfileKEventAction          10
    com.apple.driver.AppleProfileCallstackAction          20
    com.apple.iokit.IOSurface          74.2
    com.apple.iokit.IOBluetoothSerialManager          2.4.5f3
    com.apple.iokit.IOSerialFamily          10.0.3
    com.apple.driver.DspFuncLib          2.0.5f14
    com.apple.iokit.IOAudioFamily          1.8.3fc2
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.IOBluetoothHIDDriver          2.4.5f3
    com.apple.driver.AppleMultitouchDriver          207.11
    com.apple.nvidia.nv50hal          6.3.6
    com.apple.NVDAResman          6.3.6
    com.apple.iokit.IOFireWireIP          2.0.3
    com.apple.iokit.AppleProfileFamily          41
    com.apple.driver.AppleSMC          3.1.0d5
    com.apple.driver.IOPlatformPluginFamily          4.7.0a1
    com.apple.driver.AppleBacklightExpert          1.0.1
    com.apple.iokit.IONDRVSupport          2.2.1
    com.apple.driver.AppleHDAController          2.0.5f14
    com.apple.iokit.IOGraphicsFamily          2.2.1
    com.apple.iokit.IOHDAFamily          2.0.5f14
    com.apple.iokit.IO80211Family          320.1
    com.apple.iokit.IONetworkingFamily          1.10
    com.apple.driver.AppleUSBHIDKeyboard          141.5
    com.apple.driver.AppleHIDKeyboard          141.5
    com.apple.iokit.IOUSBHIDDriver          4.2.0
    com.apple.driver.BroadcomUSBBluetoothHCIController          2.4.5f3
    com.apple.driver.AppleUSBBluetoothHCIController          2.4.5f3
    com.apple.iokit.IOBluetoothFamily          2.4.5f3
    com.apple.iokit.IOUSBMassStorageClass          2.6.7
    com.apple.driver.AppleUSBMergeNub          4.2.4
    com.apple.driver.AppleUSBComposite          3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          2.6.8
    com.apple.iokit.IOBDStorageFamily          1.6
    com.apple.iokit.IODVDStorageFamily          1.6
    com.apple.iokit.IOCDStorageFamily          1.6.1
    com.apple.iokit.IOATAPIProtocolTransport          2.5.1
    com.apple.driver.XsanFilter          402.1
    com.apple.iokit.IOFireWireSerialBusProtocolTransport          2.1.0
    com.apple.iokit.IOFireWireSBP2          4.0.6
    com.apple.iokit.IOSCSIBlockCommandsDevice          2.6.8
    com.apple.iokit.IOSCSIArchitectureModelFamily          2.6.8
    com.apple.iokit.IOUSBUserClient          4.2.4
    com.apple.iokit.IOAHCIFamily          2.0.6
    com.apple.iokit.IOATAFamily          2.5.1
    com.apple.iokit.IOFireWireFamily          4.2.6
    com.apple.iokit.IOUSBFamily          4.2.4
    com.apple.driver.AppleEFIRuntime          1.4.0
    com.apple.iokit.IOHIDFamily          1.6.6
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.TMSafetyNet          6
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.driver.DiskImages          289
    com.apple.iokit.IOStorageFamily          1.6.3
    com.apple.driver.AppleACPIPlatform          1.3.6
    com.apple.iokit.IOPCIFamily          2.6.5
    com.apple.iokit.IOACPIFamily          1.3.0
    Model: iMac8,1, BootROM IM81.00C1.B00, 2 processors, Intel Core 2 Duo, 3.06 GHz, 4 GB, SMC 1.30f1
    Graphics: NVIDIA GeForce 8800 GS, NVIDIA GeForce 8800 GS, PCIe, 512 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8C), Broadcom BCM43xx 1.0 (5.10.131.42.4)
    Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Network Service: Ethernet, Ethernet, en0
    Network Service: USB Ethernet (en2), Ethernet, en2
    Serial ATA Device: ST3500418ASQ, 465.76 GB
    Parallel ATA Device: PIONEER DVD-RW  DVR-K06A, 3.7 GB
    USB Device: USB 2.0 Hub [MTT], 0x1a40  (TERMINUS TECHNOLOGY INC.), 0x0201, 0xfa200000 / 2
    USB Device: USB to Serial-ATA bridge, 0x1bcf  (Sunplus Innovation Technology Inc.), 0x0c31, 0xfa240000 / 3
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8502, 0xfd400000 / 3
    USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0608, 0xfd100000 / 2
    USB Device: Ext HDD 1021, 0x1058  (Western Digital Technologies, Inc.), 0x1021, 0xfd130000 / 7
    USB Device: External, 0x13fd  (Initio Corporation), 0x1840, 0xfd110000 / 6
    USB Device: EPSON WorkForce 845 Series, 0x04b8  (Seiko Epson Corp.), 0x0892, 0xfd120000 / 5
    USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0608, 0xfd140000 / 4
    USB Device: Kensington Expert Mouse, 0x047d  (Kensington), 0x1020, 0xfd144000 / 11
    USB Device: External, 0x13fd  (Initio Corporation), 0x1840, 0xfd143000 / 10
    USB Device: GoFlex Desk, 0x0bc2  (Seagate LLC), 0x50a7, 0xfd142000 / 9
    USB Device: Keyboard Hub, 0x05ac  (Apple Inc.), 0x1006, 0xfd141000 / 8
    USB Device: Apple Keyboard, 0x05ac  (Apple Inc.), 0x0220, 0xfd141200 / 12
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x1a100000 / 2
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x820f, 0x1a110000 / 5
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x5d100000 / 2
    FireWire Device: d2 Quadra v3C, LaCie, Up to 800 Mb/sec
    FireWire Device: My Passport 071D, WD, Up to 800 Mb/sec
    Oct 8
    Interval Since Last Panic Report:  2148285 sec
    Panics Since Last Report:          2
    Anonymous UUID:                    7C83D2C1-7F6C-4719-B712-D7C377C8A24D
    Tue Oct  8 21:18:25 2013
    panic(cpu 1 caller 0x5dacdc97): NVRM[0/1:0:0]: Read Error 0x00002500: CFG 0x060910de 0x00100406 0xe2000000, BAR0 0xe2000000 0x5e5e1000 0x092480a2, D0, P3/4
    Backtrace (CPU 1), Frame : Return Address (4 potential args on stack)
    0x5bd73768 : 0x21b837 (0x5dd7fc 0x5bd7379c 0x223ce1 0x0)
    0x5bd737b8 : 0x5dacdc97 (0x5dce322c 0x5dd53840 0x5dcf1f88 0x0)
    0x5bd73858 : 0x5e2cea7d (0x955e804 0x79d2004 0x2500 0x79d2004)
    0x5bd73898 : 0x5e2bfd5e (0x79d2004 0x2500 0x0 0x0)
    0x5bd73918 : 0x5e2b6132 (0x79d2004 0x9606804 0x41 0x5bd73950)
    0x5bd73a38 : 0x5dbd3b4d (0x79d2004 0x9606804 0x712200c 0x200)
    0x5bd73a78 : 0x5dc52cee (0x79d2004 0x9606804 0xc57a0c8 0xc57a004)
    0x5bd73b28 : 0x5dc542df (0x79d2004 0x9605404 0x0 0x0)
    0x5bd73bb8 : 0x5e2f11b7 (0x79d2004 0x9605404 0xd 0x2)
    0x5bd73cc8 : 0x5e2f61e7 (0x79d2004 0x94f2404 0x0 0x0)
    0x5bd73df8 : 0x5dc07258 (0x79d2004 0x7943004 0x0 0x0)
    0x5bd73e38 : 0x5dad6e2b (0x79d2004 0x7943004 0x0 0x0)
    0x5bd73ed8 : 0x553ec7 (0x0 0x973e180 0x1 0x2a0577)
    0x5bd73f28 : 0x552ea6 (0x973e180 0x0 0x0 0xffffffff)
    0x5bd73f88 : 0x552eea (0x8aa6a80 0x8e65000 0x5bd73fc8 0x4d45e9)
    0x5bd73fc8 : 0x2a179c (0x8aa6a80 0x0 0x10 0x8e1c704)
          Kernel Extensions in backtrace (with dependencies):
             com.apple.nvidia.nv50hal(6.3.6)@0x5e1cc000->0x5e5e0fff
                dependency: com.apple.NVDAResman(6.3.6)@0x5da67000
             com.apple.NVDAResman(6.3.6)@0x5da67000->0x5dd54fff
                dependency: com.apple.iokit.IOPCIFamily(2.6.5)@0x55a02000
                dependency: com.apple.iokit.IONDRVSupport(2.2.1)@0x5ccf9000
                dependency: com.apple.iokit.IOGraphicsFamily(2.2.1)@0x5d5e2000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    10K549
    Kernel version:
    Darwin Kernel Version 10.8.0: Tue Jun  7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386
    System model name: iMac8,1 (Mac-F227BEC8)
    System uptime in nanoseconds: 130159889729611
    unloaded kexts:
    (none)
    loaded kexts:
    com.vmware.kext.vmnet          3.1.2
    com.vmware.kext.vmioplug          3.1.2
    com.vmware.kext.vmci          3.1.2
    com.vmware.kext.vmx86          3.1.2
    org.virtualbox.kext.VBoxNetAdp          4.1.18
    org.virtualbox.kext.VBoxNetFlt          4.1.18
    org.virtualbox.kext.VBoxUSB          4.1.18
    org.virtualbox.kext.VBoxDrv          4.1.18
    com.bresink.driver.BRESINKx86Monitoring          2.0
    com.kensington.mouseworks.driver.VirtualMouse          3.0
    com.kensington.mouseworks.iokit.KensingtonMouseDriver          3.0
    com.pctools.iantivirus.kfs          1.0.1
    com.makemkv.kext.daspi          1
    com.Logitech.Control Center.HID Driver          3.3.0
    com.seagate.driver.PowSecLeafDriver_10_5          5.2.2
    com.seagate.driver.PowSecLeafDriver_10_4          5.2.2
    com.roxio.BluRaySupport          1.1.6
    com.seagate.driver.PowSecDriverCore          5.2.2
    com.apple.driver.IOBluetoothBNEPDriver          2.4.5f3 - last loaded 1918336405847
    com.apple.driver.AppleUSBCDC          4.0.5
    com.apple.filesystems.udf          2.1.1
    com.apple.filesystems.msdosfs          1.6.3
    com.apple.driver.AppleHWSensor          1.9.3d0
    com.apple.filesystems.autofs          2.1.0
    com.apple.driver.AppleTyMCEDriver          1.0.2d2
    com.apple.driver.InternalModemSupport          2.6.2
    com.apple.driver.AudioAUUC          1.57
    com.apple.driver.AppleIntelYonahProfile          14
    com.apple.driver.AppleUpstreamUserClient          3.5.7
    com.apple.driver.AppleIntelPenrynProfile          17
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AppleMCCSControl          1.0.20
    com.apple.driver.AppleIntelNehalemProfile          11
    com.apple.driver.AppleHDA          2.0.5f14
    com.apple.driver.AudioIPCDriver          1.1.6
    com.apple.driver.AirPortBrcm43xx          423.91.27
    com.apple.driver.AppleGraphicsControl          2.10.6
    com.apple.GeForce          6.3.6
    com.apple.iokit.AppleYukon2          3.2.1b1
    com.apple.driver.AppleIntelMeromProfile          19
    com.apple.driver.AirPortBrcm43224          428.42.4
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.7.0a1
    com.apple.driver.AppleLPC          1.5.1
    com.apple.driver.AppleBacklight          170.0.46
    com.apple.driver.AppleBluetoothMultitouch          54.3
    com.apple.driver.AppleIRController          303.8
    com.apple.driver.StorageLynx          2.6.1
    com.apple.driver.Oxford_Semi          2.6.1
    com.apple.driver.LSI_FW_500          2.6.1
    com.apple.driver.IOFireWireSerialBusProtocolSansPhysicalUnit          2.6.1
    com.apple.driver.initioFWBridge          2.6.1
    com.apple.iokit.SCSITaskUserClient          2.6.8
    com.apple.driver.PioneerSuperDrive          2.6.1
    com.apple.iokit.IOAHCIBlockStorage          1.6.4
    com.apple.driver.AppleFWOHCI          4.7.3
    com.apple.driver.AppleUSBHub          4.2.4
    com.apple.driver.AppleAHCIPort          2.1.7
    com.apple.driver.AppleIntelPIIXATA          2.5.1
    com.apple.BootCache          31.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.driver.AppleEFINVRAM          1.4.0
    com.apple.driver.AppleUSBEHCI          4.2.4
    com.apple.driver.AppleUSBUHCI          4.2.0
    com.apple.driver.AppleRTC          1.3.1
    com.apple.driver.AppleHPET          1.5
    com.apple.driver.AppleACPIButtons          1.3.6
    com.apple.driver.AppleSMBIOS          1.7
    com.apple.driver.AppleACPIEC          1.3.6
    com.apple.driver.AppleAPIC          1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient          142.6.0
    com.apple.security.sandbox          1
    com.apple.security.quarantine          0
    com.apple.nke.applicationfirewall          2.1.14
    com.apple.driver.AppleIntelCPUPowerManagement          142.6.0
    com.apple.driver.AppleProfileReadCounterAction          17
    com.apple.driver.AppleProfileTimestampAction          10
    com.apple.driver.AppleProfileThreadInfoAction          14
    com.apple.driver.AppleProfileRegisterStateAction          10
    com.apple.driver.AppleProfileKEventAction          10
    com.apple.driver.AppleProfileCallstackAction          20
    com.apple.iokit.IOSurface          74.2
    com.apple.iokit.IOBluetoothSerialManager          2.4.5f3
    com.apple.iokit.IOSerialFamily          10.0.3
    com.apple.driver.AppleHDAHardwareConfigDriver          2.0.5f14
    com.apple.driver.DspFuncLib          2.0.5f14
    com.apple.iokit.IOAudioFamily          1.8.3fc2
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.iokit.IOFireWireIP          2.0.3
    com.apple.iokit.AppleProfileFamily          41
    com.apple.driver.AppleHDAController          2.0.5f14
    com.apple.iokit.IOHDAFamily          2.0.5f14
    com.apple.iokit.IO80211Family          320.1
    com.apple.iokit.IONetworkingFamily          1.10
    com.apple.driver.AppleSMC          3.1.0d5
    com.apple.driver.IOPlatformPluginFamily          4.7.0a1
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.driver.AppleBacklightExpert          1.0.1
    com.apple.nvidia.nv50hal          6.3.6
    com.apple.NVDAResman          6.3.6
    com.apple.iokit.IONDRVSupport          2.2.1
    com.apple.iokit.IOGraphicsFamily          2.2.1
    com.apple.driver.IOBluetoothHIDDriver          2.4.5f3
    com.apple.driver.AppleMultitouchDriver          207.11
    com.apple.driver.AppleUSBHIDKeyboard          141.5
    com.apple.driver.AppleHIDKeyboard          141.5
    com.apple.iokit.IOUSBHIDDriver          4.2.0
    com.apple.driver.BroadcomUSBBluetoothHCIController          2.4.5f3
    com.apple.driver.AppleUSBBluetoothHCIController          2.4.5f3
    com.apple.iokit.IOBluetoothFamily          2.4.5f3
    com.apple.iokit.IOUSBMassStorageClass          2.6.7
    com.apple.driver.AppleUSBMergeNub          4.2.4
    com.apple.driver.AppleUSBComposite          3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          2.6.8
    com.apple.iokit.IOBDStorageFamily          1.6
    com.apple.iokit.IODVDStorageFamily          1.6
    com.apple.iokit.IOCDStorageFamily          1.6.1
    com.apple.driver.XsanFilter          402.1
    com.apple.iokit.IOFireWireSerialBusProtocolTransport          2.1.0
    com.apple.iokit.IOFireWireSBP2          4.0.6
    com.apple.iokit.IOSCSIBlockCommandsDevice          2.6.8
    com.apple.iokit.IOATAPIProtocolTransport          2.5.1
    com.apple.iokit.IOSCSIArchitectureModelFamily          2.6.8
    com.apple.iokit.IOFireWireFamily          4.2.6
    com.apple.iokit.IOUSBUserClient          4.2.4
    com.apple.iokit.IOAHCIFamily          2.0.6
    com.apple.iokit.IOATAFamily          2.5.1
    com.apple.driver.AppleFileSystemDriver          2.0
    com.apple.iokit.IOUSBFamily          4.2.4
    com.apple.driver.AppleEFIRuntime          1.4.0
    com.apple.iokit.IOHIDFamily          1.6.6
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.TMSafetyNet          6
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.driver.DiskImages          289
    com.apple.iokit.IOStorageFamily          1.6.3
    com.apple.driver.AppleACPIPlatform          1.3.6
    com.apple.iokit.IOPCIFamily          2.6.5
    com.apple.iokit.IOACPIFamily          1.3.0
    Model: iMac8,1, BootROM IM81.00C1.B00, 2 processors, Intel Core 2 Duo, 3.06 GHz, 4 GB, SMC 1.30f1
    Graphics: NVIDIA GeForce 8800 GS, NVIDIA GeForce 8800 GS, PCIe, 512 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8C), Broadcom BCM43xx 1.0 (5.10.131.42.4)
    Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Network Service: USB Ethernet (en2), Ethernet, en2
    Serial ATA Device: ST3500418ASQ, 465.76 GB
    Parallel ATA Device: PIONEER DVD-RW  DVR-K06A, 3.7 GB
    USB Device: USB 2.0 Hub [MTT], 0x1a40  (TERMINUS TECHNOLOGY INC.), 0x0201, 0xfa200000 / 2
    USB Device: Android Phone, 0x0bb4  (HTC Corporation), 0x0ff9, 0xfa230000 / 4
    USB Device: USB to Serial-ATA bridge, 0x1bcf  (Sunplus Innovation Technology Inc.), 0x0c31, 0xfa240000 / 3
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8502, 0xfd400000 / 3
    USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0608, 0xfd100000 / 2
    USB Device: Ext HDD 1021, 0x1058  (Western Digital Technologies, Inc.), 0x1021, 0xfd130000 / 7
    USB Device: EPSON WorkForce 845 Series, 0x04b8  (Seiko Epson Corp.), 0x0892, 0xfd120000 / 6
    USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0608, 0xfd140000 / 5
    USB Device: External, 0x13fd  (Initio Corporation), 0x1840, 0xfd143000 / 10
    USB Device: GoFlex Desk, 0x0bc2  (Seagate LLC), 0x50a7, 0xfd142000 / 9
    USB Device: Keyboard Hub, 0x05ac  (Apple Inc.), 0x1006, 0xfd141000 / 8
    USB Device: Apple Keyboard, 0x05ac  (Apple Inc.), 0x0220, 0xfd141200 / 11
    USB Device: External, 0x13fd  (Initio Corporation), 0x1840, 0xfd110000 / 4
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x5d100000 / 2
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x1a100000 / 2
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x820f, 0x1a110000 / 3
    FireWire Device: d2 Quadra v3C, LaCie, Up to 800 Mb/sec
    FireWire Device: My Passport 071D, WD, Up to 800 Mb/sec
    Oct 10
    Interval Since Last Panic Report:  2233951 sec
    Panics Since Last Report:          3
    Anonymous UUID:                    7C83D2C1-7F6C-4719-B712-D7C377C8A24D
    Thu Oct 10 11:40:56 2013
    panic(cpu 1 caller 0x5dff0c97): NVRM[0/1:0:0]: Read Error 0x00002500: CFG 0x060910de 0x00100406 0xe2000000, BAR0 0xe2000000 0x5eb04000 0x092480a2, D0, P3/4
    Backtrace (CPU 1), Frame : Return Address (4 potential args on stack)
    0x5c84b688 : 0x21b837 (0x5dd7fc 0x5c84b6bc 0x223ce1 0x0)
    0x5c84b6d8 : 0x5dff0c97 (0x5e20622c 0x5e276840 0x5e214f88 0x0)
    0x5c84b778 : 0x5e7f1a7d (0x9758804 0x7411004 0x2500 0x7411004)
    0x5c84b7b8 : 0x5e7e2d5e (0x7411004 0x2500 0x0 0x0)
    0x5c84b838 : 0x5e7d9132 (0x7411004 0x978a804 0x41 0x5c84b870)
    0x5c84b958 : 0x5e0f6b4d (0x7411004 0x978a804 0xabaa00c 0x200)
    0x5c84b998 : 0x5e175a6e (0x7411004 0x978a804 0xb7dcf2c 0xb7dcf04)
    0x5c84ba48 : 0x5e1772df (0x7411004 0x9795c04 0x0 0x0)
    0x5c84bad8 : 0x5e7d7f19 (0x7411004 0x9795c04 0x6 0x2)
    0x5c84bb58 : 0x5e7e1f8e (0x7411004 0x978a804 0x1000 0x5c84bc6c)
    0x5c84bcc8 : 0x5e81933e (0x7411004 0x978a804 0x0 0x0)
    0x5c84bdf8 : 0x5e12a258 (0x7411004 0x774b004 0x0 0x0)
    0x5c84be38 : 0x5dff9e2b (0x7411004 0x774b004 0x0 0x0)
    0x5c84bed8 : 0x553ec7 (0x0 0x9902e80 0x1 0x83e4000)
    0x5c84bf28 : 0x552ea6 (0x9902e80 0x0 0x0 0x4ecc7284)
    0x5c84bf88 : 0x552eea (0x8b6f6c0 0x704c100 0x5c84bfc8 0x4d45e9)
    0x5c84bfc8 : 0x2a179c (0x8b6f6c0 0x0 0x10 0x79066c4)
          Kernel Extensions in backtrace (with dependencies):
             com.apple.nvidia.nv50hal(6.3.6)@0x5e6ef000->0x5eb03fff
                dependency: com.apple.NVDAResman(6.3.6)@0x5df8a000
             com.apple.NVDAResman(6.3.6)@0x5df8a000->0x5e277fff
                dependency: com.apple.iokit.IOPCIFamily(2.6.5)@0x55a02000
                dependency: com.apple.iokit.IONDRVSupport(2.2.1)@0x5ce45000
                dependency: com.apple.iokit.IOGraphicsFamily(2.2.1)@0x5cccf000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    10K549
    Kernel version:
    Darwin Kernel Version 10.8.0: Tue Jun  7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386
    System model name: iMac8,1 (Mac-F227BEC8)
    System uptime in nanoseconds: 275304880408
    unloaded kexts:
    (none)
    loaded kexts:
    com.vmware.kext.vmnet          3.1.2
    com.vmware.kext.vmioplug          3.1.2
    com.vmware.kext.vmci          3.1.2
    com.vmware.kext.vmx86          3.1.2
    org.virtualbox.kext.VBoxNetAdp          4.1.18
    org.virtualbox.kext.VBoxNetFlt          4.1.18
    org.virtualbox.kext.VBoxUSB          4.1.18
    org.virtualbox.kext.VBoxDrv          4.1.18
    com.bresink.driver.BRESINKx86Monitoring          2.0
    com.kensington.mouseworks.driver.VirtualMouse          3.0
    com.kensington.trackballworks.driver          1.0.0
    com.pctools.iantivirus.kfs          1.0.1
    com.kensington.mouseworks.driver.KMWUSBHIDMouse          3.0
    com.kensington.mouseworks.iokit.KensingtonMouseDriver          3.0
    com.makemkv.kext.daspi          1
    com.Logitech.Control Center.HID Driver          3.3.0
    com.seagate.driver.PowSecLeafDriver_10_5          5.2.2
    com.seagate.driver.PowSecLeafDriver_10_4          5.2.2
    com.roxio.BluRaySupport          1.1.6
    com.seagate.driver.PowSecDriverCore          5.2.2
    com.apple.filesystems.udf          2.1.1 - last loaded 58033495234
    com.apple.filesystems.msdosfs          1.6.3
    com.apple.driver.AppleHWSensor          1.9.3d0
    com.apple.filesystems.autofs          2.1.0
    com.apple.driver.AppleTyMCEDriver          1.0.2d2
    com.apple.driver.InternalModemSupport          2.6.2
    com.apple.driver.AudioAUUC          1.57
    com.apple.driver.AppleUpstreamUserClient          3.5.7
    com.apple.driver.AppleIntelYonahProfile          14
    com.apple.driver.AppleMCCSControl          1.0.20
    com.apple.driver.AppleIntelPenrynProfile          17
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.GeForce          6.3.6
    com.apple.driver.AppleIntelNehalemProfile          11
    com.apple.driver.AppleGraphicsControl          2.10.6
    com.apple.driver.AirPortBrcm43xx          423.91.27
    com.apple.driver.AppleHDA          2.0.5f14
    com.apple.driver.AudioIPCDriver          1.1.6
    com.apple.driver.AppleBluetoothMultitouch          54.3
    com.apple.iokit.AppleYukon2          3.2.1b1
    com.apple.driver.AppleIntelMeromProfile          19
    com.apple.driver.AppleBacklight          170.0.46
    com.apple.driver.AirPortBrcm43224          428.42.4
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.7.0a1
    com.apple.driver.AppleLPC          1.5.1
    com.apple.driver.AppleIRController          303.8
    com.apple.driver.StorageLynx          2.6.1
    com.apple.driver.Oxford_Semi          2.6.1
    com.apple.driver.LSI_FW_500          2.6.1
    com.apple.driver.IOFireWireSerialBusProtocolSansPhysicalUnit          2.6.1
    com.apple.driver.initioFWBridge          2.6.1
    com.apple.iokit.SCSITaskUserClient          2.6.8
    com.apple.driver.PioneerSuperDrive          2.6.1
    com.apple.BootCache          31.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.iokit.IOAHCIBlockStorage          1.6.4
    com.apple.driver.AppleUSBHub          4.2.4
    com.apple.driver.AppleFWOHCI          4.7.3
    com.apple.driver.AppleAHCIPort          2.1.7
    com.apple.driver.AppleIntelPIIXATA          2.5.1
    com.apple.driver.AppleEFINVRAM          1.4.0
    com.apple.driver.AppleUSBEHCI          4.2.4
    com.apple.driver.AppleUSBUHCI          4.2.0
    com.apple.driver.AppleRTC          1.3.1
    com.apple.driver.AppleHPET          1.5
    com.apple.driver.AppleACPIButtons          1.3.6
    com.apple.driver.AppleSMBIOS          1.7
    com.apple.driver.AppleACPIEC          1.3.6
    com.apple.driver.AppleAPIC          1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient          142.6.0
    com.apple.security.sandbox          1
    com.apple.security.quarantine          0
    com.apple.nke.applicationfirewall          2.1.14
    com.apple.driver.AppleIntelCPUPowerManagement          142.6.0
    com.apple.driver.AppleProfileReadCounterAction          17
    com.apple.driver.AppleProfileTimestampAction          10
    com.apple.driver.AppleProfileThreadInfoAction          14
    com.apple.driver.AppleProfileRegisterStateAction          10
    com.apple.driver.AppleProfileKEventAction          10
    com.apple.driver.AppleProfileCallstackAction          20
    com.apple.iokit.IOSurface          74.2
    com.apple.iokit.IOBluetoothSerialManager          2.4.5f3
    com.apple.iokit.IOSerialFamily          10.0.3
    com.apple.driver.AppleHDAHardwareConfigDriver          2.0.5f14
    com.apple.driver.DspFuncLib          2.0.5f14
    com.apple.iokit.IOAudioFamily          1.8.3fc2
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.IOBluetoothHIDDriver          2.4.5f3
    com.apple.driver.AppleMultitouchDriver          207.11
    com.apple.nvidia.nv50hal          6.3.6
    com.apple.NVDAResman          6.3.6
    com.apple.iokit.IOFireWireIP          2.0.3
    com.apple.driver.AppleBacklightExpert          1.0.1
    com.apple.iokit.IONDRVSupport          2.2.1
    com.apple.iokit.IO80211Family          320.1
    com.apple.iokit.IONetworkingFamily          1.10
    com.apple.driver.AppleSMC          3.1.0d5
    com.apple.driver.IOPlatformPluginFamily          4.7.0a1
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.iokit.AppleProfileFamily          41
    com.apple.driver.AppleHDAController          2.0.5f14
    com.apple.iokit.IOGraphicsFamily          2.2.1
    com.apple.iokit.IOHDAFamily          2.0.5f14
    com.apple.driver.AppleUSBHIDKeyboard          141.5
    com.apple.driver.AppleHIDKeyboard          141.5
    com.apple.driver.BroadcomUSBBluetoothHCIController          2.4.5f3
    com.apple.driver.AppleUSBBluetoothHCIController          2.4.5f3
    com.apple.iokit.IOBluetoothFamily          2.4.5f3
    com.apple.iokit.IOUSBHIDDriver          4.2.0
    com.apple.iokit.IOUSBMassStorageClass          2.6.7
    com.apple.driver.AppleUSBMergeNub          4.2.4
    com.apple.driver.AppleUSBComposite          3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          2.6.8
    com.apple.iokit.IOBDStorageFamily          1.6
    com.apple.iokit.IODVDStorageFamily          1.6
    com.apple.iokit.IOCDStorageFamily          1.6.1
    com.apple.driver.XsanFilter          402.1
    com.apple.iokit.IOFireWireSerialBusProtocolTransport          2.1.0
    com.apple.iokit.IOFireWireSBP2          4.0.6
    com.apple.iokit.IOSCSIBlockCommandsDevice          2.6.8
    com.apple.iokit.IOATAPIProtocolTransport          2.5.1
    com.apple.iokit.IOSCSIArchitectureModelFamily          2.6.8
    com.apple.driver.AppleFileSystemDriver          2.0
    com.apple.iokit.IOUSBUserClient          4.2.4
    com.apple.iokit.IOFireWireFamily          4.2.6
    com.apple.iokit.IOAHCIFamily          2.0.6
    com.apple.iokit.IOATAFamily          2.5.1
    com.apple.iokit.IOUSBFamily          4.2.4
    com.apple.driver.AppleEFIRuntime          1.4.0
    com.apple.iokit.IOHIDFamily          1.6.6
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple

  • Re: javax.faces.convert.Converter error, how to diagnose?

    I’m rendering a region on a page. The region is a table which is entirely build in java. The .jsff for the region looks kind of like this:
    <af:treeTable value="#{backingBeanScope.myBean.treeModel}" var="row" etc…. >
    <af:forEach items="#{backingBeanScope.myBean.columns}" var="column">
    <af:column binding="#{column.adfColumn}" />
    </af:forEach>
    </af:treeTable>
    When a row selection happens, there is context menu build, where one of the menuitems pops a dialog. After the dialog is dismissed a return handler/listener is called:
    public void propertyToolReturnHandler(ReturnEvent event)
    AdfUtil.showMessageDialog(AdfUtil.MESSAGE_TYPE.INFORMATION, “some msg”, “some msg”, true);
    Notice the last param to showMessageDialog, which is “true”, as I want to show the message as inline. However, having it set to “true” causes the following exception. If I set it to “false”, then it does work and a popup message appears with the “some msg” text.
    I’m truly stuck trying to figure out what Converter is missing and where. Any ideas will be most welcomed!
    The error I get:
    [Ljava.lang.Object; cannot be cast to javax.faces.convert.Converter
    ADF_FACES-60097:For more information, please see the server's error log for an entry beginning with: ADF_FACES-60096:Server Exception during PPR, #2
    Examining the EMGC_OMS1.out file I see (partial):
    <Apr 10, 2013 2:39:38 PM PDT> <Error> <oracle.adfinternal.view.faces.config.rich.RegistrationConfigurator> <BEA-000000> <ADF_FACES-60096:Server Exception during PPR, #2
    java.lang.ClassCastException: [Ljava.lang.Object; cannot be cast to javax.faces.convert.Converter
         at oracle.adfinternal.view.faces.renderkit.rich.ValueRenderer.getConverter(ValueRenderer.java:197)
         at oracle.adfinternal.view.faces.renderkit.rich.ValueRenderer.addClientConverterRenderScript(ValueRenderer.java:220)
         at oracle.adfinternal.view.faces.renderkit.rich.OutputLabelRenderer.encodeAll(OutputLabelRenderer.java:241)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1431)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:341)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:767)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:937)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:405)
         at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:2778)
         at oracle.adfinternal.view.faces.renderkit.rich.RegionRenderer.access$500(RegionRenderer.java:49)
         at oracle.adfinternal.view.faces.renderkit.rich.RegionRenderer$ChildEncoderCallback.processComponent(RegionRenderer.java:574)
         at oracle.adfinternal.view.faces.renderkit.rich.RegionRenderer$ChildEncoderCallback.processComponent(RegionRenderer.java:553)
         at org.apache.myfaces.trinidad.component.UIXComponent.processFlattenedChildren(UIXComponent.java:170)
         at org.apache.myfaces.trinidad.component.UIXComponent.processFlattenedChildren(UIXComponent.java:290)
         at org.apache.myfaces.trinidad.component.UIXGroup.processFlattenedChildren(UIXGroup.java:96)
         at org.apache.myfaces.trinidad.component.UIXComponent.processFlattenedChildren(UIXComponent.java:160)
         at org.apache.myfaces.trinidad.component.UIXComponent.processFlattenedChildren(UIXComponent.java:290)
         at org.apache.myfaces.trinidad.component.UIXComponent.encodeFlattenedChildren(UIXComponent.java:255)
         at oracle.adfinternal.view.faces.renderkit.rich.RegionRenderer._encodeChildren(RegionRenderer.java:270)
         at oracle.adfinternal.view.faces.renderkit.rich.RegionRenderer.encodeAll(RegionRenderer.java:201)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1431)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:341)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:767)
         at oracle.adf.view.rich.component.fragment.UIXRegion.encodeEnd(UIXRegion.java:321)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:937)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:405)
         at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:2778)
         at oracle.adf.view.rich.render.RichRenderer.encodeStretchedChild(RichRenderer.java:2149)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelBoxRenderer.access$500(PanelBoxRenderer.java:39)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelBoxRenderer$ChildEncoderCallback.processComponent(PanelBoxRenderer.java:2267)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelBoxRenderer$ChildEncoderCallback.processComponen
    Ania.
    Edited by: user12869467 on Apr 12, 2013 1:57 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    I did more trial/error with this problem. It is not related to AdfUtil.showMessageDialog().
    My java-built table, shows a popup. After the popup is dismissed, I will get this exception, not right away though. The view has tabs, if after dismissing the dialog, I navigate to some other tab, and then back to the one which has the table, that is when the error shows up.
    ANY help on how to diagnose this problem will be very much appreciated!
    Ania.

  • How to run performance trace on a program

    Hi All,
          I need to run pefromance trace on a program that I will run in background. I think I have to use ST05 to run SQL trace. Could someone please confirm the steps?
    1) Go to ST05
    2) Activate trace with filter
    3) Run the program in background
    I am not sure about the steps after this. How do I view the report while trace is running? Should I wait till the program ends to view the report? It is taking a long time to run. Should I do any other performance analysis other than ST05?
    Thanks.
    Mithun

    Hi Mithun.
    I would like to suggest a few references,
    [SDN Library - Standard Reference - How to analyze performance problems - Trace|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/3fbea790-0201-0010-6481-8370ebc3c17d]
    [SDN Library - Standard Reference for Performance Analysis in a Nutshell|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/86a0b490-0201-0010-9cba-fd5c804b99a1]
    [SDN Library - Standard Reference - Best Practices for Performance Tuning|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/5d0db4c9-0e01-0010-b68f-9b1408d5f234]
    Hope that's usefull.
    Good Luck & Regards.
    Harsh Dave

  • How to find cause of db performance problem??

    Hi,
    I am facing continuous performance issues with our database and for that I want to know how I can get information about the following points:
    1- How to find most accessed table(s) or tables with highest hits or top queries is accessing which table(s)?
    2- What indication can tell that a particular table need to be rebuilt?
    3- When to rebuild indexes? and how to know that an indexed need to be rebuilt?
    Your prompt reply is highly appreciated
    Thanks,
    Younis

    Hi,
    a good starting point for investigating poor database performance is AWR (if you have a license for that) or statspack (if you don't). If you need help interpreting it, you can refer to J. Lewis's series on statspack reports (also applies to AWR):
    http://jonathanlewis.wordpress.com/2011/03/09/statspack-reports/
    I have also made a few blog posts on this topic, see http://savvinov.com/tag/awr/
    Regarding your other questions -- countrary to popular belief, rebuilding indexes or tables is seldom helpful. More often, performance problems are caused by bad execution plans (side effects of bind peaking, inaccurate statistics, correlated predicates etc.), data design issues, bad coding practices, not using bind variables etc.
    Database performance topic is a huge topic and obviously cannot fit into a discussion thread. Christian Antognini's book "Oracle Performance Troubleshooting" can provide you a gentle introduction into performance tuning, provided you already have good familiarity with Oracle architecture.
    Or, if you want help with your particular problem, post your AWR report here and briefly describe what your users are unhappy about -- there is a good chance that you get valuable feedback from several renowned experts.
    Good luck!
    Best regards,
    Nikolay

  • I am using i 4 phone. recently I had a problem with my lap top and had formatted hard disk of it. Now I want to use sync data in my iphone back to itune n my lap top. how can I perform this task with out loosing data in my i phone.

    I am using i 4 phone. recently I had a problem with my lap top and had formatted hard disk of it. Now I want to sync data in my iphone back to itune on my lap top. how can I perform this task with out loosing data in my i phone.

    Hey floridiansue,
    Do you have an installed email program such as Microsoft Outlook?  If your email is through an online login, such as Gmail, etc, then one will have to create an email association with a program such as Microsoft Outlook on the PC for this Scan to Email system to function.
    -------------How do I give Kudos? | How do I mark a post as Solved? --------------------------------------------------------
    I am not an HP employee.

  • If my network goes out briefly due to a problem at my ISP, FireFox immediatly opens a "diagnose network problems" page. How can I stop this?

    If my network connection goes out briefly due to a problem at my ISP, FireFox immediately opens a "diagnose network problems" page. This is particularly annoying when I don't even have FireFox or any other software open. Ideally, I do NOT want FireFox to even check if my Network is connected. How can I stop this?

    Application Basics
    Name: Firefox
    Version: 36.0.4
    User Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:36.0) Gecko/20100101 Firefox/36.0
    Multiprocess Windows: 0/1
    Crash Reports for the Last 3 Days
    All Crash Reports
    Extensions
    Name: Avast Online Security
    Version: 10.2.0.187
    Enabled: true
    ID: [email protected]
    Name: Download Manager Tweak
    Version: 1.0.8
    Enabled: true
    ID: {F8A55C97-3DB6-4961-A81D-0DE0080E53CB}
    Name: FinalVideoDownloader plugin for Mozilla Firefox
    Version: 1.0.1
    Enabled: true
    ID: [email protected]
    Graphics
    Adapter Description: AMD Radeon HD 6670
    Adapter Drivers: aticfx64 aticfx64 aticfx64 aticfx32 aticfx32 aticfx32 atiumd64 atidxx64 atidxx64 atiumdag atidxx32 atidxx32 atiumdva atiumd6a atitmm64
    Adapter RAM: 1024
    Device ID: 0x6758
    Direct2D Enabled: true
    DirectWrite Enabled: true (6.3.9600.16384)
    Driver Date: 7-4-2014
    Driver Version: 13.251.9001.1001
    GPU #2 Active: false
    GPU Accelerated Windows: 1/1 Direct3D 11 (OMTC)
    Subsys ID: 25451458
    Vendor ID: 0x1002
    WebGL Renderer: Google Inc. -- ANGLE (AMD Radeon HD 6670 Direct3D9Ex vs_3_0 ps_3_0)
    windowLayerManagerRemote: true
    AzureCanvasBackend: direct2d
    AzureContentBackend: direct2d
    AzureFallbackCanvasBackend: cairo
    AzureSkiaAccelerated: 0
    Important Modified Preferences
    accessibility.typeaheadfind.flashBar: 0
    browser.cache.disk.capacity: 358400
    browser.cache.disk.smart_size_cached_value: 358400
    browser.cache.disk.smart_size.first_run: false
    browser.cache.disk.smart_size.use_old_max: false
    browser.cache.frecency_experiment: 1
    browser.link.open_newwindow: 2
    browser.places.smartBookmarksVersion: 7
    browser.sessionstore.restore_on_demand: false
    browser.sessionstore.upgradeBackup.latestBuildID: 20150320202338
    browser.startup.homepage_override.buildID: 20150320202338
    browser.startup.homepage_override.mstone: 36.0.4
    browser.tabs.autoHide: true
    dom.mozApps.used: true
    extensions.lastAppVersion: 36.0.4
    font.internaluseonly.changed: false
    gfx.direct3d.last_used_feature_level_idx: 0
    media.gmp-gmpopenh264.lastUpdate: 1423171160
    media.gmp-gmpopenh264.version: 1.3
    media.gmp-manager.lastCheck: 1430187591
    network.cookie.prefsMigrated: true
    places.database.lastMaintenance: 1430187593
    places.history.expiration.transient_current_max_pages: 104858
    plugin.disable_full_page_plugin_for_types: application/pdf,application/vnd.adobe.xfdf,application/vnd.fdf
    plugin.importedState: true
    plugin.state.npgeplugin: 0
    plugin.state.npgoogleupdate: 0
    plugin.state.npitunes: 0
    print.printer_Canon_MX920_series_Printer.print_bgcolor: false
    print.printer_Canon_MX920_series_Printer.print_bgimages: false
    print.printer_Canon_MX920_series_Printer.print_colorspace:
    print.printer_Canon_MX920_series_Printer.print_command:
    print.printer_Canon_MX920_series_Printer.print_downloadfonts: false
    print.printer_Canon_MX920_series_Printer.print_duplex: 0
    print.printer_Canon_MX920_series_Printer.print_edge_bottom: 0
    print.printer_Canon_MX920_series_Printer.print_edge_left: 0
    print.printer_Canon_MX920_series_Printer.print_edge_right: 0
    print.printer_Canon_MX920_series_Printer.print_edge_top: 0
    print.printer_Canon_MX920_series_Printer.print_evenpages: true
    print.printer_Canon_MX920_series_Printer.print_footercenter:
    print.printer_Canon_MX920_series_Printer.print_footerleft: &PT
    print.printer_Canon_MX920_series_Printer.print_footerright: &D
    print.printer_Canon_MX920_series_Printer.print_headercenter:
    print.printer_Canon_MX920_series_Printer.print_headerleft: &T
    print.printer_Canon_MX920_series_Printer.print_headerright: &U
    print.printer_Canon_MX920_series_Printer.print_in_color: true
    print.printer_Canon_MX920_series_Printer.print_margin_bottom: 0.5
    print.printer_Canon_MX920_series_Printer.print_margin_left: 0.5
    print.printer_Canon_MX920_series_Printer.print_margin_right: 0.5
    print.printer_Canon_MX920_series_Printer.print_margin_top: 0.5
    print.printer_Canon_MX920_series_Printer.print_oddpages: true
    print.printer_Canon_MX920_series_Printer.print_orientation: 0
    print.printer_Canon_MX920_series_Printer.print_page_delay: 50
    print.printer_Canon_MX920_series_Printer.print_paper_data: 1
    print.printer_Canon_MX920_series_Printer.print_paper_height: 11.00
    print.printer_Canon_MX920_series_Printer.print_paper_name:
    print.printer_Canon_MX920_series_Printer.print_paper_size_type: 0
    print.printer_Canon_MX920_series_Printer.print_paper_size_unit: 0
    print.printer_Canon_MX920_series_Printer.print_paper_width: 8.50
    print.printer_Canon_MX920_series_Printer.print_plex_name:
    print.printer_Canon_MX920_series_Printer.print_resolution: 0
    print.printer_Canon_MX920_series_Printer.print_resolution_name:
    print.printer_Canon_MX920_series_Printer.print_reversed: false
    print.printer_Canon_MX920_series_Printer.print_scaling: 1.00
    print.printer_Canon_MX920_series_Printer.print_shrink_to_fit: true
    print.printer_Canon_MX920_series_Printer.print_to_file: false
    print.printer_Canon_MX920_series_Printer.print_unwriteable_margin_bottom: 0
    print.printer_Canon_MX920_series_Printer.print_unwriteable_margin_left: 0
    print.printer_Canon_MX920_series_Printer.print_unwriteable_margin_right: 0
    print.printer_Canon_MX920_series_Printer.print_unwriteable_margin_top: 0
    print.printer_HP_Photosmart_C4380_series.print_bgcolor: false
    print.printer_HP_Photosmart_C4380_series.print_bgimages: false
    print.printer_HP_Photosmart_C4380_series.print_colorspace:
    print.printer_HP_Photosmart_C4380_series.print_command:
    print.printer_HP_Photosmart_C4380_series.print_downloadfonts: false
    print.printer_HP_Photosmart_C4380_series.print_duplex: 0
    print.printer_HP_Photosmart_C4380_series.print_edge_bottom: 0
    print.printer_HP_Photosmart_C4380_series.print_edge_left: 0
    print.printer_HP_Photosmart_C4380_series.print_edge_right: 0
    print.printer_HP_Photosmart_C4380_series.print_edge_top: 0
    print.printer_HP_Photosmart_C4380_series.print_evenpages: true
    print.printer_HP_Photosmart_C4380_series.print_footercenter:
    print.printer_HP_Photosmart_C4380_series.print_footerleft: &PT
    print.printer_HP_Photosmart_C4380_series.print_footerright: &D
    print.printer_HP_Photosmart_C4380_series.print_headercenter:
    print.printer_HP_Photosmart_C4380_series.print_headerleft: &T
    print.printer_HP_Photosmart_C4380_series.print_headerright: &U
    print.printer_HP_Photosmart_C4380_series.print_in_color: true
    print.printer_HP_Photosmart_C4380_series.print_margin_bottom: 0.5
    print.printer_HP_Photosmart_C4380_series.print_margin_left: 0.5
    print.printer_HP_Photosmart_C4380_series.print_margin_right: 0.5
    print.printer_HP_Photosmart_C4380_series.print_margin_top: 0.5
    print.printer_HP_Photosmart_C4380_series.print_oddpages: true
    print.printer_HP_Photosmart_C4380_series.print_orientation: 0
    print.printer_HP_Photosmart_C4380_series.print_page_delay: 50
    print.printer_HP_Photosmart_C4380_series.print_paper_data: 1
    print.printer_HP_Photosmart_C4380_series.print_paper_height: 11.00
    print.printer_HP_Photosmart_C4380_series.print_paper_name:
    print.printer_HP_Photosmart_C4380_series.print_paper_size_type: 0
    print.printer_HP_Photosmart_C4380_series.print_paper_size_unit: 0
    print.printer_HP_Photosmart_C4380_series.print_paper_width: 8.50
    print.printer_HP_Photosmart_C4380_series.print_plex_name:
    print.printer_HP_Photosmart_C4380_series.print_resolution: 0
    print.printer_HP_Photosmart_C4380_series.print_resolution_name:
    print.printer_HP_Photosmart_C4380_series.print_reversed: false
    print.printer_HP_Photosmart_C4380_series.print_scaling: 1.00
    print.printer_HP_Photosmart_C4380_series.print_shrink_to_fit: true
    print.printer_HP_Photosmart_C4380_series.print_to_file: false
    print.printer_HP_Photosmart_C4380_series.print_unwriteable_margin_bottom: 0
    print.printer_HP_Photosmart_C4380_series.print_unwriteable_margin_left: 0
    print.printer_HP_Photosmart_C4380_series.print_unwriteable_margin_right: 0
    print.printer_HP_Photosmart_C4380_series.print_unwriteable_margin_top: 0
    privacy.donottrackheader.enabled: true
    privacy.sanitize.migrateFx3Prefs: true
    storage.vacuum.last.index: 1
    storage.vacuum.last.places.sqlite: 1427897875
    Important Locked Preferences
    JavaScript
    Incremental GC: true
    Accessibility
    Activated: false
    Prevent Accessibility: 0
    Library Versions
    NSPR
    Expected minimum version: 4.10.7
    Version in use: 4.10.7
    NSS
    Expected minimum version: 3.17.4 Basic ECC
    Version in use: 3.17.4 Basic ECC
    NSSSMIME
    Expected minimum version: 3.17.4 Basic ECC
    Version in use: 3.17.4 Basic ECC
    NSSSSL
    Expected minimum version: 3.17.4 Basic ECC
    Version in use: 3.17.4 Basic ECC
    NSSUTIL
    Expected minimum version: 3.17.4
    Version in use: 3.17.4
    Experimental Features
    ---------------------

  • How to diagnose problem with CCMS?

    RWB -> Component Monitoring -> Integration
    I have a red flag on  CCMS Status Last Retry Jan 24, 2006 5:15:03 PM
    How to diagnose what is wrong with CCMS?

    Which o/s are you using??
    We had this problem on windows 2003, and the SAPCCMSR.00 service was not running. I started the service manually and this corrected the error.

  • Satellite M30: Blue screen error - how to diagnose what it is?

    I have a hardware problem but I am not sure of the exact nature. Although I looks like the hard drive or something communicating to it.
    Some two weeks ago I started to notice performance problems when loading something from the internal hard drive: overall function of the computer (like mouse cursor movement, mp3 playback) became hampered when the harddisk was loading (saving was less of a problem).
    This was NOT the case when loading data or executing programs from an external usb harddrive. Today I got a blue screen informing me that this crash was probably due to new hardware or software, followed by a physical memory dump and a harsh shutdown. I rebooted the computer, but got the same problem after the login screen.
    Trying to start it up in safe mode didn't work either and after a couple of tries it never got to the login screen anymore -- a few seconds after boot start there was a flash of a blue screen followed by an immediate shutdown.
    Anyway, I used the product recovery dvd-rom but the problem is still there, i.e. I can boot now but I get the same blue screen every hour at least (seems to correlate with usage).
    Instead of running off to buy a new harddrive I want to be sure that that is the (only) problem, and not some motherboard issue or what have you.
    Hence my question: how can I diagnose what's wrong with my notebook?

    Generally the best way is if you have a friend with the exact same portable. You can then take out your ram, and try it in their notebook, and try their ram in yours. If the problem persists on their computer, and yours boots up, its the ram. If not, the ram is fine. Then do the same with the HDD, again, if the problem doesnt happen on your computer, but happens on theirs, the HDD is bad, if not, your either down to CPU or Motherboard. A general overheating CPU goes into protection mode and automatically shuts the computer off. You dont get an error with overheating. But if the CPU has problems processing information it can generate blue screens. One sure way to find out if the CPU is defective is to continously reboot the computer and note the blue screen STOP error. If it remains the same constantly, then it is likely not the CPU, but the Motherboard. If it constantly changes from one error to the next, and generates 3 or 4 different errors, then you likely have a bad CPU.

  • Performance problems on a Oracle 11G with Windows 2008 64bits.

    Hi everyone,
    I have noticed that our db is going low and low every week. My server has 16GB RAM and 10GB are dedicated to the Oracle database, this is a 11.2.0.1 with Windows 2008 R2 SP1 64bits. I like to know acording to the nexts values what you guys recommend to adjust in the init.ora:
    orcl.__db_cache_size=5402263552
    orcl.__java_pool_size=33554432
    orcl.__large_pool_size=33554432
    orcl.__pga_aggregate_target=3657433088
    orcl.__sga_target=6878658560
    orcl.__shared_io_pool_size=0
    orcl.__shared_pool_size=1308622848
    orcl.__streams_pool_size=33554432
    *.memory_target=10511974400
    *.open_cursors=5000
    *.optimizer_mode='RULE'
    *.processes=300
    Acording to the memory target on how values can be increased the processes, pga_agregate_target, etc.
    Also we have problems related to the bug Bug 9593134 that “Connections to Oracle 11g are slow and can take anywhere from 10 seconds to 2 minutes.” there is a fix on linux by removing the dns names on it but anyone have experience on windows platforms?
    Thanks for all and sorry for my english.
    Regards.
    Arturo.

    Regarding the long connection times, have you tried using network packet capture software (such as Wireshark) to determine what the client computer is doing when a connection attempt is initiated?
    The Oracle Database time model statistics, along with the system wide wait events may help you diagnose the non-connection related performance issues (you should not just look at the statistics, but instead capture the current values, wait a period of time, capture the statistics again, and compare the changes in the statistic values). A statspack report might also help you - but a 10046 trace at level 8 or 12 is more appropriate if you are able to identify a couple of sessions that experience performance problems.
    I do not suggest just blindly modifying parameters, although I am curious to know:
    * Why the session level parameter OPEN_CURSORS is set to 5000 - do you expect a single session to hold open 5,000 cursors?
    * Why are you using the deprecated RULE based optimizer?
    * Why is the MEMORY_TARGET parameter used when the SGA_TARGET and PGA_AGGREGATE target are specified?
    Charles Hooper
    http://hoopercharles.wordpress.com/
    IT Manager/Oracle DBA
    K&M Machine-Fabricating, Inc.

Maybe you are looking for

  • Burn iPhone videos to dvd

    I was wondering if any1 knows if it is possible to make a movie from videos ive recorded on my iphone on a macbook and then burn them to dvd and for them to be able to be played on a dvd player? i dont have a macbook at the moment i have a packardbel

  • Dynamic field in forms

    Hi there, I'm working on SCSM forms customization and I'd like to reproduce the behavior of the priority field : change the value of a textbox based on the value of two other textboxes. At the moment I successfully implemented a custom user control a

  • Word 2003+Acrobat 6: Page # became {Page} after Acrobat installed. What's the fix

    As soon as I installed Acrobat 6, all page numbers on my printouts (every printer and every PDF) changed to "{page}". They look fine in the file, but are lost in the print preview. I had the issue on one machine, moved the .doc file to another one. P

  • Cannot draw logarithmic graph in Plot Multi-XY vi

    Hello All, I'm trying to use the Plot Multi-XY vi in the picture controls to dynamically draw an X-Y grid on a picture control.  I need the grid to be logarithmically scaled, but when I check the "x log?" and "y log" booleans in the cartesian axis at

  • ITunes 7.3.1.3 Crashes When Trying to Start...

    OK, until less than 48 hours ago, iTunes 7.3.1.whatever was working JUST FINE. Despite installing no new software or making any major (or even minor, that I can recall) changes to my system (Windows XP), I now can't get the program to load at all - I