Re: bytea memory improvement

From: Luis Vilar Flores <lflores(at)evolute(dot)pt>
To: Kris Jurka <books(at)ejurka(dot)com>
Cc: pgsql-jdbc(at)postgresql(dot)org
Subject: Re: bytea memory improvement
Date: 2006-09-26 10:09:10
Message-ID: 4518FC46.8020705@evolute.pt
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-jdbc

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
Kris Jurka wrote:
<blockquote cite="midPine(dot)BSO(dot)4(dot)63(dot)0609260131040(dot)29854(at)leary2(dot)csoft(dot)net"
type="cite"><br>
<br>
On Wed, 23 Aug 2006, Luis Vilar Flores wrote:
<br>
<br>
<blockquote type="cite">&nbsp; To all that already forgot the first
emails, I developed an modified version of the method toBytes from the
org.postgresql.util.PGbytea class.&nbsp; The old method uses 3 buffers to
translate the data from the nework to the client, this uses too much
memory.&nbsp; My method only uses 2 buffers, but does one more pass through
the original buffer (to calculate it's final size).
<br>
<br>
</blockquote>
<br>
I'm not super impressed with these timing results.&nbsp; They are certainly
showing some effects due to GC, consider the rise in time here at
10.5MB.
<br>
</blockquote>
Well, thanks a lot for the attention. My main purpose was to reduce the
memory footprint. But, before I did the tests, I had the idea that the
new method would be slower than the older ... So it would only be
better on large files, i.e. where the reduced memory usage was more
important than raw speed. This was because of the extra cycle through
the array.<br>
<blockquote cite="midPine(dot)BSO(dot)4(dot)63(dot)0609260131040(dot)29854(at)leary2(dot)csoft(dot)net"
type="cite"><br>
<blockquote type="cite">OLD method:
<br>
size: 9.5MB execute+next: 804ms getBytes: 377ms used mem: 66169KB
<br>
size: 10.5MB execute+next: 634ms getBytes: 546ms used mem: 73112KB
<br>
size: 11.5MB execute+next: 689ms getBytes: 450ms used mem: 80057KB
<br>
size: 12.5MB execute+next: 748ms getBytes: 482ms used mem: 87001KB
<br>
</blockquote>
<br>
I came up with my own contrived benchmark (attached) that attempts to
focus solely on the getBytes() call and avoid the time of fetching
results, but it doesn't give really consistent results and I haven't
been able to come up with a case that actually shows the new method was
faster even with 30MB of data.&nbsp; This is on Debian Linux / 2xOpteron 246
/ jdk 1.5.0-05.
<br>
</blockquote>
The new method is very similar to the old, but it just computes the
final size before the copy. The old method does less instructions to
convert an array, the new method is only faster when the older is
slowed down by garbage collection/memory allocation.<br>
<blockquote cite="midPine(dot)BSO(dot)4(dot)63(dot)0609260131040(dot)29854(at)leary2(dot)csoft(dot)net"
type="cite"><br>
I've committed this to CVS HEAD with a rather arbitrarily set
MAX_3_BUFF_SIZE value of 2MB.&nbsp; Note that this is also the escaped size,
so we may actually be dealing with output data a quarter of that size.&nbsp;
If anyone could do some more testing of what a good crossover point
would be that would be a good thing.
<br>
</blockquote>
I think the old option should be there for a while, but I hope that the
new method proves to be as fast as the old, so we can just discard the
MAX_3_BUFF_SIZE and always compute the final size - as the method code
would be clearer that way.<br>
<blockquote cite="midPine(dot)BSO(dot)4(dot)63(dot)0609260131040(dot)29854(at)leary2(dot)csoft(dot)net"
type="cite"><br>
Thanks for your patience with this item.
<br>
</blockquote>
It's me who thanks for such a great product ...<br>
I will check the new benchmark, the see the memory usage, and garbage
collection ...<br>
<blockquote cite="midPine(dot)BSO(dot)4(dot)63(dot)0609260131040(dot)29854(at)leary2(dot)csoft(dot)net"
type="cite"><br>
Kris Jurka<br>
<pre wrap="">
<hr size="4" width="90%">
import java.sql.*;

public class ByteaTest2 {

public static void main(String args[]) throws Exception {
Class.forName("org.postgresql.Driver");
Connection conn = DriverManager.getConnection("jdbc:postgresql://localhost:5432/jurka","jurka","");

for (int k=0; k&lt;5; k++) {
long t1 = System.currentTimeMillis();
long total = 0;

for (int j=0; j&lt;10; j++) {
PreparedStatement pstmt = conn.prepareStatement("SELECT varcharsend(repeat(?,?))");
pstmt.setString(1, "a\\001");
pstmt.setInt(2, 150000);
ResultSet rs = pstmt.executeQuery();
rs.next();
for (int i=0; i&lt;100; i++) {
byte b[] = rs.getBytes(1);
total += b.length;
}

rs.close();
pstmt.close();
}
long t2 = System.currentTimeMillis();
System.out.println(t2-t1);
}
}
}
</pre>
</blockquote>
<br>
<br>
<div class="moz-signature">-- <br>
<meta http-equiv="CONTENT-TYPE" content="text/html; ">
<title>Evolute - Luis Flores</title>
<p><font color="#7da647"><font face="Verdana, sans-serif"><font
style="font-size: 10pt;" size="2"> Luis Flores
</font></font></font></p>
<p>
<font color="#7da647"><font face="Verdana, sans-serif"><font
style="font-size: 8pt;" size="2"> Analista de Sistemas</font></font></font></p>
<p><a href="http://www.evolute.pt"><font face="Verdana, sans-serif"><font
style="font-size: 8pt;" size="2"><b>Evolute</b> - Consultoria
Inform&aacute;tica<br>
<br>
</font></font></a>
<font color="#7da647"><font face="Verdana, sans-serif"><font
style="font-size: 8pt;" size="2"> Email: </font></font></font>
<a href="mailto:lflores(at)evolute(dot)pt"><font face="Verdana, sans-serif"><font
style="font-size: 8pt;" size="2">lflores(at)evolute(dot)pt
</font></font></a></p>
<p>
<font color="#7da647"><font face="Verdana, sans-serif"><font
style="font-size: 8pt;" size="2"> Tel: (+351)
212949689</font></font></font></p>
<div style="text-align: justify;"><font color="#7d7d7d"><font
face="Verdana, sans-serif"><font style="font-size: 7pt;" size="1">
<br>
AVISO DE CONFIDENCIALIDADE</font></font></font><br>
<font color="#7d7d7d"><font face="Verdana, sans-serif"><font
style="font-size: 7pt;" size="1">
Esta mensagem de correio electr&oacute;nico e eventuais ficheiros
anexos s&atilde;o confidenciais e destinados apenas &agrave;(s)
pessoa(s) ou entidade(s) acima referida(s),
podendo conter informa&ccedil;&atilde;o privilegiada e
confidencial, a qual n&atilde;o poder&aacute; ser divulgada,
copiada, gravada ou distribu&iacute;da nos termos da lei vigente.
Caso n&atilde;o
seja o destinat&aacute;rio da mensagem, ou se ela lhe foi enviada
por engano, agradecemos que n&atilde;o fa&ccedil;a uso ou
divulga&ccedil;&atilde;o da mesma. A
distribui&ccedil;&atilde;o ou
utiliza&ccedil;&atilde;o da informa&ccedil;&atilde;o
nela contida &eacute; interdita. Se recebeu esta mensagem por
engano, por favor notifique o remetente e apague este e-mail do seu
sistema.
Obrigado.
<br>
</font></font></font><font color="#7d7d7d"><font
face="Verdana, sans-serif"><font style="font-size: 7pt;" size="1">
</font></font></font><br>
<font color="#7d7d7d"><font face="Verdana, sans-serif"><font
style="font-size: 7pt;" size="1">
CONFIDENTIALITY NOTICE</font></font></font><br>
<font color="#7d7d7d"><font face="Verdana, sans-serif"><font
style="font-size: 7pt;" size="1">
This e-mail transmission and eventual attached files are intended only
for the use of the individual(s) or entity(ies) named above and may
contain
information that is both privileged and confidential and is exempt from
disclosure under applicable law. If you are not the intended recipient,
you are
hereby notified that any disclosure, copying, distribution or use of
any of the information contained in this transmission is strictly
restricted. If by any
means you have received this transmission in error, please immediately
notify the sender and delete this e-mail from your system. Thank you.
</font></font></font></div>
</div>
</body>
</html>

Attachment Content-Type Size
unknown_filename text/html 7.4 KB

In response to

Browse pgsql-jdbc by date

  From Date Subject
Next Message Oliver Jowett 2006-09-26 10:21:10 Re: Bind message
Previous Message Thomas Kellerer 2006-09-26 09:07:52 Small problem with embedded comments in a statement