Re: Postgresql JDBC UTF8 Conversion Throughput

Поиск
Список
Период
Сортировка
От Kris Jurka
Тема Re: Postgresql JDBC UTF8 Conversion Throughput
Дата
Msg-id Pine.BSO.4.64.0809190313560.4245@leary.csoft.net
обсуждение исходный текст
Ответ на Postgresql JDBC UTF8 Conversion Throughput  (Paul Lindner <lindner@inuus.com>)
Список pgsql-jdbc

On Mon, 2 Jun 2008, Paul Lindner wrote:

> It turns out the using more than two character sets in your Java
> Application causes very poor throughput because of synchronization
> overhead.  I wrote about this here:
>
>  http://paul.vox.com/library/post/the-mysteries-of-java-character-set-performance.html
>

Very interesting.

> In Java 1.6 there's an easy way to fix this charset lookup problem.
> Just create a static Charset for UTF-8 and pass that to getBytes(...)
> instead of the string constant "UTF-8".

Note that this is actually a performance hit (when you aren't stuck doing
charset lookups), see

http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6633613

> For backwards compatibility with Java 1.4 you can use the attached
> patch instead.  It uses nio classes to do the UTF-8 to byte
> conversion.
>

This is also a performance loser in the simple case.  The attached test
case shows times of:

Doing 10000000 iterations of each.
2606 getBytes(String)
6200 getBytes(Charset)
3346 via ByteBuffer

It would be nice to fix the blocking problem, but it seems like a rather
unusual situation to be in (being one charset over the two charset cache).
If you've got more than three charsets in play then fixing the JDBC driver
won't help you because at most it could eliminate one.  So I'd like the
driver to be a good citizen, but I'm not convinced the performance hit is
worth it without having some more field reports or benchmarks.

Maybe it depends how much reading vs writing is done.  Right now we have
our own UTF8 decoder so this hit only happens when encoding data to send
it to the DB.  If you're loading a lot of data this might be a problem,
but if you're sending a small query with a couple of parameters, then
perhaps the thread safety is more important.

Kris Jurka

Вложения

В списке pgsql-jdbc по дате отправления:

Предыдущее
От: Kris Jurka
Дата:
Сообщение: Re: German translation fixes
Следующее
От: Paul Lindner
Дата:
Сообщение: Re: Postgresql JDBC UTF8 Conversion Throughput