Re: BUG #12675: BIGINT Datatype performance

From: Heikki Linnakangas <hlinnakangas(at)vmware(dot)com>
To: <derek(dot)anderson(at)mspmac(dot)org>, <pgsql-bugs(at)postgresql(dot)org>
Subject: Re: BUG #12675: BIGINT Datatype performance
Date: 2015-01-27 11:38:39
Message-ID: 54C778BF.3000205@vmware.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

On 01/26/2015 11:04 PM, derek(dot)anderson(at)mspmac(dot)org wrote:
> The following bug has been logged on the website:
>
> Bug reference: 12675
> Logged by: Derek Anderson
> Email address: derek(dot)anderson(at)mspmac(dot)org
> PostgreSQL version: 9.4.0
> Operating system: Linux
> Description:
>
> I did some testing on bigint vs double precision datatype performance for a
> project we have going on here.
>
> To my surprise, I found the double precision (floating) was well over 200%
> faster than bigint in aggregate functions. I don't know if this qualifies
> as a bug, but it sure seems odd considering non-floating type datatypes
> usually perform much faster than floating.
>
> Please contact me if you wish to discuss.

The built-in aggregates on bigint, like sum and avg, use numeric
internally because the sum of bigints can easily be too large to fit in
a bigint. Their return type is also numeric for the same reason.
Arithmetic on numeric is much slower than on double.

There is a patch being discussed that would help with that, for 9.5. See
http://www.postgresql.org/message-id/544BB5F1.50709@proxel.se. With the
patch, the aggregates would use a 128-bit integer type for the internal
calculations, making them much faster.

- Heikki

In response to

Browse pgsql-bugs by date

  From Date Subject
Next Message ousema2003 2015-01-27 13:59:04 BUG #12681: Cannot Read Refcursor from JAVA
Previous Message Francisco Olarte 2015-01-27 11:11:15 Re: BUG #12679: temprary table not exists when close session and reconnect