Replies: 4 comments 2 replies
-
Probably not the best if you're worried about performance? Log files getting flushed at the end of every request to S3 would add a bit of overhead. |
Beta Was this translation helpful? Give feedback.
-
Indeed :), I suppose I was referring to assets that get served ( |
Beta Was this translation helpful? Give feedback.
-
@timkelty Maybe this is something for you: https://github.com/fortrabbit/craft-asset-bundler/blob/master/CHANGELOG.md For logs you should use a centralized logging services, like Papertrail or Sentry |
Beta Was this translation helpful? Give feedback.
-
Yep - already using Papertrail/AWS CloudWatch Logs agent for logs Thanks @ostark, I'll check it out the plugin. |
Beta Was this translation helpful? Give feedback.
-
Running Craft on a load-balancer can be a tedious task because of its reliance on a single local file storage (
CRAFT_STORAGE_PATH
).We can manage assets on s3 and store sessions in redis, but we're still left with the few things that Craft uses (complied cp resources, cp rebrand assets, etc)
I want to avoid sticky sessions and a shared mounted volume (e.g. NFS) because performance will suffer.
Ideally, I'd be able to use S3 for all storage, but I'm open to other solutions.
Related:
Beta Was this translation helpful? Give feedback.
All reactions