2
votes
0answers
39 views

apr_pollset_poll: The timeout specified ha s expired (70007), only concurrent request processed

I'm making a simple restlet server, which takes a json file as post, and returns "helloworld".(Posting here a small replica of my server). I want to benchmark this server using apache benchmark (ab), ...
0
votes
0answers
8 views

Java compilation error for TPC-W Benchmark

I am following the guide given here to install and run the tcp-w benchmark. However, I am facing some java compilation issues. At the very last step, when I do javac rbe/* I get the error: ...
0
votes
0answers
7 views

Error while checking database.properties: Installing RUBiS Benchmark

I am currently trying to install RUBiS PHP version. $ make client #no problem $ make emultor /usr/lib/jvm/java-1.7.0//bin/java -classpath ./Client edu.rice.rubis.client.ClientEmulator RUBiS client ...
2
votes
2answers
66 views

Android Fibonacci Benchmark / Deep recursion

I'm running a Fibonacci benchmark on my Android phone and I'm getting some strange results. As I don't really care if the UI-thread is locked or not, I'm running the code below inside the UI-thread in ...
1
vote
2answers
84 views

Google Caliper: Trouble getting started (Java Benchmarking)

I am trying to use Google Caliper to benchmark some simple code. I am using the examples from their websites. Here's what I've done so far: Downloaded the Caliper JAR and added it to my Netbeans ...
1
vote
0answers
43 views

Unable to load caliper results online

I followed few suggestions available online but none has helped. Got caliper and built it from https://github.com/peterlynch/caliper export ...
0
votes
0answers
34 views

Unable to install Google Caliper

I installed google caliper by downloading its git code, did a mvn clean install of it. This produced caliper-1.0-beta-SNAPSHOT.jar. I included caliper as a maven dependency my project and decided to ...
0
votes
0answers
13 views

NAS parallel benchmark in Java input size too big

I am running NAS NPB3.0 JAVA implementation. The program I am trying to run is BT.java with the input 200 number of time steps 0.0008d0 dt for class A = 0.0008d0. class B = 0.0003d0 class C = ...
0
votes
1answer
34 views

Convert List<Integer> to int[] - Pure Java vs ArrayUtils benchmark issue

I recently had to optimise an api call in a high performance system that did some List<Integer> to int[] conversion. My initial finding was that for my expected average amount of elements pure ...
0
votes
0answers
19 views

Strange Java NBody loop performance with/without arrays

I'm working on benchmarking some programs in some different languages, and I have gotten some very strange results while benchmarking my Java implementations of NBody force simulation (O(n^2) ...
0
votes
1answer
43 views

java heap size grows by portions up to some limit

I am writing a simple server application in Java, and I'm making some benchmarks using Apache benchmark now. Right after the start the resident memory used by server is about 40M. I make the series ...
2
votes
1answer
133 views

Caliper: micro- and macro benchmarks

For ELKI I need (and have) more flexible sorting implementations than what is provided with the standard Java JDK and the Collections API. (Sorting is not my ultimate goal. I use partial sorting for ...
0
votes
3answers
95 views

Java - first http request to specific host significantly slower

I am writing a benchmarking tool to run against a web application. The problem that I am facing is that the first request to the server always takes significantly longer than subsequent requests. I ...
16
votes
2answers
476 views

Guava ImmutableMap noticably slower access than HashMap

While working on a memory benchmark of some high-throughput data structures, I realized I could use an ImmutableMap with only a little refactoring. Thinking this would be an improvement, I threw it ...
1
vote
2answers
55 views

Do performance benchmark tests belong in the realm of JUnit?

I am designing some test cases for my application. Assume that I have a method called ProcessedDataObject createProcessedDataObject(RawDataHolder input) The performance of createProcessedDataObject ...
4
votes
3answers
290 views

Fastest way of converting integer to string in java

Everytime I had to convert an intinto a String I picked either ""+aor Integer.toString(a). Now I wondered which way is faster, so I wrote a simple benchmark that calls function_1, function_2 and ...
7
votes
1answer
54 views

Techniques for causing consistent GC Churn

I'm looking to benchmark how something performs while contending with a high amount of ongoing garbage collection. I've previously benchmarked how it behaves in a stable, single-threaded run, and I'd ...
4
votes
1answer
114 views

Java Benchmarking

We are doing benchmarking for Perl,Php, Python interpreters using there standard benchmark tools like perlbench,pybench and php bench. Now we need to benchmark JAVA and found "OLIO" kit would help. ...
1
vote
0answers
81 views

Is a reliable, monotonic time source available in Hyper-V guests to do benchmarking?

Hyper-V guests encounter horrible clock drifts. If I my memory does not fail me, I saw drifts of many seconds over the course of only a few minutes, if not less. And I'm not talking about cases where ...
1
vote
2answers
87 views

Prevent Java 7 from premature GC

Similar to Can JIT be prevented from optimising away method calls? I'm attempting to track memory usage of long-lived data store objects, however I'm finding that if I initialize a store, log the ...
0
votes
0answers
19 views

need GN graph benchmark

Is there an implementation in java that generates graphs with the girvan newman structure? I have implemented an algorithm that finds communities and i want to see if it works ok.
1
vote
1answer
65 views

Database Benchmark : Weird results when testing concurrency (ExecutorService)

I am currently developing a java Benchmark to evaluate some usecases (inserts, updates, deletes, etc.) with an Apache Derby database. My implementation is the following : After having warmed up the ...
0
votes
1answer
43 views

Does benchmark in java good for compared modular arithmatic operations ?

Can I rely on the results of the benchmark in java to compare the calculations such as modular arithmetic to compare between two operation for example A = B x C MOD N D = E^-1 MOD N Q1) I want ...
3
votes
1answer
63 views

Why does Method access seem faster than Field access?

I was doing some tests to find out what the speed differences are between using getters/setters and direct field access. I wrote a simple benchmark application like this: public class FieldTest { ...
4
votes
1answer
55 views

Benchmarking : Same process multiple times, only one warmup?

I am currently working on a Java application (Benchmark) that has for purpose to mesure some processes relative to a database. My application is supposed to run has following : I have several ...
2
votes
2answers
130 views

How to measure Disk Speed in Java for Benchmarking

I would like to know how can you measure disk speed using Java API. Random read,sequential read and Random and sequential write. If someone thinks it's not a real question. Please explain so before ...
-3
votes
2answers
479 views

GWT Java benchmarks, running the same code in JavaSE vs GWT+browsers [closed]

I have posted GWT (Google Web Toolkit) java benchmarks results here http://thegoodcodeinn.blogspot.it/2013/02/gwt-benchmarks-gwtjsvm-vs-javavm.html . These benchmarks are about executing the same Java ...
0
votes
3answers
346 views

Fast MD5 Library is not faster than Java 7 MD5?

So I was looking for a faster way to calculate MD5 checksums and ran across the Fast MD5 library - but when I benchmark it with Java 7 on my machine it comes out slower than the Java version. Either ...
0
votes
2answers
56 views

Is this a right approach to do a deep copy in java for benchmarking memory?

Since System.arraycopy() and clone() does only shallow copying, I wonder if this approach would work for doing a deep copy. ByteArrayOutputStream bos = new ByteArrayOutputStream(); ...
0
votes
2answers
63 views

Benchmarking HDD

I am trying to benchmark my hard disk and find the throughput in Mb/s and latency in milliseconds. This is my code. public class OneMB implements Timer { public static void main(String a[]) throws ...
0
votes
1answer
94 views

Why the performance discrepancy in try/catch vs. other forms of control flow in Java? [duplicate]

Possible Duplicate: How slow are Java exceptions? The following two programs take approximately the same amount of time to run: public class Break { public static void main(String[] ...
-2
votes
3answers
46 views

what are the java tools for bench-marking and tuning [closed]

What are commonly used enterprise java tools -open source or otherwise for bench-marking and tuning java applications.
1
vote
0answers
77 views

Apache Tika benchmarks

I'm currently developing a Java based web crawler that handles only html files. What I would like to know is if there any benchmarks out there that show the performance of the Apache Tika library on ...
3
votes
4answers
96 views

A proper benchmark?

I wanted to measure, how long 2 different programs need to perform 1 task. One program used threads, the other didn't.The task was to count up to 2000000. Class with threads: public class Main { ...
1
vote
4answers
103 views

Multithreading benchmark test

I want to measure how long it takes for the 2 threads to count till 1000. How can I make a benchmark test of the following code? public class Main extends Thread { public static int number = 0; ...
2
votes
4answers
252 views

D lang simple benchmarking

I'm new in D and I'm comparing it vs Java in simple tests and expecting to see that the native language will be faster (or roughly the same). But it in my first test with recursion D is surprisingly ...
0
votes
0answers
25 views

Why all the SPEC JBB2005 results use Windows server? [closed]

I'm looking at the SPEC JBB2005 result in SPEC JBB website. http://www.spec.org/jbb2005/results/res2012q3/ http://www.spec.org/jbb2005/results/res2012q4/ I find that when use Oracle's HotSpot,seems ...
2
votes
2answers
194 views

Wso2 ESB - Send many requests at the same time to a web service

How can I send many simultaneous Java requests from a Java client to a deployed web service? Knowing that the client was generated from the WSO2ESB.
8
votes
2answers
270 views

Is while(rs.next()) faster than a series of rs.absolute()

Suppose to have a ResultSet rs with n object. This code: while(rs.next()) { // do something on rs } is algoritmically equal to this code (i.e. both gave the same result): for(i=1; i<=n; ...
2
votes
1answer
670 views

guava cache vs ehcache benchmark

I'm trying to decide which of these two to use in my project: guava cache or ehcache. Looking for a lightweight service level caching solution. I've searched for some benchmarks, but couldn't find ...
1
vote
1answer
144 views

JavaFX application boot time performance

I am creating my first JavaFX application, here is a bogged down version: import javafx.application.Application; import javafx.scene.Scene; import javafx.scene.layout.StackPane; import ...
3
votes
0answers
85 views

How to get JVM running time like the JVM hotspot log does?

When I use JVM option -XX:+PrintCompilation I get output like this 60 1 java.lang.String::hashCode (55 bytes) 74 2 sun.nio.cs.UTF_8$Encoder::encode (361 bytes) ...
4
votes
0answers
2k views

Google's Scala performance benchmarks [closed]

Last year google published a benchmark comparing C++, Java, Scala and Go. http://readwrite.com/2011/06/06/cpp-go-java-scala-performance-benchmark The results in the table looked suspicious to me so I ...
0
votes
2answers
159 views

incrementations per second on a 2.5GHz Intel i7

I'm attempting to test some benchmarking tools by running them against a simple program which increments a variable as many times as possible for 1000 milliseconds. How many incrementations of a ...
1
vote
1answer
53 views

Force fixed column order with caliper

I'm running a caliper benchmark with multiple time* methods and two parameters and at the end get a nice table like parameter1 parameter2 benchmark After a small change to a method body I get ...
0
votes
1answer
53 views

timing threadpool java

I need to time the total time it takes for a method to complete, usually i use: long startTime = System.currentTimeMillis(); MethodWithThreads(); // the method which uses threading long endTime = ...
0
votes
1answer
89 views

Get logarithmic benchmark runtime from Caliper

I've recently discovered the Caliper benchmark framework for Java which seems like a very useful tool for microbenchmarks. I'm using it to run microbenchmarks for my vector maths library (vectorz) ...
3
votes
1answer
71 views

Microbenchmarking with Big Data

I'm currently working on my thesis project designing a cache implementation to be used with a shortest-path graph algorithm. The graph algorithm is rather inconsistent with runtimes, so it's too ...
0
votes
1answer
171 views

2D array in Java

Which of the following is faster in Java? Is there any other way that is faster than any of these? int[][] matrix = new int[50][50]; for (int k=0;k<10;k++){ // some calculations here before ...
2
votes
1answer
490 views

What Java utilities exist for benchmarking a machine's CPU, memory, disk and network I/O performance?

I need to explain why my application is performing poorly at a remote location. It is going to be inconvenient for me to install a profiler. I suspect that the machine is configured poorly but I need ...

1 2 3