FastDFS分布式文件系统-----Nginx集成&FastDHT去重&SpringBoot集成

文件系统

搭建完毕,启动步骤

/etc/init.d/fdfs_trackerd start
/etc/init.d/fdfs_storaged start
cd /usr/local/nginx-1.11.1/
./sbin/nginx
fdhtd /etc/fdht/fdhtd.conf start

概述

分布式文件系统(Distributed File System)是指文件系统管理的物理存储资源不一定直接连接在本地节点上,而是通过计算机网络与节点相连。

计算机通过文件系统管理、存储数据,而信息爆炸时代中人们可以获取的数据成指数倍的增长,单纯通过增加硬盘个数来扩展计算机文件系统的存储容量的方式,在容量大小、容量增长速度、数据备份、数据安全等方面的表现都差强人意。分布式文件系统可以有效解决数据的存储和管理难题:将固定于某个地点的某个文件系统,扩展到任意多个地点/多个文件系统,众多的节点组成一个文件系统网络。每个节点可以分布在不同的地点,通过网络进行节点间的通信和数据传输。人们在使用分布式文件系统时,无需关心数据是存储在哪个节点上、或者是从哪个节点从获取的,只需要像使用本地文件系统一样管理和存储文件系统中的数据。

文件系统最初设计时,仅仅是为局域网内的本地数据服务的。而分布式文件系统将服务范围扩展到了整个网络。不仅改变了数据的存储和管理方式,也拥有了本地文件系统所无法具备的数据备份、数据安全等优点。判断一个分布式文件系统是否优秀,取决于以下三个因素:

数据的存储方式–例如有1000万个数据文件,可以在一个节点存储全部数据文件,在其他N个节点上每个节点存储1000/N万个数据文件作为备份;或者平均分配到N个节点上存储,每个节点上存储1000/N万个数据文件。无论采取何种存储方式,目的都是为了保证数据的存储安全和方便获取。

数据的读取速率–包括响应用户读取数据文件的请求、定位数据文件所在的节点、读取实际硬盘中数据文件的时间、不同节点间的数据传输时间以及一部分处理器的处理时间等。各种因素决定了分布式文件系统的用户体验。即分布式文件系统中数据的读取速率不能与本地文件系统中数据的读取速率相差太大,否则在本地文件系统中打开一个文件需要2秒,而在分布式文件系统中各种因素的影响下用时超过10秒,就会严重影响用户的使用体验。

数据的安全机制–由于数据分散在各个节点中,必须要采取冗余、备份、镜像等方式保证节点出现故障的情况下,能够进行数据的恢复,确保数据安全。

主要分类

  • 块存储:MongoDB数据库中的GridFS、Hadoop中的HDFS,这些系统在存储文件的的时候会尝试先将文件打碎存储(拆分成Data Block)。这样存储的优点可以存储超大型文件,更加高效的利用磁盘资源。但是需要额外存储文件碎片的元数据信息。

在块存储中HDFS存储的块128MB,但是在MongoDB中默认Chunk 255 KB,虽然都支持块存储但是应用场景有很大差异。HDFS使用于超大文本日志文件存储。但是MongoDB适合存储超大的流媒体文件例如操大的音频和视频,可以实现流媒体数据流的区间加载

  • 文件存储:GlusterFS、NFS、FastDFS等都是基于文件单位存储,这种存储并不会将文件系统打碎。而是文件存储到系统中的某一台服务器中。这样存储的优点可以应对一些小文件系统,系统维护简单,无需存储文件的元数据,系统设计和维护成本低。

FastDFS

特点

FastDFS 是一款开源的轻量级分布式文件系统如下特点:

  • 纯粹C语言实现,支持Linux、FreeBSD等unix系统。

  • 类似GoogleFS/HDFS,但是不是通用的文件系统,只能通过专有的API访问,目前提供了C、Java和PHPAPI
    互联网量身定做,最求高性能,高扩展.

  • FastDFS不仅仅可以存储文件,还可以存储文件的元数据信息(可选)。

架构

整个FastDFS架构中有Client、Tracker和Storage服务。其中Client用于提交文件给FastDFS集群。Storage 服务负责实际数据的存储,Tracker服务负责监控和调度Storage服务,起到负载均衡器的作用。

