Poor iSCSI Performance over 10GbE connection.

Hi Solaris Folks,
I'v a setup of two SunFire X4540 connected over a 10GbE link (a Cisco Catalyst 4507 in the middle) using Sun's Dual 10 GbE NIC (X1027A-Z) on both machines.
The plan is to provide the 2nd machine a ZFS volume via iSCSI from the 1st machine. The 1st machine has a ZPool wiht 22x 2-way mirror vdevs and a locale
FileBench test shows good results.
I've now configured the 1st machine to share a ZFS volume via iSCSI and on the 2nd machine I used that target as a raw-device for a new ZPool. If I now run
FileBench againt the "iSCSI-ZPool" I get results which are far away from the local benchmarks and far away from really using the 10GbE link (most times the
bandwidth is around 1,5 GBit/s).
Did a couple of performance tuning which I found in the Sun Blogs and Wikis but without any luck to increase the performance significantly.
Anybody out there who tried the same (iSCSI over 10GbE)? Any experience with iSCSI performance? Suggestions?
Here is an overview about the changes I made:
iSCSI Initiator only:
tcp-nodelay=1; in /kernel/drv/iscsi.conf
iSCSI Targer only:
Configured a TPGT so that only the 10GbE connection can be used.
On both machines:
tcp_recv_hiwat 400000, tcp_xmit_hiwat 400000, tcp_max_buf 2097152, tcp_cwnd_max 2097152 on /dev/tcp via ndd
soft-lso-enable = 1; and accept_jumbo=1; within nxge.conf
MTU on both NICs is set to 9194. Jumbo Frames are also configured on the Cisco switch ports.
Regards,
Lemmy

