免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 3631 | 回复: 3
打印 上一主题 下一主题

Perl socket 并发数受限 [复制链接]

论坛徽章:
6
IT运维版块每日发帖之星
日期:2015-09-05 06:20:00IT运维版块每日发帖之星
日期:2015-09-06 06:20:00IT运维版块每日发帖之星
日期:2015-10-17 06:20:00IT运维版块每周发帖之星
日期:2015-11-06 19:28:13IT运维版块每日发帖之星
日期:2015-11-07 06:20:00操作系统版块每周发帖之星
日期:2015-12-02 15:01:04
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-07-28 16:51 |只看该作者 |倒序浏览
我分别在一台hpux和aix上创建了两个测试文件夹,每个文件夹有331个文件,然后运行client程序,代码如下:
#!/usr/local/bin/perl
use IO::Handle;
use Socket;

socket(FH, PF_INET, SOCK_STREAM, getprotobyname('tcp')) || die $!;

my $dest = sockaddr_in (8099, inet_aton('16.158.49.140'));
connect (FH, $dest) || die $!;
FH->autoflush(1);

open(DATA,"$ARGV[0]");
while(<DATA>)
{
#  print "this is " . $_ . "\n";
  send(FH, $_,o);
}

send(FH, $a,o);
close DATA;
close FH;


发现在一台机器上同时有331,245,217个进程连接请求的时候会出现数据丢失的情况。将这个数量减少到197数据能正常传送到server端。
在两台机器上同时运行client,其中一台出现如下错误:
A connection with a remote socket was reset by that socket. at ./client.pm line 8.
A connection with a remote socket was reset by that socket. at ./client.pm line 8.
A connection with a remote socket was reset by that socket. at ./client.pm line 8.
A connection with a remote socket was reset by that socket. at ./client.pm line 8.
A connection with a remote socket was reset by that socket. at ./client.pm line 8.
按照目前的机制,同一时间最大同时连接数应该在250左右。
server是运行在windows2003上的,代码如下:
#!/bin/perl
use Socket;

# initial the socket
my $proto = getprotobyname('tcp');
socket(FH, PF_INET, SOCK_STREAM, $proto) || die $!;

# bound to a port on the local machine by passing a port and an address data structure
my $sin = sockaddr_in (8099, INADDR_ANY);

bind (FH, $sin) || die $!;

# The listen function tells the operating system that the server is ready to accept incoming network connections on the port.
listen (FH, SOMAXCONN);

$SIG{CHLD} = sub{while(waitpid(-1,WNOHANG)>0){}};

while (1)
{
   while ($remote_addr=accept (NEW, FH))
   {
   my($port,$hisaddr)=sockaddr_in($remote_addr);   
   print "this is port " . $port . "\n";
   print "this is hisaddr " . inet_ntoa($hisaddr) . "\n";
   
   $pid = fork();
   die "Cannot fork: $!" unless defined($pid);
   if ($pid == 0)
   {
   $label=0;
   while (<NEW>)
   {
     $label++;
     if ($label==1)
     {
       $outfile="C:/hpoms/datafile/inbound" . $_;
          open(RESULT,">>$outfile");
     }
     else
     {
          if ($_ =~ /end\r$/)
          {
          $finalfile=$outfile;
          chomp($finalfile);
          chomp($outfile);
         
          $finalfile=~s/tmp/txt/;
          $finalfile=~s/\r//;
          $outfile=~s/\r//;
         
          $cmd="mv \"$outfile\"  \"$finalfile\"";
         
          system($cmd);
          }
          else
          {
         print RESULT $_;
          }
     }
   }
   close(RESULT);
   $label=0;
   
   exit(0);
   } # else 'tis the parent process, which goes back to accept()
   }
}

close(FH);


各位大虾能帮忙看看该问题是怎么回事? 如何增加并发量呢? 是否是os本身限制了并发数? 谢谢!

论坛徽章:
6
IT运维版块每日发帖之星
日期:2015-09-05 06:20:00IT运维版块每日发帖之星
日期:2015-09-06 06:20:00IT运维版块每日发帖之星
日期:2015-10-17 06:20:00IT运维版块每周发帖之星
日期:2015-11-06 19:28:13IT运维版块每日发帖之星
日期:2015-11-07 06:20:00操作系统版块每周发帖之星
日期:2015-12-02 15:01:04
2 [报告]
发表于 2009-07-28 22:43 |只看该作者
我将server程序放到hpux上,则错误情况就消失了。有高手指教说windows默认并发数是256个,hpux则是受内核参数控制!

论坛徽章:
5
技术图书徽章
日期:2014-02-10 10:55:18技术图书徽章
日期:2014-03-17 16:37:45狮子座
日期:2014-04-25 11:17:42未羊
日期:2014-08-13 11:45:23天蝎座
日期:2015-12-16 10:30:37
3 [报告]
发表于 2009-07-29 13:17 |只看该作者
建议用http协议通信,iis没有并发限制

盗版win是突破不了并发限制的,什么最大连接数破解都是胡扯

论坛徽章:
0
4 [报告]
发表于 2009-07-29 13:57 |只看该作者
LS 才胡扯呢,D版和正版 在连接数那里根本没区别。

搞http 又要增加那么投入和风险,你这方案给的太不靠普。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP