Giter Club home page Giter Club logo

Comments (5)

muga avatar muga commented on August 27, 2024

Hi @shinji62,

Thank you for your reporting and investigating. I talk about it with other collaborators. So, please wait.

Thanks,
Muga

from fluent-logger-java.

komamitsu avatar komamitsu commented on August 27, 2024

@shinji62 ,

Thanks for the report. We want to reproduce the connection leak. Could you let me know the followings?

  1. How many did you create Loggers? In other words, How often did you change the arguments for FluentLogger.getLogger()?
  2. How many did those connections remain? What was the connection status ("established", "close_wait" or etc.)?
  3. Did you use multiple FluentLoggerFactory?

from fluent-logger-java.

shinji62 avatar shinji62 commented on August 27, 2024

We wrap the FluentLogger in a logback appender like the following:

doAppend(stuffToLog) {
  FluentLogger logger = FluentLogger.getLogger("sametag", "samehost", "sameport") 

  logger.log(stuffToLog)
}

So getLogger gets called everytime with the same arguments on each log call.

In our runs, we see an increased connections in CONNECTION_ESTABLISHED state.
In our app constantly receiving traffic, it just continues increasing until you
hit system memory limits.

from fluent-logger-java.

komamitsu avatar komamitsu commented on August 27, 2024

I couldn't reproduce this connection leak issue with logback AppenderBase class and concurrently making alot of GC.

Regarding the code, FluentLogger calls RawSocketSender#close() in its finalize(). So it looks that FluentLogger closes the TCP connection even if it's released from the WeakHashMap.

One question. Did you use the logger in multi-threaded environment?

Also, can you create minimal code which can reproduce this issue? If you can, it's very helpful for fixing the issue.

Thanks

from fluent-logger-java.

luizgustavoss avatar luizgustavoss commented on August 27, 2024

I know it has some time, but maybe it can help others.
Could it happen because logger.close()is never called?

doAppend(stuffToLog) {
  FluentLogger logger = null; 
  try{
      logger = FluentLogger.getLogger("sametag", "samehost", "sameport")
      logger.log(stuffToLog)
  } catch(...){
      ...
  } finally{
     if(logger != null)
         logger.close();
  }
}

from fluent-logger-java.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.