Re: Questions about enabling SSL

From: Michael Fuhr <mike(at)fuhr(dot)org>
To: fabrix peñuelas <fabrixio1(at)gmail(dot)com>
Cc: pgsql-performance(at)postgresql(dot)org
Subject: Re: Questions about enabling SSL
Date: 2008-02-12 00:37:51
Message-ID: 20080212003751.GA42006@winnie.fuhr.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

On Mon, Feb 11, 2008 at 04:58:35PM -0700, fabrix peñuelas wrote:
> If ssl is enable in postgresql decreanse the performance of the database?
> How much?

The performance impact of an encrypted connection depends on how
expensive the queries are and how much data they return. A query
that joins several tables and aggregates millions of rows might
take several seconds or minutes to run and return only a few rows;
for such a query the impact of an encrypted connection is insignificant.
But if you make many queries that run quickly and return large
result sets then you might indeed notice the impact of an encrypted
connection vs. a non-encrypted connection. The most reliable way
to assess the impact would be to run representative queries over
your data and measure the difference yourself.

--
Michael Fuhr

In response to

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Michael Fuhr 2008-02-12 01:00:13 Re: Questions about enabling SSL
Previous Message fabrix peñuelas 2008-02-11 23:58:35 Questions about enabling SSL