According to the doc, the maximum size for sns/sqs is 256KB but in their extended client the limit is 262144. Why is this?
https://docs.aws.amazon.com/sns/latest/dg/large-message-payloads.html
256KiB is 262144 bytes.
i.e. 256 * 1024 bytes.
It's fairly common to see KB and KiB used interchangeably. It's confusing,but a part of programming.