[20181214]open file using O_DIRECT.txt

来源:https://www.cnblogs.com/lfree/archive/2018/12/17/10130353.html
-Advertisement-
Play Games

[20181214]open file using O_DIRECT.txt--//因為一個測試需要,需要寫一個測試小例子,驗證使用O_DIRECT打開文件每次都是從磁碟讀取.--//沒想到浪費1個上午時間,C語言不是自己的擅長.#include <stdio.h>#include <stdlib. ...


[20181214]open file using O_DIRECT.txt

--//因為一個測試需要,需要寫一個測試小例子,驗證使用O_DIRECT打開文件每次都是從磁碟讀取.
--//沒想到浪費1個上午時間,C語言不是自己的擅長.

#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
//#define __USE_GNU 1
#include <fcntl.h>

int main(void)
{
    void *realbuff ;
    int handle;
    int bytes ;
    int pagesize;
    int nTemp ;

    pagesize = getpagesize();
    // printf("%d\n",pagesize);
    realbuff = valloc( 1024000 );
    nTemp = posix_memalign(&realbuff, pagesize, 1024000);

    if (0!=nTemp)
    {
        perror("posix_memalign error");
        return 1;
    }

    handle=open("test.bin",O_RDONLY|O_DIRECT);
    if(handle==-1)
    {
        printf("ErrorOpeningFile\n");
        exit(1);
    }
    while ( (bytes=read(handle,realbuff,1024000))>0 )
    {
        sleep(1);
        printf("Read:%d bytes read.\n",bytes);
    }
    return 0 ;
}

--//自己的問題在於不能使用malloc分配緩存.而應該使用valloc分配,不然在posix_memalign這步就報錯,使用valloc才能對齊pagesize.
--//順便說一下getpagesize()我的測試返回是4096.我使用gcc版本:
$ gcc -v
Using built-in specs.
Target: x86_64-redhat-linux
Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-libgcj-multifile --enable-languages=c,c++,objc,obj-c++,java,fortran,ada --enable-java-awt=gtk --disable-dssi --disable-plugin --with-java-home=/usr/lib/jvm/java-1.4.2-gcj-1.4.2.0/jre --with-cpu=generic --host=x86_64-redhat-linux
Thread model: posix
gcc version 4.1.2 20080704 (Red Hat 4.1.2-54)

$ dd if=/dev/zero of=test.bin bs=1024000 count=10
10+0 records in
10+0 records out
10240000 bytes (10 MB) copied, 0.0343163 seconds, 298 MB/s

$ gcc -D_GNU_SOURCE direct_test.c -o direct_test

--//第2個問題就是使用O_DIRECT打開文件句柄,必須定義__USE_GNU 1.或者編譯時加-D_GNU_SOURCE參數,否則找不到O_DIRECT的巨集定義.
--//實際上這個應該是最先遇到的問題.

$ ./direct_test
Read:1024000 bytes read.
Read:1024000 bytes read.
Read:1024000 bytes read.
Read:1024000 bytes read.
Read:1024000 bytes read.
Read:1024000 bytes read.
Read:1024000 bytes read.
Read:1024000 bytes read.
Read:1024000 bytes read.
Read:1024000 bytes read.

# dstat -t -d -D cciss/c0d0p2,cciss/c0d0p6,total
-----time----- dsk/cciss/c-dsk/cciss/c--dsk/total-
  date/time   | read  writ: read  writ: read  writ
14-12 15:45:13|1213B 7936B:  11k   65k:  24k  146k
....
14-12 15:45:16|  36k    0 :   0     0 :  72k    0
14-12 15:45:17|1000k    0 :   0     0 :2000k    0
14-12 15:45:18|1000k    0 :   0     0 :2000k    0
14-12 15:45:19|1004k    0 :   0     0 :2008k    0
14-12 15:45:20|1000k    0 :   0     0 :2000k    0
14-12 15:45:21|1000k    0 :   0     0 :2000k    0
14-12 15:45:22|1016k 2564k:   0     0 :2032k 5128k
14-12 15:45:23|1000k    0 :   0     0 :2000k    0
14-12 15:45:24|1000k    0 :   0     0 :2000k    0
14-12 15:45:25|1000k    0 :   0     0 :2000k    0
14-12 15:45:26|1000k    0 :   0     0 :2000k    0
14-12 15:45:27|   0     0 :   0     0 :   0     0

--//註:可以發現每秒從磁碟/dev/cciss/c0d0p2讀取1000K.繞過os文件緩存.另外這個dstat版本有問題,total的記數會加倍.

# man open
...
  O_DIRECT
      Try to minimize cache effects of the I/O to and from this file.  In general this will degrade performance,
      but it is useful in special situations, such as when applications do their own caching.  File I/O is done
      directly to/from  user  space  buffers.   The I/O is synchronous, i.e., at the completion of a read(2) or
      write(2), data is guaranteed to have been transferred.  Under Linux 2.4 transfer sizes, and the alignment
      of user buffer and file offset must all be multiples of the logical block size of the file system. Under
      Linux 2.6 alignment must fit the block size of the device.

--//也就是這樣讀取效率低下,每次都是從磁碟讀取.除非applications do their own caching.
--//順便說一下國內開發有許多相關討論的帖子,查詢open O_DIRECT就能找到.


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 最近同事需要在單位提供的開發機上臨時安裝 等軟體,時間緊迫,因此向其推薦安裝福利 . 感謝 ,使得 軟體 無比的快捷, 也是無與倫比的簡單. gcc 7.3.1安裝 註意事項: 安裝 後,需要使用 啟動 (`gcc 7.3.1`); 啟動 後僅針對本次會話有效,若退出登陸或者下線重啟後,需要再次激活 ...
  • 命名管道的主要用途:不相關的進程之間交換數據。 命令行上創建命名管道: 程式中創建命名管道: 備註:#include <sys/types.h>是Unix/Linux系統的基本系統數據類型的頭文件,含有Size_t,time_t,pid_t等類型。 #include<sys/stat.h>是Unix ...
  • 1 ./kafka-consumer-groups.sh --list --bootstrap-server kafka:9092 ...
  • 什麼是crontab?crontab 是一個用於設置周期性執行任務的工具 ...
  • #!/bin/bash ############################################################################## # File Name : Linux system config # description : This scri... ...
  • 1.基本語法 2.自動加入文件頭 在etc/vimic 源碼: 3.修改為不提示自動創建(也可以提示自動創建) 源碼: 3.shell的高亮顯示 ...
  • *FastDFS圖片伺服器搭建準備:1.需要libfastcommon安裝包 選擇最新穩定版(libfastcommon-1.0.36.tar.gz)2.需要FastDFS安裝包 選擇最新穩定版(fastdfs-5.11.tar.gz)3.需要Nginx安裝包 選擇最新穩定版(nginx-1.12. ...
  • 本機環境: windows 10 專業版 。 linux環境: VMware-workstation-full-12.5.7.20721.exe CentOS-7-x86_64-DVD-1511.iso Xshell_5.0.1339p.exe Xftp-5.0.1233.exe 本章重點網路環境配 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...