vBulletin Search Engine Optimization
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| I'm sad to say that I have not created any micro-benchmark tests, and unfortunately the improvements are very minor, and far overshadowed by the variability I get from my system. My code wasn't even using Send(byte buf[], int off, int siz). The portion of my application that I am testing is essentially doing bulk loading. I'm using PreparedStatement of insert SQL, a lot of setXXX() and addBatch() calls, and the occasional executeBatch(). Running in Java5, using jdbc driver 8.2.504.jdbc3 connecting to PostgreSQL 8.2.3 with about 40Gb data and indexes in it, all on WinXP. The test ends up performing about 5200 inserts. The improvement I do see (which prompted my email) is in fewer bytecodes being used to perform the same functionality. Adding profiling in to such small methods also results in a larger impact (I'm using YourKit Java Profiler). That said... this implementation was about 30% faster over about 88,000 calls: public void SendInteger4(int val) throws IOException { pg_output.write(val >> 24); pg_output.write(val >> 16); pg_output.write(val >> 8); pg_output.write(val); } SendInteger2 was similarly improved. These changes meant that SendChar usage was reduced from about 560,000 calls to about 40,000, making it difficult to measure the time saved by removing the double up of the int to byte conversion. Interesting thought about using _int4buf, and it took me a while to make up my mind whether it would be faster or not (using the "Java Puzzlers" technique of deciding what I think some code would do before testing my assertions). I think the difference in the overall work you are doing is that you are adding a buffer to buffer copy. Why write the values to _int4buf if you can write them into BufferedOutputStream's buffer? Most of the time you won't be going beyond the end of the buffer, so in general you'd be replacing three method calls with a call to System.arraycopy, which while extemely fast, I think would be slower than not calling it at all. Regards, Stephen Denne. -----Original Message----- From: Kris Jurka [mailto:books@ejurka.com] Sent: Tuesday, 27 February 2007 11:47 a.m. To: Stephen Denne Cc: pgsql-jdbc@postgresql.org Subject: Re: [JDBC] Minor performance improvements On Tue, 27 Feb 2007, Stephen Denne wrote: > Four small optimizations in org.postgresql.core.PGStream: > Could you share some more of your results with us? What sort of improvment did you see by making these changes? Or could you share your test case code so we can do some timing of our own? > 2) The byte masks are not required in SendInteger4 and SendInteger2, > as > OutputStream.write(int) ignores the top 24 bits. Though if these are > removed I think comments should be included instead to clarify that > only the bottom eight bits get written. Would using a class member byte[] _int4buf = new byte[4], filling it, and passing this to Send(byte buf[]) be better by avoid repeated method calls? Kris Jurka Disclaimer: At the Datamail Group we value team commitment, respect, achievement, customer focus, and courage. This email with any attachments is confidential and may be subject to legal privilege. If it is not intended for you please advise by reply immediately, destroy it and do not copy, disclose or use it in any way. __________________________________________________ ________________ This email has been scanned by the DMZGlobal Business Quality Electronic Messaging Suite. Please see http://www.dmzglobal.com/services/bqem.htm for details. __________________________________________________ ________________ ---------------------------(end of broadcast)--------------------------- TIP 1: if posting/reading through Usenet, please send an appropriate subscribe-nomail command to majordomo@postgresql.org so that your message can get through to the mailing list cleanly |
| |||
| Hi Kris I think that your patch could be better if instead of using the "signed" right shift operator (>>) followed by a bit mask, use directly the "unsigned" right shift operator (>>>) So ((val >> 24) & 0xFF) would better as val >>> 24 By the way great work folks Nelson Arapé A happy Postgres JDBC user in his first time post to the list PS: Sorry for my english, not my native language El Martes, 27 de Febrero de 2007 04:21, Kris Jurka escribió: > On Mon, 26 Feb 2007, Kris Jurka wrote: > > I've created the attached test which tests the original code (Orig), your > > code (Two), and my suggestion of an int4buf (Three) and got the following > > surprising results: > > Based on that test and a similar attached test for reading, I'm prepared > to apply the attached patch. Let me know what you think. > > Kris Jurka ---------------------------(end of broadcast)--------------------------- TIP 6: explain analyze is your friend |
| |||
| Sorry for the formatting of this message.... I tested using a ByteBuffer wrapped as an IntBuffer... quite good, but not the fastest. I had a different implementation in mind for Send(byte buf[], int off, int siz) along the lines of: int i = buf.length - off; if (i < siz) { pg_output.write(buf, off, i); for (; i < siz; ++i) { pg_output.write(0); } } else { pg_output.write(buf, off, siz); } Is there a reason for removing pg_input.ensureBytes(siz)? I see you're checking the length of what was read instead. Is this always equivalent or sufficient? Does it block in diferent ways? When converting ints to bytes, you do not need to mask with 255 (see int0 to int3 in java.nio.Bits). Is it possible other people have code that is calling ReceiveIntegerR(int siz)? Stephen Denne. ________________________________ From: Kris Jurka [mailto:books@ejurka.com] Sent: Tue 27/02/2007 9:21 p.m. To: Stephen Denne Cc: pgsql-jdbc@postgresql.org Subject: Re: [JDBC] Minor performance improvements On Mon, 26 Feb 2007, Kris Jurka wrote: > I've created the attached test which tests the original code (Orig), your > code (Two), and my suggestion of an int4buf (Three) and got the following > surprising results: > Based on that test and a similar attached test for reading, I'm prepared to apply the attached patch. Let me know what you think. Kris Jurka </PRE><div style="font-size:8pt;font-family:Tahoma,Arial; text-align:justify; color:gray;"><br><br><hr size="0">At the Datamail Group we value team commitment, respect, achievement, customer focus, and courage.<br><br>This email with any attachments is confidential and may be subject to legal privilege. If it is not intended for you please advise by reply immediately,destroy it and do not copy, disclose or use it in any way.<hr size="0"><br><br></div> </PRE><div style="font-size:8pt;font-family:Arial; text-align:center;"><br><br><hr size="0"> This email has been scanned by the DMZGlobal Business Quality Electronic Messaging Suite.<br> Please see <a href="http://www.dmzglobal.com/services/bqem.htm">http://www.dmzglobal.com/services/bqem.htm</a> for details.<br> <hr size="0"><br><br></div> |
| |||
| On Tue, 27 Feb 2007, Stephen Denne wrote: > I had a different implementation in mind for Send(byte buf[], int off, > int siz) along the lines of: > I'm not convinced this will be significantly faster, but it is slightly clearer, so I've incorporated it. > Is there a reason for removing pg_input.ensureBytes(siz)? I see you're > checking the length of what was read instead. Is this always equivalent > or sufficient? Does it block in diferent ways? Internally VisibleBufferedInputStream will end up calling ensureBytes in the read call. I don't think the actual read length check is necessary, but it's the sort of thing that could easily break if we changed the VisbibleBufferedInputStream implementation. > When converting ints to bytes, you do not need to mask with 255 (see > int0 to int3 in java.nio.Bits). Yes, removed. > Is it possible other people have code that is calling > ReceiveIntegerR(int siz)? > No, PGStream is an internal only class. Kris Jurka ---------------------------(end of broadcast)--------------------------- TIP 2: Don't 'kill -9' the postmaster |
| ||||
| On Tue, 27 Feb 2007, Nelson Arape wrote: > I think that your patch could be better if instead of using the "signed" > right shift operator (>>) followed by a bit mask, use directly the > "unsigned" right shift operator (>>>) Indeed that does improve things slightly. I didn't even know that operator existed. I've applied this patch: http://gborg.postgresql.org/pipermai...ry/000594.html Kris Jurka ---------------------------(end of broadcast)--------------------------- TIP 1: if posting/reading through Usenet, please send an appropriate subscribe-nomail command to majordomo@postgresql.org so that your message can get through to the mailing list cleanly |