S3 is object storage emulated as NFS using AWS file storage gateway; we need to understand S3 object operations and associated charges.
Putting more frequent changing files on the AWS file storage gateway may surge the cost.
Below is the AWS file operation vs S3 object impact.
Interestingly, in LAB, I observed that even if you are accessing the S3 console using the AWS console for administrative purposes, it is calling the list API call or getting the files list.
With help of FUSE and S3fs, on premise NFS exported files were able to access in cloud EC2 instances.
This is very useful incase of you have some systems that needs hybrid file access.
[root@ip-172-31-13-8 s3fs-fuse]# s3fs rmanbackupdemo -o use_cache=/tmp -o allow_other -o uid=1001 -o mp_umask=002 -o multireq_max=5 /mys3mount
[root@ip-172-31-13-8 s3fs-fuse]# c /mys3mount/
-bash: c: command not found
[root@ip-172-31-13-8 s3fs-fuse]# cd /mys3mount/
[root@ip-172-31-13-8 mys3mount]# ls
awstest
[root@ip-172-31-13-8 mys3mount]# cd awstest/
[root@ip-172-31-13-8 awstest]# ls -ltr
total 441241
-rw-r----- 1 1001 root 10715136 Oct 4 10:10 c-3835465528-20211004-01
-rw-r----- 1 1001 root 10682368 Oct 5 07:06 cntrl_AWSTEST_9_1_1085107533.ctl
-rw-r----- 1 1001 root 10715136 Oct 5 07:06 c-3835465528-20211005-00
-rw-r----- 1 1001 root 66764800 Oct 5 07:14 Full_AWSTEST_2021_10_05_060aqr8q_1_1.bak
-rw-r----- 1 1001 root 240672768 Oct 5 07:15 Full_AWSTEST_2021_10_05_050aqr8q_1_1.bak
-rw-r----- 1 1001 root 9333248 Oct 5 07:16 Arch_AWSTEST_2021_10_05_080aqr9u_1_1.bak
-rw-r----- 1 1001 root 102942208 Oct 5 07:16 Arch_AWSTEST_2021_10_05_070aqr9u_1_1.bak
-rw-r----- 1 1001 root 0 Oct 5 09:42 test_s3file.options
drwxr-x--- 1 1001 root 0 Oct 5 09:42 folderrenametest
[root@ip-172-31-13-8 awstest]#
[root@ip-172-31-13-8 awstest]# ls -ltr
total 441241
-rw-r----- 1 1001 root 10715136 Oct 4 10:10 c-3835465528-20211004-01
-rw-r----- 1 1001 root 10682368 Oct 5 07:06 cntrl_AWSTEST_9_1_1085107533.ctl
-rw-r----- 1 1001 root 10715136 Oct 5 07:06 c-3835465528-20211005-00
-rw-r----- 1 1001 root 66764800 Oct 5 07:14 Full_AWSTEST_2021_10_05_060aqr8q_1_1.bak
-rw-r----- 1 1001 root 240672768 Oct 5 07:15 Full_AWSTEST_2021_10_05_050aqr8q_1_1.bak
-rw-r----- 1 1001 root 9333248 Oct 5 07:16 Arch_AWSTEST_2021_10_05_080aqr9u_1_1.bak
-rw-r----- 1 1001 root 102942208 Oct 5 07:16 Arch_AWSTEST_2021_10_05_070aqr9u_1_1.bak
-rw-r----- 1 1001 root 0 Oct 5 09:42 test_s3file.options
drwxr-x--- 1 1001 root 0 Oct 5 09:42 folderrenametest
-rw-r--r-- 1 1001 root 0 Oct 6 02:15 12
[root@ip-172-31-13-8 awstest]#
Comments
Post a Comment