Debian Linux/unstable & IDEA startup time
Hi,
I'm running IDEA #3542 and am experiencing very long startup times: IDEA takes about 5mins to come up using JDK1.5.0_05. I checked with other applications and the same JDK but they behave as expected. Can anybody reporduce this behavior?
I attached an strace which might help further investigation.
Thanks,
-tom
Please sign in to leave a comment.
Any startup or first startup after clearing caches? We have fixed
performance leak in latter case in 5.0.3
tom quas wrote:
--
Best regards,
Maxim Mossienko
IntelliJ Labs / JetBrains Inc.
http://www.intellij.com
"Develop with pleasure!"
Unfortunately not. I removed everything under system/{caches,jars}. Anything else I can try?
Thank you for your quick response.
Ouch, it looks like it hangs in some network connection code. For some reason it wants on a tcp6 connection, and I guess it sits there until it timeouts. Could this be a JDK1.5.0_05-related issue?
$ ps ax|grep idea
18357 ? Sl 0:00 /usr/local/lib/jdk1.5.0_05/bin/java -Xms32m -Xmx192m -XX:MaxPermSize=92m -ea -Xbootclasspath/p:../lib/boot.jar: com.intellij.idea.Main
$ netstat -anp|grep 18357
tcp6 0 0 :::32818 :::* LISTEN 18357/java
tcp6 0 1 ::1:38161 ::1:32818 SYN_SENT 18357/java
$ netstat -anp|grep 18357
tcp6 0 0 :::6942 :::* LISTEN 18357/java
udp6 0 0 :::9876 :::* 18357/java
udp6 0 0 ::ffff:127.0.0.1:33084 :::* 18357/java
unix 3 STREAM CONNECTED 64795 18357/java
Oops, I should probably mention that the first netstat shows that state of IDEA during the lockup, whereas the second one shows its state suring its startup.
Probably this is some IDEA network activity
tom quas wrote:
--
Best regards,
Maxim Mossienko
IntelliJ Labs / JetBrains Inc.
http://www.intellij.com
"Develop with pleasure!"
I switched off IPv6 for now and it works again; haven't had the time to investigate further, though.