FastDFS分布式文件系统-----Nginx集成&FastDHT去重&SpringBoot集成_第1张图片
客户端Client–主要是上传下载数据的服务器,也就是我们自己的项目所部署在的服务器。
StorageServer --存储服务器,文件和文件属性信息(meta数据)都存储在服务器的磁盘上。当中的卷(group)是一样的也就意味着这些服务彼此数据相互备份,实现数据的冗余备份。不同卷存储整个集群中的部分文件,类似于传统单机文件系统的的分区概念(C盘、D盘、…).
Tracker Server–主要做工作调度,在访问上起负载均衡的作用。在内存中记录集群中group/卷和Storage server的状态信息,是连接Client和Storage Server的枢纽。因为相关信息存储在内存中,所以Tracker Server性能非常高,一个较大的集群(上百个group/卷)中3台就够了。

上传、下载机制

FastDFS分布式文件系统-----Nginx集成&FastDHT去重&SpringBoot集成_第2张图片

  • Storage Server会定期的向Tracker服务器汇报自身状态信息,例如健康状态和存储容量。
  • Client连接Tracker Server发送文件请求。
  • Tracker Server根据注册的Storage Server的信息返回一台可用的Storage Server的调用信息。
  • Client拿到信息后直接连接对应的Storage Server进行点到点的文件上传(附加元数据-可选)。
    -> Storage Server收到文件请求后会根据自己位置信息生成File_ID信息,并且将File_ID和用户携带的元数据信息进行关联,然后将File_ID返回给Client。
  • 返回的File_ID文件服务器并不会存储,需要Client端保留在外围数据库中,以后Client端可以通过File_ID下载对应的文件或者元数据。

FastDFS分布式文件系统-----Nginx集成&FastDHT去重&SpringBoot集成_第3张图片

  • Storage Server会定期的向Tracker服务器汇报自身状态信息,例如健康状态和存储容量。
  • Client连接Tracker Server携带File_ID参数发送文件下载请求。
    Tracker Server根据注册的Storage Server的信息返回一台可用的Storage Server的调用信息(主从服务器)。
  • Client拿到信息后直接连接对应的Storage Server进行点到点的文件下载(读取元数据)。
  • Storage Server收到文件请求后解析File_ID信息,读取本地的文件流,将数据写会Client端

File_ID

File_ID是由Storage Server生成并返回给Client端。File_ID包含了组/卷和文件路径。Storage Server可以直接根据该文件名定位到该文件。
FastDFS分布式文件系统-----Nginx集成&FastDHT去重&SpringBoot集成_第4张图片

FastDFS集群搭建

准备
可以进入 https://github.com/happyfish100 网站下载FastDFS相关资源,准备3台虚拟机,配置好主机名(这里是CentOSA,CentOSB,CentOSC)CentOSX:三台机器都需要的配置。

- 1.安装依赖包libfastcommon https://github.com/happyfish100/libfastcommon/archive/V1.0.35.tar.gz
[root@CentOSX ~]# yum install -y gcc-c++
[root@CentOSX ~]# tar -zxf V1.0.35.tar.gz
[root@CentOSX ~]# cd libfastcommon-1.0.35
[root@CentOSX libfastcommon-1.0.35]# ./make.sh
[root@CentOSX libfastcommon-1.0.35]# ./make.sh install
- 2.安装FastDFS https://github.com/happyfish100/fastdfs/archive/V5.11.tar.gz
[root@CentOSX ~]# yum install -y perl-devel
[root@CentOSX ~]# tar -zxf fastdfs-5.11.tar.gz
[root@CentOSX ~]# cd fastdfs-5.11
[root@CentOSX fastdfs-5.11]# ./make.sh
[root@CentOSX fastdfs-5.11]# ./make.sh install

提示:当软件安装结束后,默认FastDFS启动所需的配置⽂件放置在/etc/fdfs⽬录下。

[root@CentOSX ~]# yum install -y tree
[root@CentOSX ~]# tree /etc/fdfs/
/etc/fdfs/
[root@CentOX ~]#  tree /etc/fdfs/
/etc/fdfs/
├── client.conf.sample
├── storage.conf.sample
├── storage_ids.conf.sample
└── tracker.conf.sample

0 directories, 4 files

# 可运⾏脚本
[root@CentOSX ~]# ls -l /etc/init.d/fdfs_*
-rwxr-xr-x. 1 root root 961 Jun 30 20:22 /etc/init.d/fdfs_storaged
-rwxr-xr-x. 1 root root 963 Jun 30 20:22 /etc/init.d/fdfs_trackerd
# 执⾏程序
[root@CentOSX ~]# whereis fdfs_storaged fdfs_trackerd
fdfs_storaged: /usr/bin/fdfs_storaged
fdfs_trackerd: /usr/bin/fdfs_trackerd
- 3.配置服务
  • 1.创建fdfs运⾏所需的数据⽬录
[root@CentOSX ~]# mkdir -p /data/fdfs/{tracker,storage/store01,storage/store02}
[root@CentOSX ~]# tree /data/
/data/
/data/
└── fdfs
    ├── storage
    │   ├── store01
    │   └── store02
    └── tracker

  • 2.创建启动所需的配置⽂件
[root@CentOSX ~]# cp /etc/fdfs/tracker.conf.sample /etc/fdfs/tracker.conf
[root@CentOSX ~]# cp /etc/fdfs/storage.conf.sample /etc/fdfs/storage.conf
[root@CentOSX ~]# cp /etc/fdfs/client.conf.sample /etc/fdfs/client.conf
[root@CentOSX ~]# tree /etc/fdfs/
/etc/fdfs/
├── client.conf
├── client.conf.sample
├── storage.conf
├── storage.conf.sample
├── storage_ids.conf.sample
├── tracker.conf
└── tracker.conf.sample

  • 3.配置Tracker Server
[root@CentOSX ~]# vi /etc/fdfs/tracker.conf

base_path=/data/fdfs/tracker
  • 4.配置Storage Server
[root@CentOSX ~]# vi /etc/fdfs/storage.conf

group_name=group`[1,2,3]`
base_path=/data/fdfs/storage
store_path_count=2
store_path0=/data/fdfs/storage/store01
store_path1=/data/fdfs/storage/store02
tracker_server=CentOSA:22122
tracker_server=CentOSB:22122
tracker_server=CentOSC:22122

如果是双网卡,需要在tracker,storage的bind_addr加上自己的静态ip

  • 5.修改Client端
[root@CentOSX ~]# vi /etc/fdfs/client.conf

base_path=/tmp
tracker_server=CentOSA:22122
tracker_server=CentOSB:22122
tracker_server=CentOSC:22122
启动服务器
[root@CentOSX ~]# /etc/init.d/fdfs_trackerd start|stop|restart
Starting FastDFS tracker server:
[root@CentOSX ~]# /etc/init.d/fdfs_storaged start|stop|restart
Starting FastDFS storage server:
[root@CentOSX ~]# ps -aux | grep fdfs
Warning: bad syntax, perhaps a bogus '-'? See /usr/share/doc/procps-3.2.8/FAQ
root 78950 0.0 0.1 144784 2040 ? Sl 21:06 0:00
/usr/bin/fdfs_trackerd /etc/fdfs/tracker.conf
root 79000 13.0 3.2 83520 67144 ? Sl 21:06 0:06
/usr/bin/fdfs_storaged /etc/fdfs/storage.conf
root 79324 0.0 0.0 103320 884 pts/0 S+ 21:07 0:00 grep fdfs

服务启动不了,查看日志

  • cat /data/fdfs/storage/logs/storage.log
  • cat /data/fdfs/tracker/logs/tracker.log
FastDFS操作
  • 上传文件
[root@CentOSX ~]# fdfs_upload_file /etc/fdfs/client.conf install.log
group1/M00/00/01/wKikgV0YtQ2AfmozAAAixZ60QfI792.log
  • 下载文件
[root@CentOSX ~]# fdfs_download_file /etc/fdfs/client.conf
group1/M00/00/01/wKikgV0YtQ2AfmozAAAixZ60QfI792.log
  • 查询信息
[root@CentOSX ~]# fdfs_file_info /etc/fdfs/client.conf
group1/M00/00/01/wKikgV0YtQ2AfmozAAAixZ60QfI792.log
source storage id: 0
source ip address: 192.168.164.129
file create timestamp: 2019-06-30 21:11:41
file size: 8901
file crc32: 2662613490 (0x9EB441F2)
  • 删除⽂件
[root@CentOSX ~]# fdfs_delete_file /etc/fdfs/client.conf
group1/M00/00/01/wKikgV0YtQ2AfmozAAAixZ60QfI792.log
  • ⽂件追加
[root@CentOSX ~]# clear
[root@CentOSX ~]# echo "hello" > 1.txt
[root@CentOSX ~]# echo "word" > 2.txt
[root@CentOSX ~]# fdfs_upload_appender /etc/fdfs/client.conf /root/1.txt
group2/M00/00/00/wKikgl0qX4KEep_PAAAAAIpZx2Y751.txt
[root@CentOSX ~]# fdfs_append_file /etc/fdfs/client.conf
group2/M00/00/00/wKikgl0qX4KEep_PAAAAAIpZx2Y751.txt 2.txt
[root@CentOSX ~]# fdfs_download_file /etc/fdfs/client.conf
group2/M00/00/00/wKikgl0qX4KEep_PAAAAAIpZx2Y751.txt
[root@CentOSX ~]# cat wKikgl0qX4KEep_PAAAAAIpZx2Y751.txt
hello
word
  • 监视状态
[root@CentOSX ~]# fdfs_monitor /etc/fdfs/client.conf
  • ⽂件校验和
[root@CentOSX ~]# fdfs_crc32 /etc/fdfs/client.conf
group2/M00/00/00/wKikgl0qX4KEep_PAAAAAIpZx2Y751.txt
2911662598

Nginx集成FastDFS

在storage server中安装nginx服务,并且每台nginx服务器中必须集成fastdfs插件,该插件的本质就是一个C语言实现的DFS访问客户端。
FastDFS分布式文件系统-----Nginx集成&FastDHT去重&SpringBoot集成_第5张图片

Nginx配置安装
  • 下载fastdfs-nginx-module(不建议使⽤github上,因为编译有问题)
[root@CentOSX ~]# tar -zxf fastdfs-nginx-module.tar.gz
[root@CentOSX ~]# yum install -y pcre-devel
[root@CentOSX ~]# yum install -y openssl-devel
[root@CentOSX ~]# wget http://nginx.org/download/nginx-1.11.1.tar.gz
[root@CentOSX ~]# tar -zxf nginx-1.11.1.tar.gz
[root@CentOSX nginx-1.11.1]# ./configure --prefix=/usr/local/nginx-1.11.1/ --addmodule=/root/fastdfs-nginx-module/src
[root@CentOSX nginx-1.11.1]# make
[root@CentOSX nginx-1.11.1]# make install
拷⻉配置
[root@CentOSX ~]# cp /root/fastdfs-nginx-module/src/mod_fastdfs.conf /etc/fdfs/
[root@CentOSX ~]# cd /root/fastdfs-5.11/conf/
[root@CentOSX conf]# cp http.conf mime.types anti-steal.jpg /etc/fdfs/
配置nginx.conf
[root@CentOSX ~]# vi /usr/local/nginx-1.11.1/conf/nginx.conf
#access_log logs/host.access.log main;

 location ~ /group[0-9]+/M00 {
 root /data/fdfs/storage/store01;
 ngx_fastdfs_module;
 }
 location ~ /group[0-9]+/M01 {
 root /data/fdfs/storage/store02;
 ngx_fastdfs_module;
 }
 
 location / {
 root html;
 index index.html index.htm;
 }      

修改mod_fastdfs.conf
[root@CentOSX ~]# vi /etc/fdfs/mod_fastdfs.conf
tracker_server=CentOSA:22122
tracker_server=CentOSB:22122
tracker_server=CentOSC:22122
group_name=group`[1,2,3]`
url_have_group_name = true
store_path_count=2
store_path0=/data/fdfs/storage/store01
store_path1=/data/fdfs/storage/store02
启动nginx
[root@CentOSX ~]# cd /usr/local/nginx-1.11.1/
[root@CentOSX nginx-1.11.1]# ./sbin/nginx -t
ngx_http_fastdfs_set pid=116305
ngx_http_fastdfs_set pid=116305
nginx: the configuration file /usr/local/nginx-1.11.1//conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx-1.11.1//conf/nginx.conf test is successful
[root@CentOSX nginx-1.11.1]# ./sbin/nginx
测试下载
[root@CentOSA ~]# fdfs_upload_file /etc/fdfs/client.conf install.log
group2/M01/00/00/wKikgl0p_4-AIqGJAAAixZ60QfI693.log

随便访问⼀个nginx服务查看效果

http://CentOS[A|B|C]/group2/M01/00/00/wKikgl0p_4-AIqGJAAAixZ60QfI693.log?
filename=install.log

⽤户在请求的时候,可以选择性添加⽂件名,⽤于修改下载的⽂件名

FastDHT⽂件去重

FastDFS除了提供了与nginx的集成,已提供了去重的⽂件解决⽅案。该解决⽅案FastDFS的作者yuqing也 在github上以FastDHT分⽀贡献出来了。

FastDHT是一种基于键值对的高性能分布式哈希表(DHT)。它可以存储大量的键值对,如文件名映射、会话数据和用户相关数据。
FastDFS分布式文件系统-----Nginx集成&FastDHT去重&SpringBoot集成_第6张图片
FastDFS分布式文件系统-----Nginx集成&FastDHT去重&SpringBoot集成_第7张图片

安装
  • 1.安装BerkeleyDB 下载db-4.7.25.tar.gz
[root@CentOSX ~]# tar -zxf db-4.7.25.tar.gz
[root@CentOSX ~]# cd db-4.7.25
[root@CentOSX db-4.7.25]# cd build_unix/
[root@CentOSX build_unix]# ./../dist/configure
[root@CentOSX build_unix]# make
[root@CentOSX build_unix]# make install
  • 2.安装FastDHT
[root@CentOSX ~]# tar zxf FastDHT_v2.01.tar.gz
[root@CentOSX ~]# cd FastDHT
[root@CentOSX FastDHT]# ./make.sh
[root@CentOSX FastDHT]# ./make.sh install

安装结束后会在/etc⽬录下产⽣fdht⽂件夹

[root@CentOSX fdht]# tree /etc/fdht/
/etc/fdht/
├── fdht_client.conf
├── fdhtd.conf
└── fdht_servers.conf

  • 3.修改fdhtd.conf
[root@CentOSX ~]# mkdir /data/fastdht
[root@CentOSX ~]# vi /etc/fdht/fdhtd.conf
base_path=/data/fastdht
  • 4.修改fdht_servers.conf
[root@CentOSX ~]# vi /etc/fdht/fdht_servers.conf
group_count = 3
group0 = CentOSA:11411
group1 = CentOSB:11411
group2 = CentOSC:11411
  • 5.修改fdht_client.conf配置⽂件
[root@CentOSX ~]# vi /etc/fdht/fdht_client.conf
base_path=/tmp/
  • 6.启动FDHT服务
[root@CentOSX ~]# fdhtd /etc/fdht/fdhtd.conf start|stop|restart
[root@CentOSX ~]# ps -axu| grep fd
Warning: bad syntax, perhaps a bogus '-'? See /usr/share/doc/procps-3.2.8/FAQ
root 29127 0.0 0.8 195200 17504 ? Sl 00:38 0:00 fdhtd
/etc/fdht/fdhtd.conf start
root 29193 0.0 0.0 103320 884 pts/0 S+ 00:39 0:00 grep fd
root 128672 0.2 0.1 275856 2204 ? Sl 00:14 0:03
/usr/bin/fdfs_trackerd /etc/fdfs/tracker.conf
root 128710 1.8 3.2 85584 67188 ? Sl 00:14 0:27
/usr/bin/fdfs_storaged /etc/fdfs/storage.conf
操作FastDHT服务
  • 设置值
[root@CentOSX ~]# fdht_set /etc/fdht/fdht_client.conf wangx:user001
name='wangx',age=18;
This is FastDHT client test program v2.01
Copyright (C) 2008, Happy Fish / YuQing
FastDHT may be copied only under the terms of the GNU General
Public License V3, which may be found in the FastDHT source kit.
Please visit the FastDHT Home Page http://www.csource.org/
for more detail.
success set key count: 2, fail count: 0
  • 读取值
[root@CentOSX ~]# fdht_get /etc/fdht/fdht_client.conf wangx:user001 name,age
This is FastDHT client test program v2.01
Copyright (C) 2008, Happy Fish / YuQing
FastDHT may be copied only under the terms of the GNU General
Public License V3, which may be found in the FastDHT source kit.
Please visit the FastDHT Home Page http://www.csource.org/
for more detail.
name=wangx
age=18
success get key count: 2, fail count: 0
  • 删除值
 fdht_delete /etc/fdht/fdht_client.conf wangx:user001 name;
 This is FastDHT client test program v2.01
Copyright (C) 2008, Happy Fish / YuQing
FastDHT may be copied only under the terms of the GNU General
Public License V3, which may be found in the FastDHT source kit.
Please visit the FastDHT Home Page http://www.csource.org/
for more detail.
success delete keys: name
success delete key count: 1, fail count: 0

在一个机器上删除了,其他机器上也就删除了

集成FastDHT
  • 1.修改etc/fdfs/storage.conf配置⽂件
[root@CentOSX ~]# vi /etc/fdfs/storage.conf

check_file_duplicate=1
keep_alive=1
#include /etc/fdht/fdht_servers.conf
  • 2.分别启动fdhtd服务、fastfs
[root@CentOSX usr]# /usr/local/bin/fdhtd /etc/fdht/fdhtd.conf restart
[root@CentOSX usr]# /etc/init.d/fdfs_trackerd restart
[root@CentOSX usr]# /etc/init.d/fdfs_storaged restart
  • 3.上传⽂件测试
[root@CentOSA ~]# fdfs_upload_file /etc/fdfs/client.conf install.log
group2/M00/00/00/wKikgl0qC4KAErBTAAAixXWAIyY133.log
[root@CentOSA ~]# fdfs_upload_file /etc/fdfs/client.conf install.log
group2/M00/00/00/wKikgl0qDAqAa0XwAAAixWB5m1c851.log
[root@CentOSB ~]# ls -l /data/fdfs/storage/store01/data/00/00/
total 20
lrwxrwxrwx. 1 root root 72 Jul 14 00:49 wKikgl0qC4KAErBTAAAixXWAIyY133.log ->
/data/fdfs/storage/store01/data/00/00/wKikgl0qC4KARrYBAAAixZ60QfI755.log
-rw-r--r--. 1 root root 8901 Jul 14 00:49 wKikgl0qC4KARrYBAAAixZ60QfI755.log
lrwxrwxrwx. 1 root root 72 Jul 14 00:51 wKikgl0qDAqAa0XwAAAixWB5m1c851.log ->
/data/fdfs/storage/store01/data/00/00/wKikgl0qC4KARrYBAAAixZ60QfI755.log

可以看出有两份wKikgl0qC4KARrYBAAAixZ60QfI755.log文件,用户指挥拿到前面的引用,等引用删除完全该文件就会被完全删除

SpringBoot集成FastDFS

引⼊依赖

 com.github.tobato
 fastdfs-client
 1.26.6

配置application.yml
fdfs:
    tracker-list: 192.168.192.14:22122,192.168.192.19:22122,192.168.192.15:22122
  # 配置默认缩略图
    thumb-image.height: 80
    thumb-image.width: 80
测试文件上传
@Autowired
private FastFileStorageClient fastFileStorageClient;
  • 1.文件上传
//测试文件上传
    @Test
    public void testUpload() throws IOException {
        FileInputStream inputStream = new FileInputStream("C:\\Users\\Administrator\\Desktop/upload.jpg");
        FastImageFile fastImageFile=new
                FastImageFile(inputStream,inputStream.available(),"jpg",new HashSet());
        StorePath storePath = fastFileStorageClient.uploadImage(fastImageFile);
        System.out.println(storePath.getFullPath());
    }
  • 2.图片上传(缩略图)
//图⽚上传(缩略图)
    @Test
    public void imageUpload() throws IOException {
        FileInputStream inputStream = new FileInputStream("C:\\Users\\Administrator\\Desktop/upload.jpg");
        FastImageFile fastImageFile=new
                FastImageFile(inputStream,inputStream.available(),"jpg",new HashSet(),new
                ThumbImage(150,150));
        StorePath storePath = fastFileStorageClient.uploadImage(fastImageFile);
        System.out.println(storePath.getFullPath());
    }
  • 3.删除图片
//删除文件
    @Test
    public void deleteFile(){
        fastFileStorageClient.deleteFile("group3","M00/00/00/wKjAD151vpiAHFUUAAFVjix6M5w629.jpg");
    }
  • 4.下载图片(基本用不到,一般用nginx集成去下载)
//⽂件下载(⽤不到)
    @Test
    public void down() throws IOException {
        ByteArrayOutputStream baos = fastFileStorageClient.downloadFile("group3",
                "M00/00/00/wKjAD151v0eAUwriAAFVjhoiOQU691_150x150.jpg", new
                        DownloadCallback() {
                            @Override
                            public ByteArrayOutputStream recv(InputStream ins) throws IOException {
                                ByteArrayOutputStream baos = new ByteArrayOutputStream();
                                IOUtils.copy(ins, baos);
                                return baos;
                            }
                        });
        IOUtils.copy(new ByteArrayInputStream(baos.toByteArray()),new FileOutputStream("C:\\Users\\Administrator\\Desktop/baby.png"));
    }

你可能感兴趣的:(FastDFS分布式文件系统-----Nginx集成&FastDHT去重&SpringBoot集成)