Build failed in Jenkins: Cassandra #1830

2012-07-30 Thread Apache Jenkins Server
See -- Started by an SCM change Building remotely on ubuntu4 in workspace Checkout:Cassandra / - hudson.remoting.Cha

Build failed in Jenkins: Cassandra-quick #997

2012-07-30 Thread Apache Jenkins Server
See Changes: [brandonwilliams] FIx cqlsh COPY FROM without explicit column names. [jbellis] handle ApplicationState.SCHEMA not present [brandonwilliams] enable jamm for OpenJDK >= 1.6.0.23 [sylvain] Update news, version and licenses f

Caching Saving Question

2012-07-30 Thread Zhu Han
We have a CF on which both key cache and row cache are enabled. We found the key cache is saved to disk periodically per configuration, while row cache was not saved at all in the last two month. Both the log and ondisk mtime verified the result. Is it the expected behavior? The node runs Cassand

Build failed in Jenkins: Cassandra #1828

2012-07-30 Thread Apache Jenkins Server
See -- Started by an SCM change Building remotely on ubuntu4 in workspace Checkout:Cassandra / - hudson.remoting.Cha

Build failed in Jenkins: Cassandra-quick #996

2012-07-30 Thread Apache Jenkins Server
See Changes: [xedin] improve DynamicEndpointSnitch by using reservoir sampling [jbellis] fix build [jbellis] clean up SequentialWriter and friends -- [...truncated 597 lines...] [junit] Test

Build failed in Jenkins: Cassandra-quick #995

2012-07-30 Thread Apache Jenkins Server
See -- Started by an SCM change Started by an SCM change Building remotely on ubuntu4 in workspace Checkout:Cassandra-quick /

Build failed in Jenkins: Cassandra #1827

2012-07-30 Thread Apache Jenkins Server
See Changes: [sylvain] Add support for row key composite [brandonwilliams] enable jamm for OpenJDK >= 1.6.0.23 [xedin] improve DynamicEndpointSnitch by using reservoir sampling -- Started by an SCM c

Build failed in Jenkins: Cassandra #1826

2012-07-30 Thread Apache Jenkins Server
See -- Started by an SCM change Building remotely on ubuntu4 in workspace Checkout:Cassandra / - hudson.remoting.Cha

Build failed in Jenkins: Cassandra-quick #994

2012-07-30 Thread Apache Jenkins Server
See Changes: [sylvain] Add support for row key composite [brandonwilliams] enable jamm for OpenJDK >= 1.6.0.23 -- Started by an SCM change Building remotely on ubuntu2 in workspace

Re: findbugs

2012-07-30 Thread Zoltan Farkas
Running Findbugs from ant is simple as well, just google "ant Findbugs", plenty of doc and examples on how to do it... --z On Jul 30, 2012, at 11:18 AM, Radim Kolar wrote: > i am using maven to build cassandra. i didnt have in mind to contribute build > system because you are not interested

Re: findbugs

2012-07-30 Thread Radim Kolar
Dne 30.7.2012 16:52, Jonathan Ellis napsal(a): Is Jenkins smart enough to be able to say, "I know we had X findbugs warnings previously, which are known to be false positives, but now there are X+1" ? yes. Look at hadoop project pre-commit check builds.

Re: findbugs

2012-07-30 Thread Radim Kolar
i am using maven to build cassandra. i didnt have in mind to contribute build system because you are not interested in maven. In maven you just call findbugs plugin, nothing special to contribute. I had in mind patch fixing various FB discovered problems. but because its difficult to post it as

Re: findbugs

2012-07-30 Thread Zoltan Farkas
Findbugs can be customized with a exclude filter to exclude from checking issues that produce a high number of false positives. For the rest of "false positives" @suppresswarnings annotation can be used. I suggest Understanding the issue Findbugs highlights before suppressing it, I did see devs

Re: findbugs

2012-07-30 Thread Brandon Williams
On Mon, Jul 30, 2012 at 9:52 AM, Jonathan Ellis wrote: > Is Jenkins smart enough to be able to say, "I know we had X findbugs > warnings previously, which are known to be false positives, but now > there are X+1" ? In my experience, jenkins hasn't even been smart enough to build cassandra in a co

Re: findbugs

2012-07-30 Thread Jonathan Ellis
Is Jenkins smart enough to be able to say, "I know we had X findbugs warnings previously, which are known to be false positives, but now there are X+1" ? On Mon, Jul 30, 2012 at 9:47 AM, Edward Capriolo wrote: > I am sure no one would have an issue with an optional findbugs target. > > On Mon, Ju

Re: findbugs

2012-07-30 Thread Edward Capriolo
I am sure no one would have an issue with an optional findbugs target. On Mon, Jul 30, 2012 at 10:32 AM, Radim Kolar wrote: > was any decision about findbugs made? you do not consider code style > recommended by findbugs as good practice which should be followed? > > I can submit few findbugs pat

Re: findbugs

2012-07-30 Thread Jonathan Ellis
I don't think there is much value in integrating it into the build process, since there is a fairly high rate of false positives. Intermittently running it manually could be valuable, and we have done this in the past. On Mon, Jul 30, 2012 at 9:32 AM, Radim Kolar wrote: > was any decision about f

Re: findbugs

2012-07-30 Thread Radim Kolar
was any decision about findbugs made? you do not consider code style recommended by findbugs as good practice which should be followed? I can submit few findbugs patches, but it will probably turns into flamewar WE vs FINDBUGS like there: https://issues.apache.org/jira/browse/HADOOP-8619 find