千家信息网

【巨杉数据库Sequoiadb】【咨询】【SequoiaFS】

发表于:2025-01-31 作者:千家信息网编辑
千家信息网最后更新 2025年01月31日,【 问题详细 描述】 如何挂 载 目 录 并指定手工 创 建的元数据集合,且集合 为 分区集合?【解决方法】 1. 在手工 创 建了目 录 和文件的元数据的分区集合后(假 设 目 录 元数据集合 为
千家信息网最后更新 2025年01月31日【巨杉数据库Sequoiadb】【咨询】【SequoiaFS】


问题详细 描述】
如何挂 并指定手工 建的元数据集合,且集合 分区集合?

【解决方法】
1.
在手工 建了目 和文件的元数据的分区集合后(假 元数据集合 "sequoiafs.metadir_cl" ,文件元数据集合 "sequoiafs.metafile_cl" ,分区 键为 "_id" ),需要 建如下三个索引:
1
)在目 元数据表中 建复合索引 "NameIndex"
db.sequoiafs.metadir_cl.createIndex( "NameIndex", { Name:1, Pid:1, _id:1 },{ Unique: true, Enforced :true } );

2 )在文件元数据表中 建复合索引 "NameIndex" "LobOidIndex"
db.sequoiafs.metafile_cl.createIndex( "NameIndex", { Name:1, Pid:1, _id:1 },{ Unique: true, Enforced :true } );
db.sequoiafs.metafile_cl.createIndex( "LobOidIndex", { LobOid:1, _id:1 },{ Unique: true, Enforced :true } );
2.
在挂 录时 使用 -d -f 指定自己手工 建的元数据集合,不要指定 --autocreate 生成元数据集合即可。
$sequoiafs /opt/sequoiadb/mountpoint -i localhost:11810 -l foo.bar -c /opt/sequoiafs/conf/foo_bar/001/ --diagpath /opt/sequoiafs/log/foo_bar/001/ -o big_writes -o auto_unmount -o max_write=131072 -o max_read=131072 -d sequoiafs.metadir_cl -f sequoiafs.metafile_cl

详情参考:
http://doc.sequoiadb.com/cn/sequoiadb-cat_id-1525956060-edition_id-302
注】
创建索引时需要注意复合索引字段中的顺序问题,需要把分区键字段放在最后,如将分区键字段放在最前面创建了索引,在后续查找目录时可能会因为无法使用此索引而导致写入目录速度慢等问题。

0