I have a S3 bucket where objects are generated from salesforce on daily basis. I want to copy those objects from S3 bucket to a local Linux server. An application will run on that Linux server which will reference those objects to generate a new file.
I cannot use S3-sync as there will be hundreds of thousands of objects residing in S3 bucket. Since these objects will be generated on daily basis, sync will add add a substantial cost. I only want newly created objects to be copied to the local server.
I am considering using S3FS or JuiceFS to mount S3 bucket locally. But I heard that mounting S3 to a local server is not a reliable solution.
Is there any reliable and secure way where we can only copy new objects to the local server? Also, is it reliable if I mount the S3 to the local server using S3FS or JuiceFS?
Thank you very much in advance.