netty大文件下载

ChannelTrafficShapingHandler 限流

        ChannelPipeline pipeline = ch.pipeline();
        //**流量整形,必须放在第一位;使用DefaultFileRegion(sendFile)时该限制不起作用**
        pipeline.addLast(new ChannelTrafficShapingHandler(100 * 1024, 100 * 1024));
        pipeline.addLast(new HttpServerCodec());
        // 支持最大上行50M
        pipeline.addLast(new HttpObjectAggregator(50 * 1024 * 1024));
        //支持异步发送大的码流,但不会占用过多的内存,防止发生java内存溢出
        pipeline.addLast(new ChunkedWriteHandler());
        pipeline.addLast(new FileShareHttpInboundHandler());

使用DefaultFileRegion时ChannelTrafficShapingHandler配置不起作用。


DefaultFileRegion(sendfile优化)

    @Override
    public void channelRead0(ChannelHandlerContext ctx, String msg) throws Exception {
        RandomAccessFile raf = null;
        long length = -1;
        try {
            raf = new RandomAccessFile(msg, "r");
            length = raf.length();
        } catch (Exception e) {
            ctx.writeAndFlush("ERR: " + e.getClass().getSimpleName() + ": " + e.getMessage() + '\n');
            return;
        } finally {
            if (length < 0 && raf != null) {
                raf.close();
            }
        }

        ctx.write("OK: " + raf.length() + '\n');
        if (ctx.pipeline().get(SslHandler.class) == null) {
            // SSL not enabled - can use zero-copy file transfer.
            ctx.write(new DefaultFileRegion(raf.getChannel(), 0, length));
        } else {
            // SSL enabled - cannot use zero-copy file transfer.
            ctx.write(new ChunkedFile(raf));
        }
        ctx.writeAndFlush("\n");
    }

上面的代码从netty example file模块获取,当channel支持ssl时,DefaultFileRegion同样不起作用。


  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值