We are hosting our Jira Software Server on AWS (EC2 Instance) . We want to store Jira attachments on S3 bucket. Is any method is available to achieve this??
Technically, yes, but you don't want to. S3 is API storage and therefore has exceedingly high latency and poor throughput performance. Jira expects attachments to be on block storage, so if it sees performance other than what you experience with normal block storage, you can expect problems.
Since S3 storage is API storage, it's not like a disk or shared storage volume that you can just mount. Depending on your OS, there are tools that can talk to S3 and present something that roughly behaves like block storage to the operating system, but we have found that it's not something that you want to rely on. It's fine for backups, scratch storage and things like that, but I wouldn't use it for any data that you use live.
This is also not supported by Atlassian
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.