私が働いている会社はそれぞれ非常に動的に発展しており、サーバーとユーザーの数は増えています。 弾力性の問題は以前よりも重要になっています。
歴史的に、一部のデータはファイル内にあり、クライアントはNFSを介してバックエンドに接続します。 ただし、中央サーバーを障害ポイントにしたくありませんでした。
Rsync-optionsはすぐに浅くなります。 他の人々の質問と経験、およびいくつかのs3fsテストを研究したところ、これは分散ストレージの第一候補でしたが、GlusterFSが選ばれました。
メインサイトのリンクで詳細を確認することはできませんが、 コミュニティはそのようなリポジトリが私たちの目的に非常に適していると言います。 GlusterFSの主な機能は、クライアントが現在利用可能なウィザードに書き込み、操作が再開された後、レプリケーションをアクセス不能にすることです。
それでは、セットアップを始めましょう。 古いNFSも同時にサーバー上で動作することを予約します。それらは同じマシン上で非常にうまくいきます。 これは、NFSからの移行中に必要でした。
サーバーをインストールします。
aptitude install glusterfs-server
構成(/etc/glusterfs/glusterfsd.vol)について説明します。
volume posix type storage/posix option directory /mnt/Files end-volume volume locks type features/locks subvolumes posix end-volume volume Files type performance/io-threads option thread-count 8 subvolumes locks end-volume volume server type protocol/server option transport-type tcp option auth.login.Files.allow user # login+password option auth.login.user.password secret_pass subvolumes Files end-volume
2番目のサーバーでglusterfs-serverパッケージと構成(/etc/glusterfs/glusterfsd.vol)を複製します。
クライアントをインストールします。
aptitude install glusterfs-client
クライアントの構成(/etc/glusterfs/glusterfs.vol)について説明します。
volume server1.com type protocol/client option transport-type tcp option username user option password secret_pass option remote-host 10.132.259.159 # server1.com option remote-subvolume Files end-volume volume server2.com type protocol/client option transport-type tcp option username user option password secret_pass option remote-host 10.184.179.175 # server2.com option remote-subvolume Files end-volume volume replicate type cluster/replicate subvolumes server1.com server2.com end-volume volume writebehind type performance/write-behind option cache-size 1MB subvolumes replicate end-volume volume cache type performance/io-cache option cache-size 512MB subvolumes writebehind end-volume
ヒューズモジュールのロード
modprobe fuse
FSをマウントしてみてください
/usr/sbin/glusterfs -f /etc/glusterfs/glusterfs.vol /mnt/Files df -h /etc/glusterfs/glusterfs.vol 199G 120G 70G 64% /mnt/Files
今、小さな熊手について。 Gluster-FSは、fstabを介した再起動時にマウントされません。 ヒューズモジュールは自動的にロードされません。 カーネルを再構築できますが、簡単に再構築できます。
/ etc / initramfs-tools / modulesを最後に追加します。
fuse
私たちは実施します:
update-initramfs -u -k `uname -r`
/ etc / fstabに追加:
/etc/glusterfs/glusterfs.vol /mnt/Files glusterfs defaults 0 0
再起動して利益を得ます。
さて、テストに関する質問を見越して、Gluster-fs vs NFS vs POHMELFSのいくつかの指標を示します。 ファイルの重量は約700Mbです。
GlusterFS:
root@domU-12-41-56-0F-34-81:~# time cat /mnt/Files/ubuntu-11.10-desktop-amd64+mac.iso > /dev/null real 0m28.101s user 0m0.000s sys 0m4.700s root@domU-12-41-56-0F-34-81:~# time cat /mnt/Files/ubuntu-11.10-desktop-amd64+mac.iso > /dev/null real 0m20.321s user 0m0.000s sys 0m2.030s root@domU-12-41-56-0F-34-81:~# time cat /mnt/Files/ubuntu-11.10-desktop-amd64+mac.iso > /dev/null real 0m36.444s user 0m0.000s sys 0m1.410s
POHMELFS(ここからPOHMELFS:新しい方法でNFSを取得 ):
stolen@stolen ~/soft/pohmelfs-server.git $ time cat /mnt/pohmel/share/GRTMPVOL_RU_20.10.08.iso >/dev/null real 1m37.150s user 0m0.010s sys 0m1.270s stolen@stolen ~/soft/pohmelfs-server.git $ time cat /mnt/pohmel/share/GRTMPVOL_RU_20.10.08.iso >/dev/null real 0m0.591s user 0m0.003s sys 0m0.257s stolen@stolen ~/soft/pohmelfs-server.git $ time cat /mnt/upload/share/GRTMPVOL_RU_20.10.08.iso >/dev/null real 1m3.719s user 0m0.003s sys 0m0.400s
NFS:
root@domU-12-41-56-0F-34-81:run$ time cat /mnt/Files/ubuntu-11.10-desktop-amd64+mac.iso > /dev/null real 0m15.220s user 0m0.008s sys 0m0.423s root@domU-12-41-56-0F-34-81:run$ time cat /mnt/Files/ubuntu-11.10-desktop-amd64+mac.iso > /dev/null real 0m16.139s user 0m0.005s sys 0m0.160s root@domU-12-41-56-0F-34-81:run$ time cat /mnt/Files/ubuntu-11.10-desktop-amd64+mac.iso > /dev/null real 0m18.812s user 0m0.006s sys 0m0.177s
小さなファイルでGlusteFSとNFSをテストします。
これらの目的のために、700個のファイルを生成し、少しの内容でそれらを詰まらせるスクリプトをスケッチしました。
#!/bin/bash count=0 while [ $count -lt 700 ] do touch small_files/$count.txt openssl rand -base64 $[$count*42] > /root/small_files/$count.txt count=$[$count+1] done
GlusterFS、コピー:
root@domU-12-31-36-0F-71-81:~# time cp /root/small_files/* /mnt/Files/test_small/ real 0m28.318s user 0m0.010s sys 0m0.160s root@domU-12-31-36-0F-71-81:~# time cp /root/small_files/* /mnt/Files/test_small/ real 0m27.432s user 0m0.000s sys 0m0.170s root@domU-12-31-36-0F-71-81:~# time cp /root/small_files/* /mnt/Files/test_small/ real 0m29.397s user 0m0.010s sys 0m0.150s
NFSコピー:
root@domU-12-41-39-01-D1-71:~# time cp /root/small_files/* /mnt/Files/test_small/ real 0m15.848s user 0m0.008s sys 0m0.061s root@domU-12-41-39-01-D1-71:~# time cp /root/small_files/* /mnt/Files/test_small/ real 0m12.792s user 0m0.002s sys 0m0.070s root@domU-12-41-39-01-D1-71:~# time cp /root/small_files/* /mnt/Files/test_small/ real 0m13.417s user 0m0.006s sys 0m0.049s
GlusterFS、削除:
root@domU-12-31-36-0F-71-81:~# time rm /mnt/Files/test_small/* real 0m5.050s user 0m0.060s sys 0m0.000s root@domU-12-31-36-0F-71-81:~# time rm /mnt/Files/test_small/* real 0m7.055s user 0m0.000s sys 0m0.060s root@domU-12-31-36-0F-71-81:~# time rm /mnt/Files/test_small/* real 0m5.300s user 0m0.040s sys 0m0.020s
NFSの削除:
root@domU-12-41-39-01-D1-71:~# time rm /mnt/Files/test_small/* real 0m4.861s user 0m0.003s sys 0m0.013s root@domU-12-41-39-01-D1-71:~# time rm /mnt/Files/test_small/* real 0m3.618s user 0m0.002s sys 0m0.007s root@domU-12-41-39-01-D1-71:~# time rm /mnt/Files/test_small/* real 0m4.297s user 0m0.003s sys 0m0.024s
UPD: NFSおよびGlusterFS用の小さなファイルのテストを追加しました。