Обсуждение: Why vacumming performed on template1 with initdb command ?

Поиск
Список
Период
Сортировка

Why vacumming performed on template1 with initdb command ?

От
Raghavendra
Дата:
Respected,

Am in PG 9.0.4. 
While creating a new cluster with "initdb" command I observed a statement echoing as "vacuuming database template1.... ok".
Why vacuuming is performed on a new cluster on template1 database. 
Please share your valuable comments.

Initdb output:

[postgres@test-psql01 bin]$ ./initdb -D /u01/pg/update_test_data
The files belonging to this database system will be owned by user "postgres".
This user must also own the server process.

The database cluster will be initialized with locale en_US.UTF-8.
The default database encoding has accordingly been set to UTF8.
The default text search configuration will be set to "english".

creating directory /u01/pg/update_test_data ... ok
creating subdirectories ... ok
selecting default max_connections ... 40
selecting default shared_buffers ... 32MB
creating configuration files ... ok
creating template1 database in /u01/pg/update_test_data/base/1 ... ok
initializing pg_authid ... ok
initializing dependencies ... ok
creating system views ... ok
loading system objects' descriptions ... ok
creating conversions ... ok
creating dictionaries ... ok
setting privileges on built-in objects ... ok
creating information schema ... ok
loading PL/pgSQL server-side language ... ok
vacuuming database template1 ...ok
copying template1 to template0 ... ok
copying template1 to postgres ...ok

WARNING: enabling "trust" authentication for local connections
You can change this by editing pg_hba.conf or using the -A option the
next time you run initdb.

Success. You can now start the database server using:

    ./postgres -D /u01/pg/update_test_data
or
    ./pg_ctl -D /u01/pg/update_test_data -l logfile start

---
Regards,
Raghavendra
EnterpriseDB Corporation

Re: Why vacumming performed on template1 with initdb command ?

От
Tom Lane
Дата:
Raghavendra <raghavendra.rao@enterprisedb.com> writes:
> Why vacuuming is performed on a new cluster on template1 database.

It's a VACUUM FREEZE, and if we didn't do it we'd have to do the work
over again later, separately in every database of the cluster.

            regards, tom lane

Re: Why vacumming performed on template1 with initdb command ?

От
Raghavendra
Дата:

On Thu, Dec 22, 2011 at 5:00 AM, Tom Lane <tgl@sss.pgh.pa.us> wrote:
Raghavendra <raghavendra.rao@enterprisedb.com> writes:
> Why vacuuming is performed on a new cluster on template1 database.

It's a VACUUM FREEZE, and if we didn't do it we'd have to do the work
over again later, separately in every database of the cluster.

                       regards, tom lane

Got it... Thank you for briefing Tom... 

---
Regards,
Raghavendra
EnterpriseDB Corporation