Sean Stavropoulos
Sean Stavropoulos
Root problem: Arc needs to generate URLs for files stored within S3 (both signed and unsigned urls). Not all regions have the same URL structure (some **require** `virtual host: true`)....
The "virtual host" behavior is needed to access the url of a file, regardless of whether it is signed or not. If you just want to upload a public file...
Interesting. Thanks @benwilson512! I'm not sure why I thought in some cases it was necessary. If what you say is true then we likely shouldn't be using virtual_host at all...
Thank you for working on this! Slug size has been an issue for me as well.
Output of my "safezones" command: ``` bash $ aws ec2 describe-availability-zones --query 'AvailabilityZones[*].ZoneName' --output text | awk '{print $1, $2}' us-east-1a us-east-1b ```
Looks like this isn't really fixable. Workaround: `export ZONES="us-east-1a us-east-1c"` We should consider adding this to the quickstart docs.
I have a situation where we have ~40 SQS queues that need to be consumed from. I have concerns about setting each SQS queue up in an isolated BroadwaySQS pipeline,...