question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

bind takes 5 seconds on osx, maybe related to logback-classic version

See original GitHub issue

I’m running into some weird interaction between logback-classic and netty which is cause netty to take 5 seconds extra to bind when using a version of logback-classic equal to or higher than 1.1.10.

The difference in time taken is always 5 seconds and feels like some sort of sleep …

Unfortunately I’m not familiar enough with either project to figure out why… 😕
5000 does appear multiple times in the logback code: https://github.com/qos-ch/logback/search?q=5000&unscoped_q=5000

Expected behavior

bind to take ~50ms.

Actual behavior

bind takes ~5000ms.

Steps to reproduce

Running the code snippet below with logback-classic set to a version 1.1.10 or higher.

Minimal yet complete reproducer code (or URL to code)

/*
 * Copyright 2013 The Netty Project
 *
 * The Netty Project licenses this file to you under the Apache License,
 * version 2.0 (the "License"); you may not use this file except in compliance
 * with the License. You may obtain a copy of the License at:
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations
 * under the License.
 */
package io.netty.example.slow;

import io.netty.bootstrap.ServerBootstrap;
import io.netty.channel.ChannelFuture;
import io.netty.channel.ChannelInitializer;
import io.netty.channel.EventLoopGroup;
import io.netty.channel.nio.NioEventLoopGroup;
import io.netty.channel.socket.SocketChannel;
import io.netty.channel.socket.nio.NioServerSocketChannel;
import java.io.IOException;
import java.net.InetSocketAddress;

import org.slf4j.LoggerFactory;
import org.slf4j.Logger;

/**
 * Sends one message to a serial device
 */
public final class Slow {
  private static final Logger logger = LoggerFactory.getLogger(Slow.class.getName());

  public static void main(String[] args) throws Exception {
    EventLoopGroup group = new NioEventLoopGroup();

    try {
      ServerBootstrap serverBootstrap = new ServerBootstrap();
      serverBootstrap.group(group);
      serverBootstrap.channel(NioServerSocketChannel.class);
      serverBootstrap.localAddress(new InetSocketAddress("localhost", 50051));

      serverBootstrap.childHandler(new ChannelInitializer<SocketChannel>() {
        protected void initChannel(SocketChannel socketChannel) throws Exception {
        }
      });

      logger.info("bind....");

      long before = System.nanoTime();
      ChannelFuture channelFuture = serverBootstrap.bind().sync();
      long after = System.nanoTime();
      logger.info("Server started, listening on " + 50051 + ". took: " + ((after - before) / 1e6));
      channelFuture.channel().closeFuture().sync();
    } catch (Exception e) {
      e.printStackTrace();
    } finally {
      group.shutdownGracefully();
    }
  }
}

I’ve simply added this to the examples of netty to try and keep anything else from affecting it.

Netty version

4.1.34.Final

JVM version (e.g. java -version)

java version "11.0.1" 2018-10-16 LTS
Java(TM) SE Runtime Environment 18.9 (build 11.0.1+13-LTS)
Java HotSpot(TM) 64-Bit Server VM 18.9 (build 11.0.1+13-LTS, mixed mode)

OS version (e.g. uname -a)

Darwin ruben-macbook.local 18.5.0 Darwin Kernel Version 18.5.0: Mon Mar 11 20:40:32 PDT 2019; root:xnu-4903.251.3~3/RELEASE_X86_64 x86_64

Issue Analytics

  • State:closed
  • Created 4 years ago
  • Comments:7 (3 by maintainers)

github_iconTop GitHub Comments

2reactions
normanmaurercommented, Apr 2, 2019

@rubensayshi I think this is related to https://thoeni.io/post/macos-sierra-java/ and so nothing to do with netty. Can you check ?

0reactions
rubensayshicommented, Apr 3, 2019

yes, it actually is!

Read more comments on GitHub >

github_iconTop Results From Across the Web

Class path contains multiple SLF4J bindings - Stack Overflow
You have to use the information SLF4J provide you and back trace the dependency using dependency:tree and its includes option. This message:
Read more >
News - Logback - QOS.ch
2022-11-18 Release of logback versions 1.3.5 and 1.4.5. • Fixed incomplete handling of insertFromJNDI element in logback-classic configuration files.
Read more >
Fix Wi-Fi Problems in OS X Yosemite - OSXDaily
On the keyboard, press and hold down the Shift+Control+Option keys and the Power button at the same time, hold them all for a...
Read more >
Java Log Collection - Datadog Docs
The following instructions show setup examples for the Log4j, Log4j 2, and Logback logging libraries. Configure your logger. JSON format. Log4j; Log4j 2 ......
Read more >
Reactor Netty Reference Guide
The BOM concept is supported in Gradle since version 5. ... reactor-netty-core/src/main/java/reactor/netty/tcp/TcpServerBind.java.
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found