473,395 Members | 1,616 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

PgSQL shut down

Hi,
I am using Postgresql 7.1.3. PgSQL server gets shut down once the hard
disk space becomes full. Is thers any particular reason to shut down the
server? Can any one help me on this.

--
regards,
Deepa K

---------------------------(end of broadcast)---------------------------
TIP 1: subscribe and unsubscribe commands go to ma*******@postgresql.org

Nov 23 '05 #1
6 2568
On Thu, 2004-06-17 at 23:03, Deepa K wrote:
Hi,
I am using Postgresql 7.1.3. PgSQL server gets shut down once the hard
disk space becomes full. Is thers any particular reason to shut down the
server? Can any one help me on this.


That's a lot like saying "I've got a 1935 Chrysler and the windows are
pane glass" in terms of how old 7.1.3 is. That far back I don't think
the backend knew what to do when it ran out of space. It's likely not
shutting down but crashing, or something in between.

Do you have recent enough backups to not need the data in the exact form
on the database, or do you need what's on there right now? Try putting
it on a larger partition and seeing if the database will come up and
run. But this is so far back, I'm not even sure what to do to get it
back up any more.

You should really look at upgrading when you get a chance, after we get
this fixed...
---------------------------(end of broadcast)---------------------------
TIP 6: Have you searched our list archives?

http://archives.postgresql.org

Nov 23 '05 #2
On Thu, 2004-06-17 at 23:03, Deepa K wrote:
Hi,
I am using Postgresql 7.1.3. PgSQL server gets shut down once the hard
disk space becomes full. Is thers any particular reason to shut down the
server? Can any one help me on this.


That's a lot like saying "I've got a 1935 Chrysler and the windows are
pane glass" in terms of how old 7.1.3 is. That far back I don't think
the backend knew what to do when it ran out of space. It's likely not
shutting down but crashing, or something in between.

Do you have recent enough backups to not need the data in the exact form
on the database, or do you need what's on there right now? Try putting
it on a larger partition and seeing if the database will come up and
run. But this is so far back, I'm not even sure what to do to get it
back up any more.

You should really look at upgrading when you get a chance, after we get
this fixed...
---------------------------(end of broadcast)---------------------------
TIP 6: Have you searched our list archives?

http://archives.postgresql.org

Nov 23 '05 #3
sm******@qwest.net ("Scott Marlowe") wrote in message news:<10**********************@localhost.localdoma in>...
On Thu, 2004-06-17 at 23:03, Deepa K wrote:
Hi,
I am using Postgresql 7.1.3. PgSQL server gets shut down once the hard
disk space becomes full. Is thers any particular reason to shut down the
server? Can any one help me on this.


That's a lot like saying "I've got a 1935 Chrysler and the windows are
pane glass" in terms of how old 7.1.3 is. That far back I don't think
the backend knew what to do when it ran out of space. It's likely not
shutting down but crashing, or something in between.

Do you have recent enough backups to not need the data in the exact form
on the database, or do you need what's on there right now? Try putting
it on a larger partition and seeing if the database will come up and
run. But this is so far back, I'm not even sure what to do to get it
back up any more.

You should really look at upgrading when you get a chance, after we get
this fixed...
---------------------------(end of broadcast)---------------------------
TIP 6: Have you searched our list archives?

http://archives.postgresql.org


Same thing will happen under v7.2.4 as well, database will shutdown if
it runs out of disk space.

It won't shutdown if the disk is 100% full and you are only doing
"Selects" my experience has been.....

So when the disk goes to 100%, just don't write the DB anymore and it
won't shutdown ;-)
Nov 23 '05 #4
sm******@qwest.net ("Scott Marlowe") wrote in message news:<10**********************@localhost.localdoma in>...
On Thu, 2004-06-17 at 23:03, Deepa K wrote:
Hi,
I am using Postgresql 7.1.3. PgSQL server gets shut down once the hard
disk space becomes full. Is thers any particular reason to shut down the
server? Can any one help me on this.


That's a lot like saying "I've got a 1935 Chrysler and the windows are
pane glass" in terms of how old 7.1.3 is. That far back I don't think
the backend knew what to do when it ran out of space. It's likely not
shutting down but crashing, or something in between.

Do you have recent enough backups to not need the data in the exact form
on the database, or do you need what's on there right now? Try putting
it on a larger partition and seeing if the database will come up and
run. But this is so far back, I'm not even sure what to do to get it
back up any more.

You should really look at upgrading when you get a chance, after we get
this fixed...
---------------------------(end of broadcast)---------------------------
TIP 6: Have you searched our list archives?