The answer could be .. don't use ZFS volumes
I have an SSD and a simple Seagate disk. Both on SATA. Same capacity of 74.53GB
If I use those disks to create a pool and make volumes on the pool and then
use the shareiscsi property to create a target (and there is plenty of documentation
describing that as the easy way to do it ) the performance
is dreadful.
If on the other hand I use iscsitadm to make a target out of the devices of two disks using commands like this
for example
iscsitadm create target --type raw -b /dev/dsk/c4t0d0
iscsitadm create target --type raw -b /dev/dsk/c4t1d0
and then on the initiator create the pool then the performance is entirely different!
A bit more detail:
For example I built a target out of a zfs volume then on the initiator I wrote to the pool using zfs send/recv with about 3.2GB. It took 26 minutes 24 sec - pathetic.
I almost gave up waiting!
So i exported the these useless zfs pools, removed the static-configs etc and cleared the zfs property etc and started again.
If the target is instead built "manually" using iscsitadm e.g. "iscsitadm create target --type raw -b /dev/dsk/c4t0d0" (dsk or rdsk it doesn't seem to make much difference)
the same write test takes just 3 min 12sec.
So in this example Solaris 10 10/09 (x86) the performance degrades by a factor of 8 if you use zfs volumes. Nice idea ... easy to use but ... terrible overhead.
At least for SATA disks.
Incidentally for a SATA SSD disk the factor is not so bad (5 min vs 3 min) . However an ordinary disk like ST3808110AS .. 8 times slower with zfs volumes.
No idea why .. but easily reproducible.
So .. what do you see if you don't use zfs volumes but instead use the disk device name itself (whole disk remember - not a slice)
For target and initiator I was using Solaris 10 10/09 (x86) on a v20z with 3rd party eSATA card. SunOS kernel patched recently to 5.10 Generic_142901-10 on the target.

Similar Messages

  • Poor graphics performance over time

    I've seen an issue ever since upgrading to Lion where after some period of time (haven't nailed down how long, but measured in hours) 3D game performance suffers greatly (60+fps down to 12fps).  Rebooting fixes the issue until it sits long enough.
    The drop doesn't seem to happen mid-game... only after leaving for a while and returning to the computer.   I've run all the usual diagnostics.  The iMac does not "sleep" during that time (i have it set to always on).  During the performance slow down, all system stats look normal: no spikes in CPU usage, memory usage, etc.  All internal temperatures report out normal as well.   No other hardware or software changes other than the Lion upgrade.  When the FPS slow down is occuring, all system animations also suffer (sliding in Dashboard, Dock magnification, etc).   Quit the game and the system animations come back to full speed.
    The game I play most often's technical support is worthless (i'm looking at you Blizzard), so I'm hoping someone else has run in to this issue, or that an actual support person can help without telling me to run a permissions check. 
    Thanks!

    FromPC2Mac wrote:
    I just bought this MacBook Pro the 26th and it came with Leopard. After installing XP on the system, I can't get over the fact of the poor graphics performance. Even moving windows would result in a bad frame rate. Obviously, this is caused by a lack of "good" drivers for the GeForce 8600M GT. The drivers from Nvidia aren't working, so either this is the best of Windows I'm getting on this system or there's some sort of driver that I haven't heard of. Does anyone have any insight on this?
    First off... Congrats on buying a MBP!
    You might be interested in this thread:
    http://discussions.apple.com/thread.jspa?threadID=1200236&tstart=0
    Hopefully this will help.
    Good luck.

  • Poor CLOB performance over dblink

    These statements take 4 seconds to complete:
    drop table t_test purge;
    create table t_test as
    SELECT CONTENT_ID,SITEID
    from sitecontent@remotedb;These statements don't complete after at least 10 minutes of waiting:
    drop table t_test purge;
    create table t_test as
    SELECT CONTENT_ID,SITEID, BODY
    from sitecontent@remotedb;The only difference is that the second SQL contains a reference to BODY, which is a CLOB column.
    The SITECONTENT table consists of just 2815 records. The CONTENT_ID and SITEID columns are NUMBER. A max(length(body)) returns a result of 29,005. And a count where length(body)>15000 returns just 115. So we are not talking about huge amounts of data for the table, nor large amounts for very many rows. Certainly not enough, I would have thought, to explain a difference in completion times between about 4 seconds and apparently forever.
    Is this a known issue with CLOBs over database links? (I have looked, but not found anything relevant). Is there anything I can do to remedy the situation (not asking for quick fixes, just any steps I can plod my way through!). When I look at the local database, it's just constantly waiting on SQL*Net message from dblink.
    This is 11.2.0.1 on RHEL5.5 x86_64.
    Thanks in advance.

    Well, I tried that:
    Connected.
    SQL> set autotrace traceonly explain statistics;
    SQL> create table t_test as select ctext from clobtest@remotedb;
    Table created.
    SQL>No statistics were displayed, in other words. (Same result when selecting vtext, as it happens). I don't think autotrace works on DDL statements, does it? It's working fine for selects, though. So, ignoring the create table bit for now, here's the Vtext statistics:
    SQL> select vtext from clobtest@remotedb;
    2831 rows selected.
    Execution Plan
    Plan hash value: 1402521094
    | Id  | Operation              | Name     | Rows  | Bytes | Cost (%CPU)| Time     | Inst   |
    |   0 | SELECT STATEMENT REMOTE|          |  2994 |  5853K|   312   (1)| 00:00:04 |        |
    |   1 |  TABLE ACCESS FULL     | CLOBTEST |  2994 |  5853K|   312   (1)| 00:00:04 |   RMDB |
    Note
       - fully remote statement
       - dynamic sampling used for this statement (level=2)
    Statistics
              0  recursive calls
              0  db block gets
              0  consistent gets
              0  physical reads
              0  redo size
        3629480  bytes sent via SQL*Net to client
           2428  bytes received via SQL*Net from client
            190  SQL*Net roundtrips to/from client
              0  sorts (memory)
              0  sorts (disk)
           2831  rows processedI can't produce the equivalent Ctext statistics, of course, since a select from a remote clob simply generates an ORA_22992.
    I'm sort-of stumped at this point.

  • 2.1 performance over slow connection (vpn)

    Hi,
    using version 2.1 with a "slower" (1M Upload, 10M Download) connection to the database is a pain. Using the sql worksheet you are typing blindly and wait several seconds before the characters materialize on the screen. I did disable completion insight, but that makes no real difference.
    Working with release 1.5.x on the same connection is without problems.
    Are there any others options to change, so that i can use the new version with vpn?
    Regards
    Oliver

    Hi
    If Default path is set it is used to store worksheet location.
    This is accessed during worksheet editing.
    If the default path is not set it will go to the user home.
    If default path is mapped to a networked drive this will cause delays.
    I will make user home the default. Note that save as will then default to user home.
    --Turloch                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Extremely poor internet performance 1841

    **Edit**
    To add more to this,  somehow I missed it but I had quite a few CRC errors on the outside interface.  I switched the FastEthernet0/0 to speed auto, duplex auto and now I am getting about 45Mbps download speed.  I would still like to see the router get closer to 60 though,  is there anything I could tweak in the config that might increase the speed of this just a little bit?  Or is an 1841 only rated to about 45Mbps with all the firewall features turned on?
    **End Edit**
    A school I am doing some volunteer work for has a 60/4 coax internet service through Charter communication.  I just put in an older Cisco 1841 router and used my default standard config I use at many other sites.  For some reason I am only getting about 6 - 8 mbps download speeds with the router.  When I plug directly into the cable modem with my laptop I am getting the advertised speeds.
    Attached is my config, it looks pretty standard to me and for the life of me I can not see why this router would be performing so poorly.  The CPU utilization is very low,  I have to be missing something though.
    Thank you everyone

    I'm having the same issue with the 1841 I get about 12Megbit were I can get over 20 connected with a cheap old linksys router. If you look at the processor it's pegged at 100% after doing some research I found the 1841 has a slow CPU it's max is only 38meg that's not even natting. I assume when you nat the CPU is maxed out.  My IP input shows 70% while downloading a 500meg file. I'm going to try an ASA5200  
    120   184159140    71050305       2591 66.79% 24.54%  6.34%   0 IP Input
          999999996666699999999999999999999999999999999999666667777777
          666999992222288888999999999988888555556666699999777779999911
      100 ********     ***********************************
       90 ********     ***********************************
       80 ********     ***********************************     *****
       70 ********     ***********************************************
       60 ************************************************************
       50 ************************************************************
       40 ************************************************************
       30 ************************************************************
       20 ************************************************************
       10 ************************************************************
         0....5....1....1....2....2....3....3....4....4....5....5....6
                   0    5    0    5    0    5    0    5    0    5    0
                   CPU% per second (last 60 seconds)

  • I have recently upgraded my ipad mini to iOS 6.0.2 and still have poor wifi performance. My 3rd generation ipad works great on the same network. I have done all the resets I can think of but nothing helps. I would not have purchased the mini had I known.

    On the same wifi network, third generation ipad, iphone4s and MacBook Pro work just fine.  The ipad mini often can not connect with the mail server and seems to hang a long time trying to open a web page. Had I known the mini had this kind of difficulty on wifi, I would have reconsidered my purchase. I have tried resetting the network and renewing the lease on the mini in addition. To completing the most current iOS upgrade. Still poor wifi performance. Unacceptable, in my opinion.

    Yes I tried this manyfold. But did not work.  Reading on, I took Tesserac's advice. Shut down router and computer.
    Start router after 15 minutes and wait another 10 minutes before starting the computer.
    Et voila.... everything is back in working order,
    Regards form Curacao, Dutch Caribean.
    Pete van Linden

  • EJB transaction hanging over VPN connection

    EJB transaction hanging over VPN connection
    I am trying to diagnose a problem that only occurs when I am doing testing from home and connected via VPN to work.
    We are using WL 10.3. Our clusters are setup to communicate via multicast. We have a stateless session bean that uses many different resources (Sybase DB, other EJBs, Sonic JMS). I have a local EJB on my home network that I am testing and it connects with other EJBs and resources on my corporate network. While I don't think it is related to the problem, there is a cluster of the same EJB I am trying to test deployed to my corporate environment. i.e. I am testing ResetService EJB and there is a deployed domain cluster of several ResetService EJBs in the environment I am connecting to. My local server and admin domain are named differently than the one deployed and my local ejb shouldn't try to connect to the cluster in the environment.
    When I make a call into my local ejb everything seems to work as expected until it gets to the commit part of the transaction (after my ejb returns). At this point the executing thread hangs at the following location
    "[STUCK] ExecuteThread: '16' for queue: 'weblogic.kernel.Default (self-tuning)'" daemon prio=2 tid=0x2e8cb400 nid=0x22fc in Object.wait() [0x3031f000]
       java.lang.Thread.State: TIMED_WAITING (on object monitor)
            at java.lang.Object.wait(Native Method)
            - waiting on <0x091a4b18> (a weblogic.transaction.internal.ServerTransactionImpl)
            at weblogic.transaction.internal.ServerTransactionImpl.globalPrePrepare(ServerTransactionImpl.java:2130)
            - locked <0x091a4b18> (a weblogic.transaction.internal.ServerTransactionImpl)
            at weblogic.transaction.internal.ServerTransactionImpl.internalCommit(ServerTransactionImpl.java:266)
            at weblogic.transaction.internal.ServerTransactionImpl.commit(ServerTransactionImpl.java:233)
            at weblogic.ejb.container.internal.BaseRemoteObject.postInvoke1(BaseRemoteObject.java:621)
            at weblogic.ejb.container.internal.StatelessRemoteObject.postInvoke1(StatelessRemoteObject.java:60)
            at weblogic.ejb.container.internal.BaseRemoteObject.postInvokeTxRetry(BaseRemoteObject.java:441)
            at advantage.tradesupport.rates.resets.ejb.ResetTradeServiceBean_shnf9c_EOImpl.resetTradeByRate(ResetTradeServiceBean_shnf9c_EOImpl.java:1921)
            at advantage.tradesupport.rates.resets.ejb.ResetTradeServiceBean_shnf9c_EOImpl_WLSkel.invoke(Unknown Source)
            at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:589)
            at weblogic.rmi.cluster.ClusterableServerRef.invoke(ClusterableServerRef.java:230)
            at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:477)
            at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
            at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:147)
            at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:473)
            at weblogic.rmi.internal.wls.WLSExecuteRequest.run(WLSExecuteRequest.java:118)
            at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
            at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)This thread is obviously waiting for a notification from some other thread but it is unclear what exactly it is waiting for. This only seems to happen when I am connected via VPN because when I try this same setup connected directly to my corporate network at work it works fine.
    I connected w/ debugger and tried to dig. Some interesting observations I see are.
    1) The ServerTransactionImpl object that is hanging has a 'preferredHost' of a different machine on my corporate network. It is an EJB that my service got some information from but it wasn't involved in any create, update, or delete aspects of the tran so in theory it shouldn't be part of it. Does anyone know what exactly this peferredHost attribute is signifying? I also see this same remote ejb server reference defined in a ServerCoordinatorDescriptor variable.
    2) I also sometimes see other XA resources (JMS) with this ServerTransactionImpl that point to references of resources that live on other machines on my corporate network (not my local ejb). This doesn't always seem to be the case though.
    VPN will definetly block multicast packets from the corporate env back to my machine. I don't think it works from my machine to the corporate env machines either.
    I also have two IPs when connected over VPN. One for my local home network and one given to me by my VPN client. I have setup my local WL server to listen on the VPN client provided IP which the corporate machines should be able to resolve and send TCP message over.
    This definetly seems to be transaction related because when I remove the tran support from my ejb things work as expected. The problem is I need to test within the transaction just like it runs in a deployed environment so this isn't really a fix.
    My theory: My local test WL EJB is waiting for a communication from some other server before it can commit the tran. This communication is blocked due to my VPN connection. I just don't know what exactly it is trying to communicate and how to resolve if that is in fact the problem. I thought about looking into unicast rather than multicast for cluster communication but in my mind that doesn't come into play here because I am not deploying a local cluster for my EJB and I thought multicast was just used for inter-cluster communication.
    I also saw some docs talking about resources need to be uniquely named when inter-domain communication is performed (http://docs.oracle.com/cd/E13222_01/wls/docs81/ConsoleHelp/jta.html#1120356).
    Anyone have any thoughts on what might be going on?
    Here is some log output from my local WL instance:
    Servers in this output--
    My test Server - AdminServer+10.125.105.14:7001+LJDomain+t3
    Server in env I read data from during ejb method call - TradeAccessTS_lkcma00061-1+171.149.24.240:17501+TradeSupportApplication2+t3
    Server in env I read data from during ejb method call - MesaService_lkcma00065-1+171.149.24.244:17501+MESAApplication1+t3
    Server in env I read data from during ejb method call - DataAccess_lkcma00055-0+171.149.24.234:17500+AdvantageApplication1+t3
    Server in env I read data from during ejb method call - DataAccess_lkcma00053-6+171.149.24.232:17506+AdvantageApplication1+t3
    ####<Mar 20, 2012 4:23:26 PM CDT> <Debug> <JTA2PC> <F68B599F56D71> <AdminServer> <[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <BEA1-0005C168CCCC337F43A8> <> <1332278606895> <BEA-000000> <BEA1-0005C168CCCC337F43A8: [EJB advantage.tradesupport.rates.resets.ejb.ResetTradeServiceBean.resetTradeByRate(java.lang.Long,java.util.Set,java.lang.String,java.lang.String,boolean,advantage.common.service.context.ServiceContext)]: ServerTransactionImpl.commit()>
    ####<Mar 20, 2012 4:23:26 PM CDT> <Debug> <JTA2PC> <F68B599F56D71> <AdminServer> <[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <BEA1-0005C168CCCC337F43A8> <> <1332278606895> <BEA-000000> <BEA1-0005C168CCCC337F43A8: [EJB advantage.tradesupport.rates.resets.ejb.ResetTradeServiceBean.resetTradeByRate(java.lang.Long,java.util.Set,java.lang.String,java.lang.String,boolean,advantage.common.service.context.ServiceContext)]: TX[BEA1-0005C168CCCC337F43A8] active-->pre_preparing>
    ####<Mar 20, 2012 4:23:26 PM CDT> <Debug> <JTA2PC> <F68B599F56D71> <AdminServer> <[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <BEA1-0005C168CCCC337F43A8> <> <1332278606896> <BEA-000000> <SC[LJDomain+AdminServer] active-->pre-preparing>
    ####<Mar 20, 2012 4:23:26 PM CDT> <Debug> <JTA2PC> <F68B599F56D71> <AdminServer> <[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <BEA1-0005C168CCCC337F43A8> <> <1332278606896> <BEA-000000> <BEA1-0005C168CCCC337F43A8: [EJB advantage.tradesupport.rates.resets.ejb.ResetTradeServiceBean.resetTradeByRate(java.lang.Long,java.util.Set,java.lang.String,java.lang.String,boolean,advantage.common.service.context.ServiceContext)]: before completion iteration #0>
    ####<Mar 20, 2012 4:23:26 PM CDT> <Debug> <JTA2PC> <F68B599F56D71> <AdminServer> <[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <BEA1-0005C168CCCC337F43A8> <> <1332278606896> <BEA-000000> <BEA1-0005C168CCCC337F43A8: [EJB advantage.tradesupport.rates.resets.ejb.ResetTradeServiceBean.resetTradeByRate(java.lang.Long,java.util.Set,java.lang.String,java.lang.String,boolean,advantage.common.service.context.ServiceContext)]: Synchronization[weblogic.ejb.container.internal.TxManager$TxListener@11b0cf9].beforeCompletion()>
    ####<Mar 20, 2012 4:23:26 PM CDT> <Debug> <JTA2PC> <F68B599F56D71> <AdminServer> <[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <BEA1-0005C168CCCC337F43A8> <> <1332278606897> <BEA-000000> <BEA1-0005C168CCCC337F43A8: [EJB advantage.tradesupport.rates.resets.ejb.ResetTradeServiceBean.resetTradeByRate(java.lang.Long,java.util.Set,java.lang.String,java.lang.String,boolean,advantage.common.service.context.ServiceContext)]: Synchronization[weblogic.ejb.container.internal.TxManager$TxListener@11b0cf9].beforeCompletion() END>
    ####<Mar 20, 2012 4:23:26 PM CDT> <Debug> <JTA2PC> <F68B599F56D71> <AdminServer> <[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <BEA1-0005C168CCCC337F43A8> <> <1332278606898> <BEA-000000> <SC[LJDomain+AdminServer] pre-preparing-->pre-prepared>
    ####<Mar 20, 2012 4:23:26 PM CDT> <Debug> <JTA2PC> <F68B599F56D71> <AdminServer> <[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <BEA1-0005C168CCCC337F43A8> <> <1332278606898> <BEA-000000> <SC[TradeSupportApplication2+TradeAccessTS_lkcma00061-1] active-->pre-preparing>
    ####<Mar 20, 2012 4:23:26 PM CDT> <Debug> <JTA2PC> <F68B599F56D71> <AdminServer> <[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <BEA1-0005C168CCCC337F43A8> <> <1332278606898> <BEA-000000> <BEA1-0005C168CCCC337F43A8: [EJB advantage.tradesupport.rates.resets.ejb.ResetTradeServiceBean.resetTradeByRate(java.lang.Long,java.util.Set,java.lang.String,java.lang.String,boolean,advantage.common.service.context.ServiceContext)]: delist weblogic.jdbc.wrapper.JTSXAResourceImpl, TMSUSPEND, beforeState=new, startThread=null>
    ####<Mar 20, 2012 4:23:26 PM CDT> <Debug> <JTA2PC> <F68B599F56D71> <AdminServer> <[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <BEA1-0005C168CCCC337F43A8> <> <1332278606898> <BEA-000000> <BEA1-0005C168CCCC337F43A8: [EJB advantage.tradesupport.rates.resets.ejb.ResetTradeServiceBean.resetTradeByRate(java.lang.Long,java.util.Set,java.lang.String,java.lang.String,boolean,advantage.common.service.context.ServiceContext)]: delist weblogic.jdbc.wrapper.JTSXAResourceImpl, afterStatenew>
    ####<Mar 20, 2012 4:23:26 PM CDT> <Debug> <JTA2PC> <F68B599F56D71> <AdminServer> <[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <BEA1-0005C168CCCC337F43A8> <> <1332278606899> <BEA-000000> <BEA1-0005C168CCCC337F43A8: [EJB advantage.tradesupport.rates.resets.ejb.ResetTradeServiceBean.resetTradeByRate(java.lang.Long,java.util.Set,java.lang.String,java.lang.String,boolean,advantage.common.service.context.ServiceContext)]: sc(TradeAccessTS_lkcma00061-1+171.149.24.240:17501+TradeSupportApplication2+t3+).startPrePrepareAndChain>
    ####<Mar 20, 2012 4:23:26 PM CDT> <Debug> <JTA2PC> <F68B599F56D71> <AdminServer> <[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <BEA1-0005C168CCCC337F43A8> <> <1332278606900> <BEA-000000> <SC[TradeSupportApplication2+TradeAccessTS_lkcma00061-1] pre-preparing-->pre-preparing>
    ####<Mar 20, 2012 4:23:26 PM CDT> <Debug> <JTA2PC> <F68B599F56D71> <AdminServer> <[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <BEA1-0005C168CCCC337F43A8> <> <1332278606902> <BEA-000000> <BEA1-0005C168CCCC337F43A8: [EJB advantage.tradesupport.rates.resets.ejb.ResetTradeServiceBean.resetTradeByRate(java.lang.Long,java.util.Set,java.lang.String,java.lang.String,boolean,advantage.common.service.context.ServiceContext)]: delist weblogic.jdbc.wrapper.JTSXAResourceImpl, TMSUSPEND, beforeState=new, startThread=null>
    ####<Mar 20, 2012 4:23:26 PM CDT> <Debug> <JTA2PC> <F68B599F56D71> <AdminServer> <[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <BEA1-0005C168CCCC337F43A8> <> <1332278606903> <BEA-000000> <BEA1-0005C168CCCC337F43A8: [EJB advantage.tradesupport.rates.resets.ejb.ResetTradeServiceBean.resetTradeByRate(java.lang.Long,java.util.Set,java.lang.String,java.lang.String,boolean,advantage.common.service.context.ServiceContext)]: delist weblogic.jdbc.wrapper.JTSXAResourceImpl, afterStatenew>
    ####<Mar 20, 2012 4:23:26 PM CDT> <Debug> <JTANaming> <F68B599F56D71> <AdminServer> <[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <BEA1-0005C168CCCC337F43A8> <> <1332278606903> <BEA-000000> <SecureAction.runAction Use Subject= <anonymous>for action:sc.startPrePrepareAndChain to t3://171.149.24.240:17501>
    ####<Mar 20, 2012 4:23:26 PM CDT> <Debug> <JTAPropagate> <F68B599F56D71> <AdminServer> <[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1332278606903> <BEA-000000> <PropagationContext: Peer=null, Version=4>
    ####<Mar 20, 2012 4:23:26 PM CDT> <Debug> <JTAPropagate> <F68B599F56D71> <AdminServer> <[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1332278606904> <BEA-000000> < +++ otherPeerInfo.getMajor() :: 10>
    ####<Mar 20, 2012 4:23:26 PM CDT> <Debug> <JTAPropagate> <F68B599F56D71> <AdminServer> <[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1332278606904> <BEA-000000> < +++ otherPeerInfo.getMinor() :: 3>
    ####<Mar 20, 2012 4:23:26 PM CDT> <Debug> <JTAPropagate> <F68B599F56D71> <AdminServer> <[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1332278606904> <BEA-000000> < +++ otherPeerInfo.getServicePack() :: 1>
    ####<Mar 20, 2012 4:23:26 PM CDT> <Debug> <JTAPropagate> <F68B599F56D71> <AdminServer> <[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1332278606905> <BEA-000000> < +++ otherPeerInfo.getRollingPatch() :: 0>
    ####<Mar 20, 2012 4:23:26 PM CDT> <Debug> <JTAPropagate> <F68B599F56D71> <AdminServer> <[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1332278606905> <BEA-000000> < +++ otherPeerInfo.hasTemporaryPatch() :: false>
    ####<Mar 20, 2012 4:23:26 PM CDT> <Debug> <JTA2PC> <F68B599F56D71> <AdminServer> <[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <BEA1-0005C168CCCC337F43A8> <> <1332278606905> <BEA-000000> <BEA1-0005C168CCCC337F43A8: [EJB advantage.tradesupport.rates.resets.ejb.ResetTradeServiceBean.resetTradeByRate(java.lang.Long,java.util.Set,java.lang.String,java.lang.String,boolean,advantage.common.service.context.ServiceContext)]: waitForPrePrepareAcks AdminServer+10.125.105.14:7001+LJDomain+t3+=>pre-prepared TradeAccessTS_lkcma00061-1+171.149.24.240:17501+TradeSupportApplication2+t3+=>pre-preparing MesaService_lkcma00065-1+171.149.24.244:17501+MESAApplication1+t3+=>active DataAccess_lkcma00055-0+171.149.24.234:17500+AdvantageApplication1+t3+=>active DataAccess_lkcma00053-6+171.149.24.232:17506+AdvantageApplication1+t3+=>active>
    $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
    Then eventually I get timeout errors like below in log
    ####<Mar 20, 2012 4:26:29 PM CDT> <Debug> <JTAPropagate> <F68B599F56D71> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1332278789379> <BEA-000000> < +++ otherPeerInfo.getMajor() :: 10>
    ####<Mar 20, 2012 4:26:29 PM CDT> <Debug> <JTAPropagate> <F68B599F56D71> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1332278789380> <BEA-000000> < +++ otherPeerInfo.getMinor() :: 3>
    ####<Mar 20, 2012 4:26:29 PM CDT> <Debug> <JTAPropagate> <F68B599F56D71> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1332278789380> <BEA-000000> < +++ otherPeerInfo.getServicePack() :: 1>
    ####<Mar 20, 2012 4:26:29 PM CDT> <Debug> <JTAPropagate> <F68B599F56D71> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1332278789381> <BEA-000000> < +++ otherPeerInfo.getRollingPatch() :: 0>
    ####<Mar 20, 2012 4:26:29 PM CDT> <Debug> <JTAPropagate> <F68B599F56D71> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1332278789382> <BEA-000000> < +++ otherPeerInfo.hasTemporaryPatch() :: false>
    ####<Mar 20, 2012 4:26:29 PM CDT> <Debug> <JTAPropagate> <F68B599F56D71> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1332278789382> <BEA-000000> < +++ Using new Method for reading rollback reason....>
    ####<Mar 20, 2012 4:26:29 PM CDT> <Debug> <JTANaming> <F68B599F56D71> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1332278789383> <BEA-000000> <RMI call coming from = TradeSupportApplication2>
    ####<Mar 20, 2012 4:26:29 PM CDT> <Debug> <JTANaming> <F68B599F56D71> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1332278789384> <BEA-000000> <SecureAction.stranger Subject used on received call: <anonymous> for action: startRollback AUTHENTICATION UNDETERMINABLE use SecurityInteropMode>
    ####<Mar 20, 2012 4:26:29 PM CDT> <Debug> <JTAPropagate> <F68B599F56D71> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1332278789385> <BEA-000000> <PropagationContext.getTransaction: tx=null>
    ####<Mar 20, 2012 4:26:29 PM CDT> <Debug> <JTAPropagate> <F68B599F56D71> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1332278789385> <BEA-000000> <PropagationContext.getTransaction: xid=BEA1-0005C168CCCC337F43A8, isCoordinator=true, infectCoordinatorFirstTime=false, txProps={weblogic.transaction.name=[EJB advantage.tradesupport.rates.resets.ejb.ResetTradeServiceBean.resetTradeByRate(java.lang.Long,java.util.Set,java.lang.String,java.lang.String,boolean,advantage.common.service.context.ServiceContext)], weblogic.jdbc=t3://171.149.24.240:17501}>
    ####<Mar 20, 2012 4:26:29 PM CDT> <Debug> <JTAPropagate> <F68B599F56D71> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1332278789391> <BEA-000000> < +++ looking up class : weblogic.transaction.internal.TimedOutException :: in classloader : java.net.URLClassLoader@15e92d7>
    ####<Mar 20, 2012 4:26:29 PM CDT> <Debug> <JTAPropagate> <F68B599F56D71> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1332278789397> <BEA-000000> < +++ looking up class : weblogic.transaction.TimedOutException :: in classloader : java.net.URLClassLoader@15e92d7>
    ####<Mar 20, 2012 4:26:29 PM CDT> <Debug> <JTAPropagate> <F68B599F56D71> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1332278789398> <BEA-000000> < +++ looking up class : java.lang.Exception :: in classloader : java.net.URLClassLoader@15e92d7>
    ####<Mar 20, 2012 4:26:29 PM CDT> <Debug> <JTAPropagate> <F68B599F56D71> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1332278789398> <BEA-000000> < +++ looking up class : java.lang.Throwable :: in classloader : java.net.URLClassLoader@15e92d7>
    ####<Mar 20, 2012 4:26:29 PM CDT> <Debug> <JTAPropagate> <F68B599F56D71> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1332278789402> <BEA-000000> < +++ looking up class : [Ljava.lang.StackTraceElement; ::  in classloader : java.net.URLClassLoader@15e92d7>
    ####<Mar 20, 2012 4:26:29 PM CDT> <Debug> <JTAPropagate> <F68B599F56D71> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1332278789403> <BEA-000000> < +++ looking up class : java.lang.StackTraceElement :: in classloader : java.net.URLClassLoader@15e92d7>
    ####<Mar 20, 2012 4:26:29 PM CDT> <Debug> <JTAPropagate> <F68B599F56D71> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1332278789404> <BEA-000000> < +++ converted bytes to rollback reason : weblogic.transaction.internal.TimedOutException: Timed out tx=BEA1-0005C168CCCC337F43A8 after 30000 seconds>
    ####<Mar 20, 2012 4:26:29 PM CDT> <Debug> <JTA2PC> <F68B599F56D71> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1332278789404> <BEA-000000> <Name=[EJB advantage.tradesupport.rates.resets.ejb.ResetTradeServiceBean.resetTradeByRate(java.lang.Long,java.util.Set,java.lang.String,java.lang.String,boolean,advantage.common.service.context.ServiceContext)],Xid=BEA1-0005C168CCCC337F43A8(21880283),Status=Marked rollback. [Reason=weblogic.transaction.internal.TimedOutException: Timed out tx=BEA1-0005C168CCCC337F43A8 after 30000 seconds],numRepliesOwedMe=0,numRepliesOwedOthers=0,seconds since begin=502,seconds left=29497,activeThread=Thread[[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)',5,Pooled Threads],XAServerResourceInfo[weblogic.jdbc.wrapper.JTSXAResourceImpl]=(ServerResourceInfo[weblogic.jdbc.wrapper.JTSXAResourceImpl]=(state=new,assigned=none),xar=null,re-Registered = false),SCInfo[LJDomain+AdminServer]=(state=pre-prepared),SCInfo[TradeSupportApplication2+TradeAccessTS_lkcma00061-1]=(state=pre-preparing),SCInfo[MESAApplication1+MesaService_lkcma00065-1]=(state=active),SCInfo[AdvantageApplication1+DataAccess_lkcma00055-0]=(state=active),SCInfo[AdvantageApplication1+DataAccess_lkcma00053-6]=(state=active),properties=({weblogic.transaction.name=[EJB advantage.tradesupport.rates.resets.ejb.ResetTradeServiceBean.resetTradeByRate(java.lang.Long,java.util.Set,java.lang.String,java.lang.String,boolean,advantage.common.service.context.ServiceContext)], weblogic.jdbc=t3://171.149.24.240:17501}),OwnerTransactionManager=ServerTM[ServerCoordinatorDescriptor=(CoordinatorURL=AdminServer+10.125.105.14:7001+LJDomain+t3+, XAResources={LJDomain.AdminServer.JMSXASessionPool.advantage.jms.queue.sonicConnectionFactory, LJDomain.AdminServer.JMSXASessionPool.advantage.jms.topic.sonicConnectionFactory, WLStore_LJDomain__WLS_AdminServer, WSATGatewayRM_AdminServer_LJDomain},NonXAResources={})],CoordinatorURL=AdminServer+10.125.105.14:7001+LJDomain+t3+) wakeUpAfterSeconds(60)>
    ####<Mar 20, 2012 4:26:29 PM CDT> <Debug> <JTA2PC> <F68B599F56D71> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1332278789406> <BEA-000000> <BEA1-0005C168CCCC337F43A8: [EJB advantage.tradesupport.rates.resets.ejb.ResetTradeServiceBean.resetTradeByRate(java.lang.Long,java.util.Set,java.lang.String,java.lang.String,boolean,advantage.common.service.context.ServiceContext)]: setProperty: weblogic.transaction.name=[EJB advantage.tradesupport.rates.resets.ejb.ResetTradeServiceBean.resetTradeByRate(java.lang.Long,java.util.Set,java.lang.String,java.lang.String,boolean,advantage.common.service.context.ServiceContext)]>

    Hello asirigaya,
    MSDTC configure does not belong to this forum, this forum topic is "Discuss client application development using Windows Forms controls and features."
    I didn't see MSDN has this kind of forum so I will help you move this case to "Where is the forum for"
    Regards,
    Barry Wang
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • IPhone 4S Poor Battery Performance SOLVED!!

    iPhone 4S Poor Battery Performance SOLVED!!
    I found the issue with the iPhone 4S battery performance.
    I bought 2 iPhone 4S models on the first day. One for my wife and one for me. The strange thing was that mine would kill the battery in 4-6 hours and ran VERY WARM to the touch. My wife's phone worked great. It was cold to the touch. She would forget to charge it at night... and the battery performance was great... even better than our prior 3GS models.
    What was the difference? I have my phone connected to Exchange for my corporate email. But exchange is not exactly the problem. The issue is in Notification Center. For some reason, I had hundreds of calendar reminders that kept refreshing on notification center. Furthermore, the reminders would flicker between the time remaining and the start time for the event at such a fast rate that it could not be read... (clearly a bug)
    What is the solution? Go to Settings>Notifications>Calendar and disable Notification Center. You can still have the "alert style" set to Banners, or Alerts and you will still receive notices about your events, but it will not BUILD a summary in the Notification Center drop down screen. This is where the BUG exists. [Oddly, this does not affect my iPad 2, but is an issue for iOS 5 on the iPhone (different builds, maybe?)]
    So, it appears that Notification Center has an endless loop in collecting the calendar events from Exchange and this is burning up our 4S batteries. Once you stop the madness from Notification Center, your iPhone 4S will perform as advertised.
    Enjoy!
    Tim

    TimothyW wrote:
    iPhone 4S Poor Battery Performance SOLVED!!
    I found the issue with the iPhone 4S battery performance.
    I bought 2 iPhone 4S models on the first day. One for my wife and one for me. The strange thing was that mine would kill the battery in 4-6 hours and ran VERY WARM to the touch. My wife's phone worked great. It was cold to the touch. She would forget to charge it at night... and the battery performance was great... even better than our prior 3GS models.
    What was the difference? I have my phone connected to Exchange for my corporate email. But exchange is not exactly the problem. The issue is in Notification Center. For some reason, I had hundreds of calendar reminders that kept refreshing on notification center. Furthermore, the reminders would flicker between the time remaining and the start time for the event at such a fast rate that it could not be read... (clearly a bug)
    What is the solution? Go to Settings>Notifications>Calendar and disable Notification Center. You can still have the "alert style" set to Banners, or Alerts and you will still receive notices about your events, but it will not BUILD a summary in the Notification Center drop down screen. This is where the BUG exists. [Oddly, this does not affect my iPad 2, but is an issue for iOS 5 on the iPhone (different builds, maybe?)]
    So, it appears that Notification Center has an endless loop in collecting the calendar events from Exchange and this is burning up our 4S batteries. Once you stop the madness from Notification Center, your iPhone 4S will perform as advertised.
    Enjoy!
    Tim
    Check this out. They are stumpped:
    http://www.guardian.co.uk/technology/2011/oct/28/iphone-4s-battery-apple-enginee rs

  • Poor Autodeploy Performance on UCS B-Series

    "I have been rolling out Autodeploy to provision vSphere 5.0 U1 hosts in our environment.  We are running on Cisco UCS blades with full 10GbE connectivity within our datacenter fabric.  Our DHCP, DNS, TFTP and vCenter servers are all reachable over the 10GbE fabric, network and storage latency for these servers are well within tolerance and yet it takes 15-20 minutes to download the image and boot the server.  I realize that I am not pruning the ESX image, in fact I have taken the base image and added HA/FDM and Cisco vibs, but the image is still not huge.  The blades are running Intel Sandybridge with anywhere from 256-384 GB RAM.
    I guess I just expected this to be faster.  It is considerably slower than booting from SAN.  Is my experience normal?"
    I originally started this as a question on VMware's communities...  and the response I received from another user was that they were experiencing the same issue but only on their UCS blades, not other vendor's equipment.  So I pulled an old HP Proliant DL360 G5 off the shelf and ran a test.  The following times are from when the host starts the PXE process until ESX has finished booting:
    HP G5 Rack  (1GbE, three switch hops)    < 3 minutes
    UCS B200 M2/M3  (10GbE, 1 switch hop)    Anywhere from 12-20 minutes.
    Has anyone else experienced this?  Any explanation as to why, or how to resolve?
    Thanks!

    Hello Peter,
    Does the blades have Cisco VIC CNA ?
    There is known issue in PXE implementation which is tracked by following defect.
    http://tools.cisco.com/Support/BugToolKit/search/getBugDetails.do?method=fetchBugDetails&bugId=CSCtu17983
    Padma

  • Very poor network performance with a G4

    I have a white & grey G4 (1.25GHz and 256MB) running OS X 10.4.5. It's exhibiting very poor network performance, e.g. it will not FTP files over a LAN at more than about 40KB/second.
    Other nodes on the same switch perform fine, as do other ports on the switch. The machine is set to autodetect for speed & duplex, so my question is -- how do I debug this? I've tried swapping network cables already...
    Thanks!
    Chris

    This came down to an incompatibility between the G4 and the Cisco. When the switch is set to force 100Mbit but negotiate duplex, the G4 doesn't like it. Going back to auto speed & duplex fixed the problem...

  • Poor Network Performance from VPN sites

    We are experiencing poor network performance when connecting from hardware VPN sites. VPN sites have Cisco Hardware VPN client 3002 which terminates to Cisco 3005 VPN concentrator. Geting upload/download speeds of 355/484kbsp from VPN to surewest.com. If I remove the VPN and connect laptop directly to dsl modem, speeds are 3mb up and 1mb down. Any ideas what could be causing this?

    Try this
    Adjust the MTU and MSS size in concentrator and client.
    Try these link for more info:
    http://www.cisco.com/en/US/products/hw/vpndevc/ps2284/products_configuration_guide_chapter09186a008015ce0e.html#1223423
    http://www.cisco.com/en/US/products/hw/vpndevc/ps2286/products_user_guide_chapter09186a00803ef6c5.html

  • Poor Internet performance (ping, download, and upload) even wired directly to modem

    I recently purchased a new iMac running OSX 10.8, and have been noticing exteremely poor internet performance compared to what I am used to with our internet connection.  Running speedtests, I typically get results as follows:
    Ping: 500-2500ms
    Download: 2-3Mbps
    Upload: 0.05-0.1Mbps
    There more or less reflect the way web browsing feel.  It takes forever for clicks to take effect, but content loading on pages is reasonable for most lightweight pages.  As a comparison, running the same test on my Win 7 Dell laptop, I get more or less the advertised limits of my internet package:
    Ping: 20-80ms
    Download: 18-15Mbps
    Upload: 0.4-0.6Mbps
    To troubleshoot the issue, I wanted to ensure it was not the wireless connection or the router, so I disconnected the router and run an ethernet cord directly from the iMac to the router, and I got the same results.  I then disconnected the router entirely and ran the cord directly to the cable modem, and again got the same results.  Questioning whether it was an issue with the browser, I downloaded Chrome and again ran the test, only to get the same results.
    Now I feel stuck.  I know there is no issue with the cable modem or the connection coming to our home, but have no idea how to improve the performance of the computer.  I would appreciate some tricks or tips to try and improve the performance on either a wired ethernet connection, or ideally on wireless.
    Thanks in advance.

    Triple-click anywhere in the line below to select it:
    kextstat -kl | awk '!/com\.apple/{printf "%s %s\n", $6, $7}' | open -f -a TextEdit
    Copy the selected text to the Clipboard (command-C).
    Launch the Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window (command-V).
    A TextEdit window will open with the output of the command. Post the contents of that window, if any — the text, please, not a screenshot. The title of the window doesn't matter, and you don't need to post that.

  • How to improve poor Wireless Performance?

    In our Environment, there a 2504 WLC with 10 LAPs( Several 2602, several 1242), there are FLEXConnect Group with local switch and Local Authentication, but there are some clients connected to WiFi with poor wireless performance, their ping value is more 100ms, specially the audio quality is ver bad when there are Lync calls, Whehter you may give some suggestions?

    the gateway is 192.168.1.1 for my wireless network. my wireless devices is laptop. below is Lync monitor report for my call.
    Audio Stream (Caller -> Callee)
    Codec:
    x-msrta
    Sample rate:
    16000
    Audio FEC:
    True
    Bandwidth estimates:
    5402 Kbps
    Packet utilization:
    2027
    Avg. packet loss rate:
    1.52 %
    Max. packet loss rate:
    10.00 %
    Avg. jitter:
    20 ms
    Max. jitter:
    44 ms
    Avg. round trip:
    183 ms
    Max. round trip:
    414 ms
    Burst duration:
    300 ms
    Burst gap duration:
    9055 ms
    Burst density:
    33.33 %
    Burst gap density:
    0.21 %
    Avg. concealed samples ratio:
    6.00 %
    Avg. stretched samples ratio:
    2.00 %
    Avg. compressed samples ratio:
    10.00 %
    Avg. network MOS:
    3.14
    Min. network MOS:
    2.82
    Avg. network MOS degradation:
    1.11
    Max. network MOS degradation:
    1.43
    NMOS degradation (jitter):
    84.00 %
    NMOS degradation (packet loss):
    15.00 %
    Avg. sending MOS:
    3.21
    Min. sending MOS:
    2.61
    Avg. listening MOS:
    2.76
    Min. listening MOS:
    1.55
    Audio Stream (Callee -> Caller)
    Codec:
    x-msrta
    Sample rate:
    16000
    Audio FEC:
    False
    Bandwidth estimates:
    9221 Kbps
    Packet utilization:
    1470
    Avg. packet loss rate:
    0.42 %
    Max. packet loss rate:
    2.16 %
    Avg. jitter:
    25 ms
    Max. jitter:
    54 ms
    Avg. round trip:
    161 ms
    Max. round trip:
    524 ms
    Burst duration:
    60 ms
    Burst gap duration:
    9180 ms
    Burst density:
    100.00 %
    Burst gap density:
    0.00 %
    Avg. concealed samples ratio:
    13.00 %
    Avg. stretched samples ratio:
    2.00 %
    Avg. compressed samples ratio:
    9.00 %
    Avg. network MOS:
    2.86
    Min. network MOS:
    2.64
    Avg. network MOS degradation:
    1.39
    Max. network MOS degradation:
    1.61
    NMOS degradation (jitter):
    95.00 %
    NMOS degradation (packet loss):
    4.00 %
    Avg. sending MOS:
    3.95
    Min. sending MOS:
    3.54
    Avg. listening MOS:
    3.04
    Min. listening MOS:
    2.32

  • 7110 iSCSI Performance is ABYSMAL

    I have gold support, so I opened a case on this in July*, and Sun doesn't seem to think that their machine not performing as advertised is any big deal and appears to be sitting on their thumbs. They were able to replicate the issue back in August, but no fix has been forthcoming. I updated the firmware to 2009.09.01.0.0,1-1.2 because it was supposed to improve iSCSI performance. It actually made things slightly worse.
    So here's the problem:
    Let's say you have an iSCSI LUN set up on a RAIDz2 pool. Until you fill up the read cache, you can copy files from the 7110 to your Windows server at wire speed. As soon as the cache fills up (and you wish to copy a file that has not been cached), the transfer rate drops to less than 10 MB/s. (!?!?!?!?!?!)
    It has nothing to do with the switch. I bypassed it with a direct connection. It's not Nagle's Algorithm. I've disabled that. It's not Windows or the particular server. This behavior persists across multiple machines and operating systems. And like I said, Sun has replicated the problem.
    When the file(s) are in cache and you copy them from the 7110, the Networking tab in Task Manager shows 50%-plus utilization of the NIC. Once the cache has been filled and I try to copy a non-cached file, NIC utilization drops to 7%.
    I have graphs from the analytics that show that when a file is cached and you try to copy it using Windows Explorer, network utilization (on the 7110) spikes and hard disk activity drops. There is a direct correlation. If the read cache fills up part of the way into the file copy, network activity drops and hard drive activity picks up immediately.
    Here's the kicker: Per instructions from the Sun support engineer, I ran iostat -xtcn from a shell before, during, and after attempts to copy a bunch of non-cached files (via Windows Explorer). Here are the results:
    Sun1# iostat -xtnc
       tty         cpu
    tin tout  us sy wt id
       0    0   0  7  0 92
                        extended device statistics             
        r/s    w/s   kr/s   kw/s wait actv wsvc_t asvc_t  %w  %b device
        0.3    6.2   19.0  277.0  0.0  0.1    2.8   18.7   0   1 c0t5000C50007F9EE7Bd0
        0.3    6.2   20.2  277.0  0.0  0.1    2.6   17.3   0   1 c0t5000C5000AD6B6C7d0
      192.7   16.2 1249.8   20.0  0.3  0.9    1.3    4.4   2  15 c0t5000C5000F83226Fd0
      192.3   16.2 1258.3   20.0  0.3  0.9    1.3    4.4   2  15 c0t5000C5000F816EF7d0
      192.5   16.2 1249.1   20.0  0.3  0.9    1.3    4.4   2  15 c0t5000C5000F8188BBd0
      192.4   16.2 1253.9   20.0  0.3  0.9    1.3    4.4   2  15 c0t5000C5000F83D80Bd0
      192.6   16.2 1247.3   20.0  0.3  0.9    1.3    4.4   2  15 c0t5000C5000F85377Fd0
      192.6   16.2 1247.2   20.0  0.3  0.9    1.3    4.4   2  15 c0t5000C5000F81889Fd0
      192.2   16.1 1258.7   20.0  0.3  0.9    1.4    4.5   3  15 c0t5000C5000F831B5Bd0
      192.5   16.2 1250.1   20.0  0.3  0.9    1.3    4.3   2  15 c0t5000C5000F8187F7d0
      192.2   16.1 1264.1   20.0  0.3  0.9    1.4    4.5   3  15 c0t5000C5000F814A23d0
        0.0    0.0    0.0    0.0  0.0  0.0    0.0    0.0   0   0 c0t5000C5000F814747d0
      192.2   16.2 1258.9   20.0  0.3  0.9    1.3    4.4   2  15 c0t5000C5000F838E47d0
      192.5   16.2 1246.3   20.0  0.3  0.9    1.3    4.3   2  15 c0t5000C5000F83B94Fd0
      192.3   16.2 1260.3   20.0  0.3  0.9    1.3    4.4   2  15 c0t5000C5000F814F37d0
      192.7   16.2 1247.5   20.0  0.3  0.9    1.3    4.4   2  15 c0t5000C5000F8544F7d0
        0.0    0.0    0.0    0.0  0.0  0.0    0.0    0.0   0   0 c2t0d0
        0.0    0.0    0.0    0.0  0.0  0.0    0.0    0.0   0   0 c2t0d1
    Sun1# iostat -xtnc
       tty         cpu
    tin tout  us sy wt id
       0    0   0  7  0 92
                        extended device statistics             
        r/s    w/s   kr/s   kw/s wait actv wsvc_t asvc_t  %w  %b device
        0.3    6.2   19.0  277.0  0.0  0.1    2.8   18.7   0   1 c0t5000C50007F9EE7Bd0
        0.3    6.2   20.2  277.0  0.0  0.1    2.6   17.3   0   1 c0t5000C5000AD6B6C7d0
      192.7   16.2 1249.8   20.0  0.3  0.9    1.3    4.4   2  15 c0t5000C5000F83226Fd0
      192.3   16.2 1258.3   20.0  0.3  0.9    1.3    4.4   2  15 c0t5000C5000F816EF7d0
      192.5   16.2 1249.0   20.0  0.3  0.9    1.3    4.4   2  15 c0t5000C5000F8188BBd0
      192.4   16.2 1253.9   20.0  0.3  0.9    1.3    4.4   2  15 c0t5000C5000F83D80Bd0
      192.6   16.2 1247.3   20.0  0.3  0.9    1.3    4.4   2  15 c0t5000C5000F85377Fd0
      192.6   16.2 1247.2   20.0  0.3  0.9    1.3    4.4   2  15 c0t5000C5000F81889Fd0
      192.2   16.1 1258.7   20.0  0.3  0.9    1.4    4.5   3  15 c0t5000C5000F831B5Bd0
      192.5   16.2 1250.1   20.0  0.3  0.9    1.3    4.3   2  15 c0t5000C5000F8187F7d0
      192.2   16.1 1264.0   20.0  0.3  0.9    1.4    4.5   3  15 c0t5000C5000F814A23d0
        0.0    0.0    0.0    0.0  0.0  0.0    0.0    0.0   0   0 c0t5000C5000F814747d0
      192.2   16.2 1258.9   20.0  0.3  0.9    1.3    4.4   2  15 c0t5000C5000F838E47d0
      192.5   16.2 1246.3   20.0  0.3  0.9    1.3    4.3   2  15 c0t5000C5000F83B94Fd0
      192.3   16.2 1260.3   20.0  0.3  0.9    1.3    4.4   2  15 c0t5000C5000F814F37d0
      192.7   16.2 1247.4   20.0  0.3  0.9    1.3    4.4   2  15 c0t5000C5000F8544F7d0
        0.0    0.0    0.0    0.0  0.0  0.0    0.0    0.0   0   0 c2t0d0
        0.0    0.0    0.0    0.0  0.0  0.0    0.0    0.0   0   0 c2t0d1
    Sun1# iostat -xtnc
       tty         cpu
    tin tout  us sy wt id
       0    0   0  7  0 92
                        extended device statistics             
        r/s    w/s   kr/s   kw/s wait actv wsvc_t asvc_t  %w  %b device
        0.3    6.2   19.0  277.0  0.0  0.1    2.8   18.7   0   1 c0t5000C50007F9EE7Bd0
        0.3    6.2   20.2  277.0  0.0  0.1    2.6   17.3   0   1 c0t5000C5000AD6B6C7d0
      192.7   16.2 1249.8   20.0  0.3  0.9    1.3    4.4   2  15 c0t5000C5000F83226Fd0
      192.3   16.2 1258.3   20.0  0.3  0.9    1.3    4.4   2  15 c0t5000C5000F816EF7d0
      192.5   16.2 1249.0   20.0  0.3  0.9    1.3    4.4   2  15 c0t5000C5000F8188BBd0
      192.4   16.2 1253.9   20.0  0.3  0.9    1.3    4.4   2  15 c0t5000C5000F83D80Bd0
      192.6   16.2 1247.3   20.0  0.3  0.9    1.3    4.4   2  15 c0t5000C5000F85377Fd0
      192.6   16.2 1247.2   20.0  0.3  0.9    1.3    4.4   2  15 c0t5000C5000F81889Fd0
      192.2   16.1 1258.7   20.0  0.3  0.9    1.4    4.5   3  15 c0t5000C5000F831B5Bd0
      192.5   16.2 1250.1   20.0  0.3  0.9    1.3    4.3   2  15 c0t5000C5000F8187F7d0
      192.2   16.1 1264.0   20.0  0.3  0.9    1.4    4.5   3  15 c0t5000C5000F814A23d0
        0.0    0.0    0.0    0.0  0.0  0.0    0.0    0.0   0   0 c0t5000C5000F814747d0
      192.2   16.2 1258.9   20.0  0.3  0.9    1.3    4.4   2  15 c0t5000C5000F838E47d0
      192.5   16.2 1246.3   20.0  0.3  0.9    1.3    4.3   2  15 c0t5000C5000F83B94Fd0
      192.3   16.2 1260.3   20.0  0.3  0.9    1.3    4.4   2  15 c0t5000C5000F814F37d0
      192.7   16.2 1247.4   20.0  0.3  0.9    1.3    4.4   2  15 c0t5000C5000F8544F7d0
        0.0    0.0    0.0    0.0  0.0  0.0    0.0    0.0   0   0 c2t0d0
        0.0    0.0    0.0    0.0  0.0  0.0    0.0    0.0   0   0 c2t0d1I think it is clear from this output, as well as from the lack of rapid blinking of the LEDs on the 7110 that it isn't even trying to pull the information off the hard drives.
    And get this--the support engineer was able to verify that the 7110 performs iSCSI write operations faster than reads.
    So my question is this: Does anyone know if it's as simple as changing a setting, or will I have to wait for Sun to get their act together?

    Thanks for that information. I'm not familiar with Solaris commands, so I just did what I was told to do. Adding the interval parameter did the trick. Thank you!
    So here's some output obtained during a file transfer:
    Sun1# iostat -xtnc 5
       tty         cpu
    tin tout  us sy wt id
       0    0   0  7  0 92
                        extended device statistics             
        r/s    w/s   kr/s   kw/s wait actv wsvc_t asvc_t  %w  %b device
        0.3    6.2   19.1  277.3  0.0  0.1    2.8   18.7   0   1 c0t5000C50007F9EE7Bd0
        0.3    6.2   20.2  277.3  0.0  0.1    2.7   17.3   0   1 c0t5000C5000AD6B6C7d0
      194.2   16.2 1260.5   20.0  0.3  0.9    1.3    4.4   2  15 c0t5000C5000F83226Fd0
      193.8   16.2 1269.0   20.0  0.3  0.9    1.3    4.4   2  15 c0t5000C5000F816EF7d0
      194.1   16.2 1259.7   20.0  0.3  0.9    1.3    4.4   2  15 c0t5000C5000F8188BBd0
      193.9   16.2 1264.6   20.0  0.3  0.9    1.3    4.5   2  15 c0t5000C5000F83D80Bd0
      194.1   16.2 1257.9   20.0  0.3  0.9    1.3    4.4   2  15 c0t5000C5000F85377Fd0
      194.2   16.2 1257.8   20.0  0.3  0.9    1.3    4.4   2  15 c0t5000C5000F81889Fd0
      193.7   16.2 1269.4   20.0  0.3  0.9    1.4    4.5   3  15 c0t5000C5000F831B5Bd0
      194.0   16.2 1260.8   20.0  0.3  0.9    1.3    4.3   2  15 c0t5000C5000F8187F7d0
      193.7   16.2 1274.9   20.0  0.3  0.9    1.4    4.5   3  15 c0t5000C5000F814A23d0
        0.0    0.0    0.0    0.0  0.0  0.0    0.0    0.0   0   0 c0t5000C5000F814747d0
      193.7   16.2 1269.7   20.0  0.3  0.9    1.3    4.4   2  15 c0t5000C5000F838E47d0
      194.0   16.2 1257.0   20.0  0.3  0.9    1.3    4.3   2  15 c0t5000C5000F83B94Fd0
      193.8   16.2 1271.1   20.0  0.3  0.9    1.3    4.4   2  15 c0t5000C5000F814F37d0
      194.3   16.2 1258.1   20.0  0.3  0.9    1.3    4.4   2  15 c0t5000C5000F8544F7d0
        0.0    0.0    0.0    0.0  0.0  0.0    0.0    0.0   0   0 c2t0d0
        0.0    0.0    0.0    0.0  0.0  0.0    0.0    0.0   0   0 c2t0d1
       tty         cpu
    tin tout  us sy wt id
       0  336   0 12  0 88
                        extended device statistics             
        r/s    w/s   kr/s   kw/s wait actv wsvc_t asvc_t  %w  %b device
        0.0   29.5    0.0 1863.2  0.1  0.4    2.2   14.8   1   5 c0t5000C50007F9EE7Bd0
        0.0   29.1    0.0 1863.2  0.0  0.4    0.4   13.8   0   5 c0t5000C5000AD6B6C7d0
      477.7    1.0  631.7    9.5  1.1  0.6    2.4    1.3  48  60 c0t5000C5000F83226Fd0
      483.1    1.0  669.9    9.5  0.0  0.9    0.0    1.8   0  36 c0t5000C5000F816EF7d0
      478.3    1.0  704.2    9.4  0.0  0.9    0.0    1.8   0  35 c0t5000C5000F8188BBd0
      484.5    1.0  678.8    9.6  0.0  0.8    0.0    1.7   0  35 c0t5000C5000F83D80Bd0
      485.3    1.0  683.3    9.6  0.0  0.8    0.0    1.7   0  35 c0t5000C5000F85377Fd0
      483.9    1.0  623.8    9.5  0.0  0.8    0.0    1.7   0  35 c0t5000C5000F81889Fd0
      480.1    1.0  650.3    9.5  0.0  0.9    0.0    1.9   0  37 c0t5000C5000F831B5Bd0
      484.3    1.0  709.0    9.5  0.0  0.9    0.0    1.8   0  35 c0t5000C5000F8187F7d0
      480.9    1.0  665.2    9.5  0.0  0.9    0.0    1.9   0  37 c0t5000C5000F814A23d0
        0.0    0.0    0.0    0.0  0.0  0.0    0.0    0.0   0   0 c0t5000C5000F814747d0
      484.9    1.0  651.6    9.5  0.0  0.9    0.0    1.9   0  37 c0t5000C5000F838E47d0
      483.5    1.0  718.7    9.6  0.0  0.9    0.0    1.9   0  38 c0t5000C5000F83B94Fd0
      485.5    1.0  668.4    9.5  0.0  0.8    0.0    1.7   0  35 c0t5000C5000F814F37d0
      482.9    1.0  675.4    9.4  0.0  0.8    0.0    1.7   0  35 c0t5000C5000F8544F7d0
        0.0    0.0    0.0    0.0  0.0  0.0    0.0    0.0   0   0 c2t0d0
        0.0    0.0    0.0    0.0  0.0  0.0    0.0    0.0   0   0 c2t0d1
       tty         cpu
    tin tout  us sy wt id
       0  336   0  8  0 91
                        extended device statistics             
        r/s    w/s   kr/s   kw/s wait actv wsvc_t asvc_t  %w  %b device
        0.2    0.0    0.2    0.0  0.0  0.0    0.0    0.1   0   0 c0t5000C50007F9EE7Bd0
        0.2    0.0    0.1    0.0  0.0  0.0    0.0    0.3   0   0 c0t5000C5000AD6B6C7d0
      643.7    1.2  967.9    3.5  1.2  0.7    1.8    1.0  50  67 c0t5000C5000F83226Fd0
      662.1    1.2  946.4    3.3  0.0  1.1    0.0    1.6   0  43 c0t5000C5000F816EF7d0
      667.1    1.2  943.2    3.6  0.0  1.1    0.0    1.6   0  43 c0t5000C5000F8188BBd0
      670.5    1.2  952.7    3.6  0.0  1.0    0.0    1.5   0  41 c0t5000C5000F83D80Bd0
      673.3    1.2  938.0    3.6  0.0  1.0    0.0    1.5   0  40 c0t5000C5000F85377Fd0
      666.5    1.2  945.6    3.5  0.0  0.9    0.0    1.4   0  39 c0t5000C5000F81889Fd0
      667.1    1.2  948.3    3.3  0.0  1.0    0.0    1.5   0  41 c0t5000C5000F831B5Bd0
      671.5    1.2  945.1    3.5  0.0  1.0    0.0    1.5   0  40 c0t5000C5000F8187F7d0
      671.1    1.2  964.0    3.4  0.0  1.1    0.0    1.6   0  42 c0t5000C5000F814A23d0
        0.0    0.0    0.0    0.0  0.0  0.0    0.0    0.0   0   0 c0t5000C5000F814747d0
      669.7    1.2  973.7    3.2  0.0  1.0    0.0    1.6   0  42 c0t5000C5000F838E47d0
      668.9    1.2  926.0    3.6  0.0  1.0    0.0    1.5   0  40 c0t5000C5000F83B94Fd0
      671.3    1.2  928.2    3.3  0.0  1.1    0.0    1.6   0  42 c0t5000C5000F814F37d0
      673.3    1.2  932.2    3.6  0.0  1.0    0.0    1.5   0  40 c0t5000C5000F8544F7d0
        0.0    0.0    0.0    0.0  0.0  0.0    0.0    0.0   0   0 c2t0d0
        0.0    0.0    0.0    0.0  0.0  0.0    0.0    0.0   0   0 c2t0d1
       tty         cpu
    tin tout  us sy wt id
       0  336   0 10  0 90
                        extended device statistics             
        r/s    w/s   kr/s   kw/s wait actv wsvc_t asvc_t  %w  %b device
        0.0    0.0    0.0    0.0  0.0  0.0    0.0    0.0   0   0 c0t5000C50007F9EE7Bd0
        0.0    0.0    0.0    0.0  0.0  0.0    0.0    0.0   0   0 c0t5000C5000AD6B6C7d0
      532.9    0.8  752.0    7.1  1.1  0.6    2.1    1.1  48  61 c0t5000C5000F83226Fd0
      550.7    0.8  762.7    7.2  0.0  0.9    0.0    1.7   0  35 c0t5000C5000F816EF7d0
      548.3    0.8  776.3    7.2  0.0  0.9    0.0    1.7   0  37 c0t5000C5000F8188BBd0
      551.1    0.8  812.9    7.2  0.0  0.9    0.0    1.7   0  37 c0t5000C5000F83D80Bd0
      551.1    0.8  752.3    7.2  0.0  0.9    0.0    1.6   0  36 c0t5000C5000F85377Fd0
      548.1    0.8  755.3    7.1  0.0  0.9    0.0    1.6   0  34 c0t5000C5000F81889Fd0
      544.5    0.8  800.4    7.2  0.0  1.0    0.0    1.8   0  38 c0t5000C5000F831B5Bd0
      553.9    0.8  736.8    7.2  0.0  0.9    0.0    1.6   0  36 c0t5000C5000F8187F7d0
      552.3    0.8  797.5    7.2  0.0  0.9    0.0    1.6   0  36 c0t5000C5000F814A23d0
        0.0    0.0    0.0    0.0  0.0  0.0    0.0    0.0   0   0 c0t5000C5000F814747d0
      549.1    0.8  788.2    7.2  0.0  0.9    0.0    1.7   0  37 c0t5000C5000F838E47d0
      548.5    0.8  787.3    7.1  0.0  0.9    0.0    1.7   0  36 c0t5000C5000F83B94Fd0
      552.3    0.8  756.7    7.2  0.0  0.9    0.0    1.7   0  36 c0t5000C5000F814F37d0
      545.3    0.8  795.7    7.1  0.0  0.9    0.0    1.7   0  37 c0t5000C5000F8544F7d0
        0.0    0.0    0.0    0.0  0.0  0.0    0.0    0.0   0   0 c2t0d0
        0.0    0.0    0.0    0.0  0.0  0.0    0.0    0.0   0   0 c2t0d1I don't know how to interpret this, so any help would be greatly appreciated.
    Thanks!

  • How can i use an existing vpn connection without using the option "Send all traffic over vpn connection"?

    I have been trying to get my computer (os x.7) to astablish a remote desktop connection to my work computer via a vpn tunnel. In fact I have just discovered that it works fine if i select to "send all traffic over vpn connection" from the options in the advanced setup of the vpn.
    If the option is selected microsofts "Remote desktop connection for mac" works just fine. However without selecting the option it is not taking advantage of the tunnel but tries to connect as if the tunnel would not exist.
    Now the question is how do I get program to use the vpn tunnel without checking the above option?
    Thanks for any hints and pointers.

    Then can her computer be authorized to both accounts?
    Absolutely. You can authorize any given computer to up to five iTunes Store accounts.
    If purchases are made on her account, to a computer authorized to my account, can I put those songs on my iPod?
    If you connect your iPod to her computer, yes. Tracks download only to the computer from which they're purchased, regardless of which iTunes Store account is used for the purchase. Or you could copy the tracks from her computer to yours and then authorize your computer to her iTunes Store account. But that's sort of defeating the original purpose, it would seem to me.
    is it better to buy music through Amazon downloads and/or actually purchasing CDs to avoid the security features iTunes puts on its music?
    That's certainly an option. If it's an entire album I want, I buy CDs. That way I can import them at the quality I want and to whichever of my systems I want. Amazon or one of the other download stores that offer tracks as MP3 are also an option, though for me download stores are best when you just want a couple of tracks off a given CD.

Maybe you are looking for