Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am running an application in WebSphere Portal Server 6.1 and WAS 7. In the native_stderr.log , I am getting the following error message :

<JNI GetStringCritical: buffer=0x000000004D810988>

<JNI ReleaseStringCritical: buffer=000000004D810988>

These messages fill up the log rapidly and the size of the log increases rapidly and grows up to 1 GB in about 5 minutes.

This does not seem to be related to our deployed application since even when the application is not in use the logs keep getting generated.

Can anyone please help me on this issue. Thanks in advance.

share|improve this question

3 Answers

up vote 0 down vote accepted

The messages are from -verbose:jni. Turn that off to remove the messages. From the admin console:

Servers > (Server Types) > WebSphere application servers > server1 > (Java and Process Management) > Process Definition > (Additional Properties) > Java Virtual Machine

There is an option "Verbose JNI". Alternatively, you have -verbose:jni specified manually in the "Generic JVM Arguments" argument.

share|improve this answer

You got to provide additional info besides this for folks to help.

What is the JNI Stuff that you have in your application?

Notice the call here - GetStringCritical() would likely be blocking GC on the JVM.

Try and turn off the JNI component of the application and see how your servers behave

Manglu

share|improve this answer
Hi, thanks. But My application does not use JNI. This is probably something that WebSphere is doing internally. This is where I am puzzled too. – Nathan May 18 '11 at 11:29

You must have -verbose:jni turned on for the appserver to get those lines. Like bkail says, turn it off to avoid the log spam.

Also see this article for more information about use of JNI: http://www.ibm.com/developerworks/java/library/j-jni/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.