I remember when Java 7 was initially released, there were many suggestions not to use it for anything as there were some bugs in compiler optimizations. This was apparently not merely hypothetical. I haven't followed the situation closely since then; have these issues been worked out and it is generally considered safe to use at this point?

This page from java.com makes me think perhaps it's not quite ready yet, but I don't want to read too much into it. If it is not yet safe, is it sufficient to use -XX:-UseLoopPredicate as a VM argument?

Note that I am not only referring to the specific Lucene issue but the general stability of Java 7. Is Java 7 at least as stable as Java 6?

link|improve this question

80% accept rate
5  
The bug reported, which made Lucene (and Eclipse) crash, has been fixed. – Thorbjørn Ravn Andersen Jan 23 at 19:48
1  
2  
@Inerdial I don't know if there are any standards, but there could be. For instance, there could be an independent test suite by a 3rd party or something. Nobody can know if something is bug-free, but it's conceivably possible to answer this question with something besides gut feeling. – Michael McGowan Jan 23 at 19:59
1  
@Inerdial: "How should anyone know about the general stability of Java 7 in a way that's suitable for SO?" Simply make it like this: "Is it as stable as the latest Java 6 is?". Sounds quite simple to me : ) – TacticalCoder Jan 23 at 20:12
2  
Have you stopped beating your wife yet? – Cody Gray Jan 23 at 20:35
show 9 more comments
feedback

closed as not constructive by Mat, Will Jan 24 at 12:15

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

2 Answers

From the very article you linked to:

UPDATE OCTOBER 28, 2011: As noted on Uwe’s blog, Java 7u1 is documented to include the patches to address these issues.

The article that links to says:

Last night, Oracle updated the release notes of Java 7u1 and Java 6u29, stating that they fixed the three Lucene-relevant bugs (plus another one related to that). Based on this confirmation, it's now safe to use Java 7 Update 1 (and later) with Apache Lucene and Apache Solr.

This answer paid for by The Committee For Clicking On Links For You.

link|improve this answer
4  
A subsidiary of Read Your Own Links productions – BlueRaja - Danny Pflughoeft Jan 23 at 19:55
1  
I wasn't referring exclusively to the Lucene issue; it is just the noteworthy example. – Michael McGowan Jan 23 at 19:55
feedback

The major bug that Uwe Schindler from Lucene and Solr annouced was fixed in Java7u1 (read more from him here. I believe it's safe to use Java7 now, especially given that there has also been a second update released for it that "improves reliability and performance".

link|improve this answer
1  
a second update that "improves reliability" is really not something I like to read. It reads like "first update wasn't reliable, this second update is bit more reliable". :( – TacticalCoder Jan 23 at 20:11
1  
@user988052 "improves reliability and performance" is the standard corporate boilerplate for "we fixed some stuff we can't be bothered to enumerate". Cf. every Apple release notes ever. – Inerdial Jan 23 at 20:27
1  
@user988052: Back in 2002, I co-authored a paper that looked at how often security patches had to be re-released because the first patch was incorrect -- out of 136 vulnerabilities, 92 had good "first patches", 20 patches had subsequent patches, and 4 of those were faulty. Perhaps the world has improved in ten years, but I'd be surprised. :) – sarnold Jan 24 at 1:09
feedback

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