Differences

This shows you the differences between two versions of the page.

Link to this comparison view

ep:labs:03:contents:tasks:ex5 [2020/08/03 19:49]
cristian.marin0805
ep:labs:03:contents:tasks:ex5 [2022/10/24 00:11] (current)
andrei.mirciu [03. [30p] RAM disk]
Line 1: Line 1:
-==== 05. [20pMultitool Comparison ​==== +==== 03. [30pRAM disk ====
-Now we will see in a slightly different approach, with a source file and a final file of the same size, how the I/O mechanisms work as they are implemented by the compiler to be optimized.+
  
 +Linux allows you to use part of your RAM as a block device, viewing it as a hard disk partition. The advantage of using a RAM disk is the **extremely low latency** (even when compared to SSDs). The disadvantage is that all contents will be lost after a reboot. ​
 +<note tip>
 +There are two main types of RAM disks:
 +  * **ramfs** - cannot be limited in size and will continue to grow until you run out of RAM. Its size can not be determined precisely with tools like **df**. Instead, you have to estimate it by looking at the "​cached"​ entry from **free**'​s output.
 +  * **tmpfs** - newer than **ramfs**. Can set a size limit. Behaves exactly like a hard disk partition but can't be monitored through conventional means (i.e. **iostat**). Size can be precisely estimated using **df**.
 +</​note>​
 +=== [15p] Task A - Create RAM Disk ===
  
-Modify ​the script so that it reads one line at a time from the file with the novel from the previous exercise, and writes it in a resulting file 500 times eachFollow ​the process with a classic tool (vmstatiostat). Why most of the time the number of **bytes read** is **0**?+Before getting started, let's find out the file system ​that our root partition usesRun the following command ​(T - print file system typeh - human readable):
  
-TODO COSMINAici pui un hidden script cu rezolvarea pt asistenti cum e la 4, in python o puiverifica sa fie astfel incat sa tina linia in RAM.+<code bash> 
 +$ df -Th 
 +</​code>​ 
 +The result should look like this: 
 +<​code>​ 
 +Filesystem ​    ​Type ​     Size  Used Avail Use% Mounted on 
 +udev           ​devtmpfs ​ 1.1G     ​0 ​ 1.1G   0% /dev 
 +tmpfs          tmpfs     ​214M ​ 3.8M  210M   2% /run 
 +/​dev/​sda1 ​     ext4      218G  ​4.1G  202G   2% / <- root partition 
 +tmpfs          tmpfs     ​1.1G ​ 252K  1.1G   1% /dev/shm 
 +tmpfs          tmpfs     ​5.0M ​ 4.0K  5.0M   1% /run/lock 
 +tmpfs          tmpfs     ​1.1G ​    ​0 ​ 1.1G   0% /​sys/​fs/​cgroup 
 +/​dev/​sda2 ​     ext4      923M   ​73M ​ 787M   9% /boot 
 +/​dev/​sda4 ​     ext4      266G   ​62M ​ 253G   1% /home 
 +</​code>​ 
 + 
 +From the resultswe will assume ​in the following commands that the file system is **ext4**. If it's not your casejust replace with what you have: 
 + 
 +<code bash> 
 +$ sudo mkdir /​mnt/​ramdisk 
 +$ sudo mount -t tmpfs -o size=1G ext4 /​mnt/​ramdisk 
 +</​code>​ 
 + 
 +<​note>​ 
 +If you want the RAM disk to persist after a reboot, you can add the following line to ///​etc/​fstab//​Remember that its contents will still be lost. 
 + 
 +<​code>​ 
 +tmpfs     /​mnt/​ramdisk ​    ​tmpfs ​    ​rw,​nodev,​nosuid,​size=1G ​    ​0 ​ 0 
 +</​code>​ 
 +</​note>​
  
 +That's it. We just created a 1Gb **tmpfs** ramdisk with an **ext4** file system and mounted it at ///​mnt/​ramdisk//​. Use **df** again to check this yourself.
  
 +=== [15p] Task B - Pipe View & RAM Disk ===
  
-=== [10p] Task A - Different toolsame I/O ===+As we mentioned beforeyou can't get I/O statistics regarding **tmpfs** since it is not a real partition. One solution to this problem is using **pv** to monitor the progress of data transfer through a pipe. This is a valid approach only if we consider the disk I/O being the bottleneck.
  
-For more special situationsa classic tool is not enough as long as we want to have a more detailed analysis on the behavior ​of I/O mechanisms. +Next, we will generate 512Mb of random data and place it in ///​mnt/​ramdisk/​file//​ first and then in ///​home/​student/​file/​/. The transfer is done using **dd** with 2048-byte blocks.
-An example would be to create an infinite loop that **copies endlessly** (simulation of a demanding process for a long time) a **large file** (use one of the files obtained previously).+
  
-Put the command below in a script: 
 <code bash> <code bash>
-while true; do cp loadfile loadfile1; done+pv /​dev/​urandom | dd of=/​mnt/​ramdisk/​rand ​ bs=2048 count=$((512 * 1024 * 1024 / 2048)) 
 +$ pv /​dev/​urandom | dd of=/​home/​student/​rand bs=2048 count=$((512 * 1024 * 1024 / 2048))
 </​code>​ </​code>​
  
 +Look at the elapsed time and average transfer speed. What conclusion can you draw?
  
-=== [10p] Task B - Plot of Comparison ===+:!: Put one screenshot with the tmpfs partition in df output and one screenshot ​of both pv commands and write your conclusion.
  
ep/labs/03/contents/tasks/ex5.1596473387.txt.gz · Last modified: 2020/08/03 19:49 by cristian.marin0805
CC Attribution-Share Alike 3.0 Unported
www.chimeric.de Valid CSS Driven by DokuWiki do yourself a favour and use a real browser - get firefox!! Recent changes RSS feed Valid XHTML 1.0