http://archives.postgresql.org


Same thing will happen under v7.2.4 as well, database will shutdown if
it runs out of disk space.

It won't shutdown if the disk is 100% full and you are only doing
"Selects" my experience has been.....

So when the disk goes to 100%, just don't write the DB anymore and it
won't shutdown ;-)
Nov 23 '05 #5
ec*****@signiant.com (Eric) writes:
sm******@qwest.net ("Scott Marlowe") wrote in message news:<10**********************@localhost.localdoma in>...
On Thu, 2004-06-17 at 23:03, Deepa K wrote:
I am using Postgresql 7.1.3. PgSQL server gets shut down once the hard
disk space becomes full. Is thers any particular reason to shut down the
server? Can any one help me on this.
That's a lot like saying "I've got a 1935 Chrysler and the windows are
pane glass" in terms of how old 7.1.3 is.

Same thing will happen under v7.2.4 as well, database will shutdown if
it runs out of disk space.


7.2.4 isn't exactly modern either. AFAIK 7.4 handles this okay...
Chris Kings-Lynne found a corner-case bug back in January, but at that
point his database had already survived something like 40 minutes from
the first out-of-disk-space error.

You *will* get a panic if you run out of space for WAL, but under normal
load conditions the WAL space requirements stay constant and so even
a zero-space situation doesn't trigger a panic. It's safer if you can
separate WAL and data onto different filesystems, though.

regards, tom lane

---------------------------(end of broadcast)---------------------------
TIP 5: Have you checked our extensive FAQ?

http://www.postgresql.org/docs/faqs/FAQ.html

Nov 23 '05 #6
ec*****@signiant.com (Eric) writes:
sm******@qwest.net ("Scott Marlowe") wrote in message news:<10**********************@localhost.localdoma in>...
On Thu, 2004-06-17 at 23:03, Deepa K wrote:
I am using Postgresql 7.1.3. PgSQL server gets shut down once the hard
disk space becomes full. Is thers any particular reason to shut down the
server? Can any one help me on this.
That's a lot like saying "I've got a 1935 Chrysler and the windows are
pane glass" in terms of how old 7.1.3 is.

Same thing will happen under v7.2.4 as well, database will shutdown if
it runs out of disk space.


7.2.4 isn't exactly modern either. AFAIK 7.4 handles this okay...
Chris Kings-Lynne found a corner-case bug back in January, but at that
point his database had already survived something like 40 minutes from
the first out-of-disk-space error.

You *will* get a panic if you run out of space for WAL, but under normal
load conditions the WAL space requirements stay constant and so even
a zero-space situation doesn't trigger a panic. It's safer if you can
separate WAL and data onto different filesystems, though.

regards, tom lane

---------------------------(end of broadcast)---------------------------
TIP 5: Have you checked our extensive FAQ?

http://www.postgresql.org/docs/faqs/FAQ.html

Nov 23 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: Claire | last post by:
Running XP pro, SP2. Visual studio .NET 2003. App written in C# I have written an application that hides itself when run and shows a notification icon in the system tray. If the main form is...
4
by: Diogo Alves - Software Developer | last post by:
Hi, I have a application developed by me in C# that does not let windows shut down! What is the problem? is this a Framework bug? I would like to receive some feedback about this issue
5
by: Anders Both | last post by:
If no pages in my asp.net web-system, is being requested for some periode, it seems like the asp.net process is shut down automaticaly. Is this a normal behavior, or does my system contains some...
0
by: Deepa K | last post by:
Hi, I am using Postgresql 7.1.3. PgSQL server gets shut down once the hard disk space becomes full. Is thers any particular reason to shut down the server? Can any one help me on this. --...
1
by: nikola.bucic | last post by:
Is there any code so that I can call shut down dialog box from my program? Under shut down dialog box I mean the one that is shown when you click on Start -> Shut Down. Thanks in advance.
8
by: Austen | last post by:
Hello i trying to shut down window using vb. i able to restart and log off, but was unable to shut down. when excute the shut down command , nothing happend. it related to window os security issue?
0
by: ArkJ | last post by:
Hello. I have a little problem. I created a little Service which uses SIP, all works rather well, but when I want to shut it down in the Services panel, it looks as if it's shut down, but in fact...
6
sashi
by: sashi | last post by:
Shut down Windows For various reasons you may require a shut down of Windows to happen programmatically. For instance if the installation of your program requires system reconfiguration. The...
1
by: TC | last post by:
I'm confused about the proper way to shut down my application. I have a form which instantiates a control, which instantiates another control, which instantiates yet another control that runs a...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.