Have you also evaluated Kafka? as it is a common choice feeding Storm .
Comparing Message Queue Architectures on AWS
31–40 of 44 posts
Re: Comparing Message Queue Architectures on AWS
#32OP here... I would be happy to discuss any comments you have.
When you mention low latency, how low are we talking? ms, seconds, minutes? The reason I am asking is because you can use s3 as an intermediate storage where you ship your compressed logs/events at a rollover interval and the processing servers discover them there. Now of course this only works if latency is not a big deal.
Re: Comparing Message Queue Architectures on AWS
#33Have you also evaluated Kafka? as it is a common choice feeding Storm .
This is for AWS. Kafka isn't designed to work well in an environment where partitioning occurs with any frequency. AWS is such an environment. https://aphyr.com/posts/293-call-me-maybe-kafka
Re: Comparing Message Queue Architectures on AWS
#34Have you also evaluated Kafka? as it is a common choice feeding Storm .
This is for AWS. Kafka isn't designed to work well in an environment where partitioning occurs with any frequency. AWS is such an environment. https://aphyr.com/posts/293-call-me-maybe-kafka
Re: Comparing Message Queue Architectures on AWS
#35I'm surprised that SNS wasn't mentioned here, being an AWS queueing product.
Simple Queuing Service was mentioned (SQS) Simple Notification Service (SNS) was not. Did you mean SNS or SQS ?
Re: Comparing Message Queue Architectures on AWS
#36Re: Comparing Message Queue Architectures on AWS
#37Re: Comparing Message Queue Architectures on AWS
#38OP here... I would be happy to discuss any comments you have.
Any reason why you don't send the data directly to the processing servers as a way to minimize complexity? If it fails to reach one, try the other. When you mention low latency, how low are we talking? ms, seconds, minutes? The reason I am asking is because you can use s3 as an intermediate storage where you ship your compressed logs/events at a rollover interval and the processing servers discover them there. Now of…
Re: Comparing Message Queue Architectures on AWS
#39You give Redis a yellow rating on prioritization, noting that this can be partially achieved using multiple lists. Wouldn't it be much better to take advantage of Redis's sorted set type?
Re: Comparing Message Queue Architectures on AWS
#40Earlier quoted context omitted.
Simple Queuing Service was mentioned (SQS) Simple Notification Service (SNS) was not. Did you mean SNS or SQS ?
Given that I was surprised that SNS wasn't mentioned, I think I mean SNS, given they are both queuing services.