Disk Space


 
Thread Tools Search this Thread
Operating Systems Solaris Disk Space
# 8  
Old 06-15-2011
I always felt compressing filesystem reduces reliability. its a probably harder to fsck it in case of problems. I'd archive and delete log files first. perhaps uninstall some packages. shame scsi disks are so expensive.
# 9  
Old 06-15-2011
ZFS is much more reliable than UFS. Enabling compression doesn't change that.. It only slightly affects performance.
# 10  
Old 06-15-2011
Quote:
Originally Posted by bartus11
Enabling compression doesn't change that.. It only slightly affects performance.
It usually does but by improving it !
Enabling compression on ZFS is increasing the overall i/o performance in most use cases.

---------- Post updated 16-06-11 at 00:00 ---------- Previous update was 15-06-11 at 23:54 ----------

Quote:
Originally Posted by orange47
I always felt compressing filesystem reduces reliability.
On windows, definitely.
Quote:
its a probably harder to fsck it in case of problems.
ZFS neither provides nor need fsck. You never need to fsck a ZFS file system. It is always consistent by design.
# 11  
Old 06-16-2011
Nice ZFS summary: ZFS - THe newest file system, explained in human terms



Compression just means:
  1. the data on disk is smaller
  2. the data is more random
  3. if the data is corrupted, a bigger part or the remainer of the file is likely lost (but this is not 1962 tape or 1969 disk, and there is backup, raid and mirroring!)
  4. Because it reads fewer pages of disk for more pages of RAM, and CPUs are hugely faster than disks, serial read write flow is faster. Write flow is a bit more CPU intensive, might not beat raw disk. However, ZFS buffers writes a lot, and who has only one CPU any more? LZJB should be much faster than gzip, but perhaps twice as large?
  5. Next point is a bit speculative, as I could not find an exact description of ZFS compression blocking: Random access requires reading compressed blocks on disk from the beginning, and, for writes, recompression of entire separate compressed block.
I wonder if they ever considered deferring compression of each file until the data goes quiescent?
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

How much disk space?

Hi, I have this : uname -a Linux servername 2.6.18-194.11.3.el5PAE #1 SMP Mon Aug 23 15:57:10 EDT 2010 i686 i686 i386 GNU/Linux df -k Sys. de fich. 1K-blocs Occupied Disponible Capacity Monted on /u01/applis 10321208 3190160 6606760 33% /applis Does it mean... (1 Reply)
Discussion started by: big123456
1 Replies

2. Shell Programming and Scripting

disk space

Hi, I am new to shell scripting, and want to monitor disk space using shell script continously on server, which will shoot mail after crossing threshold limit Please suggest. Regards Manoj (1 Reply)
Discussion started by: manoj.solaris
1 Replies

3. Shell Programming and Scripting

Disk Space

Hi Guys i have a nice little piece of code then i need to modify so that is does not look at /Voulmes/* thanks sub disk_full { my $i = 0; open( DF, "df -l|" ); while (<DF>) { #chomp(); next if (/^\/proc\b/); $i++; next if ( $i == 1 ); ... (3 Replies)
Discussion started by: ab52
3 Replies

4. Red Hat

disk space

when i check /export directory of my machine gets filled up (85%) i removed some old logs. but after cleaning df -k command still shows that /export is still 85% full. Is there a way to force df to reflect actual free space without rebooting? My machine is a production one and can't... (8 Replies)
Discussion started by: aboorkuma
8 Replies

5. Shell Programming and Scripting

Disk Space

Hi This is my script for disk space monitoring clear if then echo "You must be root user to execute the script" fi ALERT_LEVEL=10 CONSUMPTION_LEVEL= `df -k | awk {'print $5'} | cut -d '%' -f1 | sed "1 d"` for i in $CONSUMPTION_LEVEL do FILE_SYSTEM=`df -k | awk {'print $1'} |... (3 Replies)
Discussion started by: chrs0302
3 Replies

6. Filesystems, Disks and Memory

disk space

Hello All- Am new member to this forum. Have some unix experience. But true believer in it compared to windows. Have a question regarding the disk space. I know a command to check the total disk space utilization using: df -k . but what is the command to check the same disk space by... (6 Replies)
Discussion started by: milkyway
6 Replies

7. HP-UX

Disk Space

Hi Experts. I had 100% disk full , even though i have removed 2 GB space still dbf command shows 100%. How to rectify that. Appreciate your prompt help. Thanks (1 Reply)
Discussion started by: test10002
1 Replies

8. Solaris

Disk space?

I'm a Unix newbie running Solaris 9. After installing a fresh copy on a 40GB drive I noticed the available disk space is 2% free or approximately 200MB available. Is that possible? Did I do something wrong? (4 Replies)
Discussion started by: jbarbuto
4 Replies

9. UNIX for Dummies Questions & Answers

available disk space on disk device???

Hello, Can someone please tell me which command to use to determine the available disk space on a given disk device? I have to write a shell script that compresses files and stores them in a specific location but I am not sure how "conservative" I should be? Thanks in advance! Al. (4 Replies)
Discussion started by: alan
4 Replies

10. UNIX for Dummies Questions & Answers

Out of disk space?

Hi I'm trying to install gcc and the installation program tells me that I'm out of disk space! I have just installed the os (using the default settings for partitions and sizes) and have only installed apache on the machine. Can it really be out of disk space already? How do I check how much... (4 Replies)
Discussion started by: alfabetman
4 Replies
Login or Register to Ask a Question