Sponsored Content
Top Forums UNIX for Advanced & Expert Users high number of comm_waits for a TSM backup Post 302440891 by arizah on Wednesday 28th of July 2010 09:10:59 PM
Old 07-28-2010
Hi,

Actually IBM came back saying there was a network congestion then we found that on our TSM server we have 4 ethernet adapter attach to it and 1 of them was off . We are planning to get that link back on and hopefully the congestion will go aaway. Thanks again for your reply.
 

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Sun: High kernel usage & very high load averages

Hi, I am seeing very high kernel usage and very high load averages on my system (Although we are not loading much data to our database). Here is the output of top...does anyone know what i should be looking at? Thanks, Lorraine last pid: 13144; load averages: 22.32, 19.81, 16.78 ... (4 Replies)
Discussion started by: lorrainenineill
4 Replies

2. UNIX for Dummies Questions & Answers

SCO Backup Problem (bad Sblock Magic Number)

Hi guys, First I have to say that I'm not Unix expert, I just have medium level experince in Unix scripting and some knowledge with a little of hands on experience of unix administration (Solaris only). I have my plans to move ahead in that field but this is a different story. I have a client... (0 Replies)
Discussion started by: SolarisProToBe
0 Replies

3. AIX

Backup solutions / TSM alternative?

Hey all, I've just about had it with Tivoli Storage Manager. I won't go into the what's and why's. Do any of you have suggestions for an alternative? We have around 70 linux clients and 10 AIX lpars. We mostly do incremental filesystem backups each night and have a 3494 tape library with 3... (2 Replies)
Discussion started by: cruiser
2 Replies

4. AIX

TSM backup and recovery problem

When I use tsm command: archive -subdir=yes /dir1/ to backup file system: /dir1 After I delete the contents under /dir1 and recovery it from TSM backup, retrieve /dir1/ I found the link breaked. Such as: Before: ls -l lrwxrwxrwx 1 abc develop 8 Apr 28 16:04 bin... (1 Reply)
Discussion started by: rainbow_bean
1 Replies

5. AIX

TSM capacity

Dears, The TSM storage that we have is already configured to backup some Application,directories & logs or let's say backup different path from 15 servers, I want to add more Items to be backuped by this storage, how to be confirmed if that possible or not? I mean how do we know the capacity of... (7 Replies)
Discussion started by: arm
7 Replies

6. Red Hat

apache high cpu load on high traffic

i have a Intel Quad Core Xeon X3440 (4 x 2.53GHz, 8MB Cache, Hyper Threaded) with 16gig and 1tb harddrive with a 1gb port and my apache is causing my cpu to go up to 100% on all four cores heres my http.config <IfModule prefork.c> StartServers 10 MinSpareServers 10 MaxSpareServers 15... (4 Replies)
Discussion started by: awww
4 Replies

7. Shell Programming and Scripting

rsync backup mode(--backup) Are there any options to remove backup folders on successful deployment?

Hi Everyone, we are running rsync with --backup mode, Are there any rsync options to remove backup folders on successful deployment? Thanks in adv. (0 Replies)
Discussion started by: MVEERA
0 Replies

8. Red Hat

TSM service not found

Hello, I have some trouble checking the TSM ( Tivoli storage Mgr )service status in Linux box when i am doing service tsm status -bash: service command not found Above command is working fine in all other linux box ( Any idea how to look into this to resolve this, i am clueless from... (2 Replies)
Discussion started by: saurabh84g
2 Replies

9. Linux

Tsm

my backup team was using the bpclient utility which they are migrated to TSM client. I need to change the script running from bpclient to TSM . if anyone give some inputs that would be great. (2 Replies)
Discussion started by: ramkumar15
2 Replies

10. Shell Programming and Scripting

Tsm commands

hi all, In my shell script, they have used the bplist commands where backup team were using the bplist utility and right now they have changed the utility to TSM. Could you please help me out the revelant commands for TSM utility for the backup. Let me know if you have any idea on tis. (1 Reply)
Discussion started by: ramkumar15
1 Replies
CC_DCTCP(4)						   BSD Kernel Interfaces Manual 					       CC_DCTCP(4)

NAME
cc_dctcp -- DCTCP Congestion Control Algorithm DESCRIPTION
The DCTCP (data center TCP) congestion control algorithm aims to maximise throughput and minimise latency in data center networks by utilis- ing the proportion of Explicit Congestion Notification (ECN) marks received from capable hardware as a congestion signal. DCTCP uses fraction of ECN marked packets to update congestion window. The window reduction ratio is always <= 1/2. Only when all of the packets are marked, congestion window is halved. In order to keep the accuracy of the ECN marked fraction, a DCTCP receiver mirrors back incoming (or missing) CE marks by setting (or clear- ing) ECE marks. This feedback methodology is also adopted when the receiver uses delayed ACK. The FreeBSD DCTCP implementation includes two minor modifications for the one-sided deployment. Considering the situation that DCTCP is used as sender and classic ECN is used as receiver, DCTCP sets the CWR flag as the reaction to the ECE flag. In addition, when classic ECN is used as sender and DCTCP is used as receiver, DCTCP avoids to mirror back ACKs only when the CWR flag is set in the incoming packet. The other specifications are based on the paper and Internet Draft referenced in the SEE ALSO section below. MIB Variables The algorithm exposes the following tunable variables in the net.inet.tcp.cc.dctcp branch of the sysctl(3) MIB: alpha An initial estimator of the congestion on the link. Default is 0. dctcp_shift_g An estimation gain in the alpha calculation. Default is 16. slowstart A trigger to halve congestion window after slow start. Default does nothing to halve window. SEE ALSO
cc_chd(4), cc_cubic(4), cc_hd(4), cc_htcp(4), cc_newreno(4), cc_vegas(4), mod_cc(4), tcp(4), mod_cc(9) Mohammad Alizadeh, Albert Greenberg, David A. Maltz, Jitendra Padhye, Parveen Patel, Balaji Prabhakar, Sudipta Sengupta, and Murari Sridharan, "Data Center TCP (DCTCP)", ACM SIGCOMM 2010, http://research.microsoft.com/pubs/121386/dctcp-public.pdf, 63-74, July 2010. Stephen Bensley, Lars Eggert, and Dave Thaler, Microsoft's Datacenter TCP (DCTCP): TCP Congestion Control for Datacenters, http://tools.ietf.org/html/draft-bensley-tcpm-dctcp-01. HISTORY
The cc_dctcp congestion control module first appeared in FreeBSD 11.0. The module was first released in 2014 by Midori Kato studying at Keio University, Japan. AUTHORS
The cc_dctcp congestion control module and this manual page were written by Midori Kato katoon@sfc.wide.ad.jp and Lars Eggert lars@netapp.com with help and modifications from Hiren Panchasara hiren@FreeBSD.org BSD
January 12, 2015 BSD
All times are GMT -4. The time now is 05:17 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy