$ cd /usr/local$ mkdir /service$ cd /service$ wget https://downloads.tencentgoosefs.cn/goosefs/1.4.2/release/goosefs-1.4.2-bin.tar.gz
$ tar -zxvf goosefs-1.4.2-bin.tar.gz$ cd goosefs-1.4.2
${GOOSEFS_HOME}
代指该目录的绝对路径。${GOOSEFS_HOME}/conf
的目录下,创建 conf/goosefs-site.properties
的配置文件。GooseFS 提供 AI 和大数据两个场景的配置模板,可以使用任意上述内置模板,然后进入编辑模式修改配置:
(1)使用 AI 场景模板,更多信息可参考GooseFS AI 场景生产环境配置实践。$ cp conf/goosefs-site.properties.ai_template conf/goosefs-site.properties$ vim conf/goosefs-site.properties
$ cp conf/goosefs-site.properties.bigdata_template conf/goosefs-site.properties$ vim conf/goosefs-site.properties
conf/goosefs-site.properties
中,调整如下配置项:# Common properties# 调整Master节点host信息goosefs.master.hostname=localhostgoosefs.master.mount.table.root.ufs=${goosefs.work.dir}/underFSStorage# Security properties# 调整权限配置goosefs.security.authorization.permission.enabled=truegoosefs.security.authentication.type=SIMPLE# Worker properties# 调整worker节点配置,指定本地缓存介质、缓存路径和缓存容量大小goosefs.worker.ramdisk.size=1GBgoosefs.worker.tieredstore.levels=1goosefs.worker.tieredstore.level0.alias=SSDgoosefs.worker.tieredstore.level0.dirs.path=/datagoosefs.worker.tieredstore.level0.dirs.quota=80G# User properties# 指定文件读写缓存策略goosefs.user.file.readtype.default=CACHEgoosefs.user.file.writetype.default=MUST_CACHE
goosefs.worker.tieredstore.level0.dirs.path
该路径参数前,需要先新建这一路径。$ cd /usr/local/service/goosefs-1.4.2$ ./bin/goosefs-start.sh all
http://localhost:9201
和 http://localhost:9204
,分别查看 Master 和 Worker 的运行状态。conf/core-site.xml
配置中指定 COSN 或 CHDFS 的必需配置项,其中包括但不限于:fs.cosn.impl
、 fs.AbstractFileSystem.cosn.impl
以及 fs.cosn.userinfo.secretId
和 fs.cosn.userinfo.secretKey
等,如下所示:<!-- COSN related configurations --><property><name>fs.cosn.impl</name><value>org.apache.hadoop.fs.CosFileSystem</value></property><property><name>fs.AbstractFileSystem.cosn.impl</name><value>com.qcloud.cos.goosefs.CosN</value></property><property><name>fs.cosn.userinfo.secretId</name><value></value></property><property><name>fs.cosn.userinfo.secretKey</name><value></value></property><property><name>fs.cosn.bucket.region</name><value></value></property><!-- CHDFS related configurations --><property><name>fs.AbstractFileSystem.ofs.impl</name><value>com.qcloud.chdfs.fs.CHDFSDelegateFSAdapter</value></property><property><name>fs.ofs.impl</name><value>com.qcloud.chdfs.fs.CHDFSHadoopFileSystemAdapter</value></property><property><name>fs.ofs.tmp.cache.dir</name><value>/data/chdfs_tmp_cache</value></property><!--appId--><property><name>fs.ofs.user.appid</name><value>1250000000</value></property>
$ goosefs ns create myNamespace cosn://bucketName-1250000000/ \\--secret fs.cosn.userinfo.secretId=AKXXXXXXXXXXX \\--secret fs.cosn.userinfo.secretKey=XXXXXXXXXXXX \\--attribute fs.cosn.bucket.region=ap-xxx \\
–-secret
参数指定访问密钥,并且使用 --attribute
指定 Hadoop-COS(COSN)所有必选参数,具体的必选参数可参考 Hadoop 工具。goosefs ns create MyNamespaceCHDFS ofs://xxxxx-xxxx.chdfs.ap-guangzhou.myqcloud.com/ \\--attribute fs.ofs.user.appid=1250000000--attribute fs.ofs.tmp.cache.dir=/tmp/chdfs
ls
命令列出集群中创建的所有 namespace:$ goosefs ns lsnamespace mountPoint ufsPath creationTime wPolicy rPolicy TTL ttlActionmyNamespace /myNamespace cosn://bucketName-125xxxxxx/3TB 03-11-2021 11:43:06:239 CACHE_THROUGH CACHE -1 DELETEmyNamespaceCHDFS /myNamespaceCHDFS ofs://xxxxx-xxxx.chdfs.ap-guangzhou.myqcloud.com/3TB 03-11-2021 11:45:12:336 CACHE_THROUGH CACHE -1 DELETE
$ goosefs ns stat myNamespaceNamespaceStatus{name=myNamespace, path=/myNamespace, ttlTime=-1, ttlAction=DELETE, ufsPath=cosn://bucketName-125xxxxxx/3TB, creationTimeMs=1615434186076, lastModificationTimeMs=1615436308143, lastAccessTimeMs=1615436308143, persistenceState=PERSISTED, mountPoint=true, mountId=4948824396519771065, acl=user::rwx,group::rwx,other::rwx, defaultAcl=, owner=user1, group=user1, mode=511, writePolicy=CACHE_THROUGH, readPolicy=CACHE}
序号 | 参数 | 描述 |
1 | name | namespace 的名字 |
2 | path | namespace 在 GooseFS 中的路径 |
3 | ttlTime | namespace 下目录和文件的 ttl 周期 |
4 | ttlAction | namespace 下目录和文件的 ttl 处理动作,有两种处理动作:FREE 和 DELETE,默认是 FREE |
5 | ufsPath | namespace 在 ufs 上的挂载路径 |
6 | creationTimeMs | namespace 的创建时间,单位是毫秒 |
7 | lastModificationTimeMs | namespace 下目录和文件的最后修改时间,单位是毫秒 |
8 | persistenceState | namespace 的持久化状态 |
9 | mountPoint | namespace 是否是一个挂载点,始终为 true |
10 | mountId | namespace 挂载点 ID |
11 | acl | namespace 的访问控制列表 |
12 | defaultAcl | namespace 的默认访问控制列表 |
13 | owner | namespace 的 owner |
14 | group | namespace 的 owner 所属的 group |
15 | mode | namespace 的 POSIX 权限 |
16 | writePolicy | namespace 的 写策略 |
17 | readPolicy | namespace 的 读策略 |
$ goosefs table attachdb --db test_db hive thrift://172.16.16.22:7004 test_for_demo
$ goosefs table ls test_db web_pageOWNER: hadoopDBNAME.TABLENAME: testdb.web_page (wp_web_page_sk bigint,wp_web_page_id string,wp_rec_start_date string,wp_rec_end_date string,wp_creation_date_sk bigint,wp_access_date_sk bigint,wp_autogen_flag string,wp_customer_sk bigint,wp_url string,wp_type string,wp_char_count int,wp_link_count int,wp_image_count int,wp_max_ad_count int,)PARTITIONED BY ()LOCATION (gfs://172.16.16.22:9200/myNamespace/3000/web_page)PARTITION LIST ({partitionName: web_pagelocation: gfs://172.16.16.22:9200/myNamespace/3000/web_page})
$ goosefs table load test_db web_pageAsynchronous job submitted successfully, jobId: 1615966078836
$ goosefs fs
ls
命令列出 GooseFS 中的文件,以下示例展示如何列出根目录下的所有文件:$ goosefs fs ls /
copyFromLocal
命令将数据从本地拷贝到 GooseFS 中:$ goosefs fs copyFromLocal LICENSE /LICENSECopied LICENSE to /LICENSE$ goosefs fs ls /LICENSE-rw-r--r-- hadoop supergroup 20798 NOT_PERSISTED 03-26-2021 16:49:37:215 0% /LICENSE
cat
命令查看文件内容:$ goosefs fs cat /LICENSEApache LicenseVersion 2.0, January 2004http://www.apache.org/licenses/TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION...
./underFSStorage
,可以通过 persist
命令将文件持久化存储到本地文件系统中:$ goosefs fs persist /LICENSEpersisted file /LICENSE with size 26847
PERSISTED
代表文件已在内存中,文件状态 NOT_PERSISTED
则代表文件不在内存中:$ goosefs fs ls /data/cos/sample_tweets_150m.csv-r-x------ staff staff 157046046 NOT_PERSISTED 01-09-2018 16:35:01:002 0% /data/cos/sample_tweets_150m.csv
$ time goosefs fs cat /data/s3/sample_tweets_150m.csv | grep-c tencent889real 0m22.857suser 0m7.557ssys 0m1.181s
$ goosefs fs ls /data/cos/sample_tweets_150m.csv-r-x------ staff staff 157046046ED 01-09-2018 16:35:01:002 0% /data/cos/sample_tweets_150m.csv$ time goosefs fs cat /data/s3/sample_tweets_150m.csv | grep-c tencent889real 0m1.917suser 0m2.306ssys 0m0.243s
$ ./bin/goosefs-stop.sh local
本页内容是否解决了您的问题?