RFR (L): 8046148: JEP 158 Unified JVM Logging

Kirk Pepperdine kirk at jclarity.com
Wed Sep 9 15:13:14 UTC 2015


Hi,

> 
> At least to me, a choice between one of six possible alternatives is easier than a choice of any number of alternatives from an unlimited set.

That pub/sub works with an unlimited set of subjects this doesn’t seem to represent much of a problem. That hash tags in a tweet come from an unlimited set seems to work and in fact imagine twitter trying to predefine every single hash tag. Again I urge you to look at Neal Ford’s talks on taxonomy. 

> 
>>> It should be easy to specify how much logging you want, so I don't think it would be a good idea to omit levels completely either.
>> tags do not preclude levels. If people want levels they can easily be created with tags. Again Neal Ford has a number of great talks on taxonomy and in my opinion he gets it spot on when he talks about the problems with level based systems.
>> 
>>> For example, some consumers of the logging might only be interested in a certain level of log messages, but from any component or from a broad range of components. Others might want every piece of logging belonging to a (very) specific component.
>> Again, tags do a much better job at this.
>>>> Next, I think there are two points of view that you have to consider. Usability for the producers and usability for the consumers. From a consumer POV what I would like to see is a logging system that promotes stability in the output. Using broad ill defined categories as they are currently defined in the JDK have historically lead to unstable output. This in turn breaks down stream tooling that maybe used to help triage system out in the wild. How does this happen? Well what gets put into a level is completely arbitrary. What goes into warning, fine, finest.. who knows? More to the point, the producers often have to make a quick decision and in their cubicles they often don’t see the entire downstream tooling chains that they are affecting when they do this even when the information being added it very valuable. I’m going to suggest a system, maybe not *the* system or even the *best* system. It’s just a simple system that people have been using in pub/sub messaging systems for years. I think the technique applies because logging is a form of journalling which is just another form of messaging (hence I suggested people looking at Peter Lawyer’s Chronicle which is designed to be used in HFT applications). We can also use ObjectName (jmx) to define tags.
>>>> 
>>>> If you have a tag, let say, gc.agetable, it’s pretty clear what you should get. Also that output is very likely to remain stable over time. In fact, my experience with PrintTenuringDistrubtion is just that. The output has remained stable for years. I cannot say that about any overly broad category of GC logging such as PrintGCDetails (which I would equate to a level). If I have another tag say, gc.collection.scavenge I should get information about scavenges. Again purpose is very clear from both a producer/consumer POV. I can take age data or scavenge or both or gc.collection.* to get all sub categories for gc.collection. This looks like levels and indeed could be used to implement levels but it’s based on categories (tags). At any rate, the taxonomy is clearer and should offer guidelines that makes it easier for the developer to push the information out on the right channel while offering better stability needed for downstream tooling.
>>> The problem of classifying log messages exists whether you use real levels or not; "Should this log message be tagged with verbose?" vs "Should this log message be on trace level?”.
>> I think the problem can be diminished in complexity when you include the vocabulary of the domain in your tag systems. If you think of forcing predefined terms then yes, you are correct.
> 
> With the current proposal one can easily direct VM wide warnings and errors to a log file, the necessary configuration would be -Xlog:all=warning:out.log. Removing the concept of levels and only using domain specific tags to classify log messages would make it pretty complicated to achieve the same effect. The consumer would have to know about all the different components and their domain specific warning/error-equivalent tags in order to get the same output, or am I missing something?

Well, it depends upon how you implement it. JMX has a discovery capability built into ObjectName. I can connect to MBeans that I’ve discovered. Other messaging services also have similar types of discovery services. 


> 
>>>> 
>>>>> Having high-level tags which interact with the standard "levels" seem like a natural fit to me, while the framework proposed in the JEP make it possible for each VM team to support ever more detailed tags to each subsystem where that might be appropriate. For better or worse it adds a degree of freedom. Is your concern that we need more granular tags going forward to help zooming in on specific issues, and that levels for such niche tags might seem/feel superfluous?
>>>> If the system has been built with tags on levels then I would suggest the system has been built upside down or inside out, however you want to describe it.. in the same way that JDK logging was build upside down (first problem, super class knows about subclasses and that is a primary source of classloader leaks and that is just the first issue).
>>>> 
>>>> Kind regards,
>>>> Kirk
>>>> 
>>> I would say the system has been built with levels on tags. The tags define *what* you want to log, and the levels define *how much* information you want. The levels are sort of a filter on the tags you select.
>> So what you are saying is that as a producer I can completely ignore levels if I so choose to do so.
> 
> Each message must be logged to a level, so it can't be ignored really. I just don't see what you mean with the inside-out argument. Whether you view it as levels on tags or tags on levels is up to you.

I think you are assuming a hierarchical implementation. I need to finish working through the implementation to answer the questions I have about how pervasive levels are in the framework. If one is forced to specify a level then my opinion stands.

Kind regards,
Kirk



More information about the hotspot-dev mailing list