Re: JMH for log4j microbenchmarks

2014-05-26 Thread Ralph Goers
7;s >>>> license is not ASF compatible, which is ASF policy from what I understand >>>> and how it has been explained on the ML. Ii sounds like the same problem >>>> here. >>>> >>>> Gary >>>> >>>> >>>&

Re: JMH for log4j microbenchmarks

2014-05-26 Thread Matt Sicker
message >> From: Ralph Goers >> Date:05/25/2014 02:26 (GMT-05:00) >> To: Log4J Developers List >> Subject: Re: JMH for log4j microbenchmarks >> >> This is a very good idea. You really don't have a lot to worry about. >> ASF projects can use GPL tools

Re: JMH for log4j microbenchmarks

2014-05-26 Thread Ralph Goers
t I understand >> and how it has been explained on the ML. Ii sounds like the same problem >> here. >> >> Gary >> >> >> Original message >> From: Ralph Goers >> Date:05/25/2014 02:26 (GMT-05:00) >> To: Log4J Deve

Re: JMH for log4j microbenchmarks

2014-05-26 Thread Gary Gregory
t; here. > > Gary > > > Original message > From: Ralph Goers > Date:05/25/2014 02:26 (GMT-05:00) > To: Log4J Developers List > Subject: Re: JMH for log4j microbenchmarks > > This is a very good idea. You really don't have a lot to worry about. ASF

Re: JMH for log4j microbenchmarks

2014-05-26 Thread Gary Gregory
t has been explained on the ML. Ii sounds like the same problem >>> here. >>> >>> Gary >>> >>> >>> Original message >>> From: Ralph Goers >>> Date:05/25/2014 02:26 (GMT-05:00) >>> To: Log4J Developers Li

Re: JMH for log4j microbenchmarks

2014-05-25 Thread Matt Sicker
Commons VFS we are not adding a pom dep to a jar because it's >> license is not ASF compatible, which is ASF policy from what I understand >> and how it has been explained on the ML. Ii sounds like the same problem >> here. >> >> Gary >> >>

Re: JMH for log4j microbenchmarks

2014-05-25 Thread Remko Popma
> license is not ASF compatible, which is ASF policy from what I understand > and how it has been explained on the ML. Ii sounds like the same problem > here. > > Gary > > > Original message > From: Ralph Goers > Date:05/25/2014 02:26 (GMT-05:00)

Re: JMH for log4j microbenchmarks

2014-05-25 Thread Ralph Goers
- > From: Ralph Goers > Date:05/25/2014 02:26 (GMT-05:00) > To: Log4J Developers List > Subject: Re: JMH for log4j microbenchmarks > > This is a very good idea. You really don't have a lot to worry about. ASF > projects can use GPL tools to build or do things like

Re: JMH for log4j microbenchmarks

2014-05-25 Thread Matt Sicker
essage > From: Ralph Goers > Date:05/25/2014 02:26 (GMT-05:00) > To: Log4J Developers List > Subject: Re: JMH for log4j microbenchmarks > > This is a very good idea. You really don't have a lot to worry about. ASF > projects can use GPL tools to build or do thin

Re: JMH for log4j microbenchmarks

2014-05-25 Thread Gary Gregory
05/25/2014 02:26 (GMT-05:00) To: Log4J Developers List Subject: Re: JMH for log4j microbenchmarks This is a very good idea. You really don't have a lot to worry about. ASF projects can use GPL tools to build or do things like you are suggesting. However, we can't ship things that ar

Re: JMH for log4j microbenchmarks

2014-05-25 Thread Ralph Goers
It is failing trying to sign the distribution. You need to create a code signing certificate. The directions are on the ASF web site. Sent from my iPhone > On May 25, 2014, at 9:29 AM, Remko Popma wrote: > > If I run mvn -P apache-release install, the build fails, and I get: > > [INFO] --- ma

Re: JMH for log4j microbenchmarks

2014-05-25 Thread Remko Popma
If I run mvn -P apache-release install, the build fails, and I get: [INFO] --- maven-gpg-plugin:1.1:sign (default) @ log4j --- gpg: keyring "C:/Users/remko/AppData/Roaming/gnupg/secring.gpg" created gpg: keyring "C:/Users/remko/AppData/Roaming/gnupg/pubring.gpg" created gpg: no default secret key:

Re: JMH for log4j microbenchmarks

2014-05-25 Thread Ralph Goers
Also, could you move SimplePerfTest there and run it under JMH? Sent from my iPad > On May 25, 2014, at 8:35 AM, Ralph Goers wrote: > > OK - in the parent pom you will see there is a profile for apache-release. > That profile is automatically set by the parent ASF pom during the release > pl

Re: JMH for log4j microbenchmarks

2014-05-25 Thread Ralph Goers
OK - in the parent pom you will see there is a profile for apache-release. That profile is automatically set by the parent ASF pom during the release plugin. But if you manually set the profile with -p or -P then it will include the distribution module in the build. In the bin assembly you wil

Re: JMH for log4j microbenchmarks

2014-05-25 Thread Remko Popma
Wow, great! Take care and again, don't overdo it! Any time is fine. I tried running mvn -P release install. The build ran successfully, but ended in: [WARNING] The requested profile "release" could not be activated because it does not exist. I checked my local /.m2/repository, and it looks like

Re: JMH for log4j microbenchmarks

2014-05-25 Thread Ralph Goers
I am surprised too. I only can see in one eye and I have to keep my head facing the ground most of the time but I can still use my iPad and phone. Mvn site does not build the distribution. I am actually at the dr to get my bandage off but I will check when I get home what you need to run but I t

Re: JMH for log4j microbenchmarks

2014-05-25 Thread Remko Popma
Ralph, thank you for your feedback. (I am actually surprised to hear from you, I thought you'd be out of commission for a while. Glad you're feeling well so quickly, but be careful not to overdo it.) I've added the log4j-perf module. Initially this has just one microbenchmark test. How do I verif

Re: JMH for log4j microbenchmarks

2014-05-24 Thread Ralph Goers
This is a very good idea. You really don't have a lot to worry about. ASF projects can use GPL tools to build or do things like you are suggesting. However, we can't ship things that are under the GPL and should not commit them to svn. From what you are describing I don't think we would be doin

JMH for log4j microbenchmarks

2014-05-24 Thread Remko Popma
I've been using JMH (http://openjdk.java.net/projects/code-tools/jmh/ ) for performance tests recently and I'm very impressed. JMH is developed by the Oracle java performance team and used internally by Oracle to performance tune the JVM and java core libraries. I would like to use JMH to start bu