You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 1, 2024. It is now read-only.
When we deployed our service after moving to the given sns binder, we observed that our service is restarting very frequently. After further investigation, we found that service health check was failing with following response:
We looked into SnsBinderHealthIndicator class and found that sns binder takes topic names mentioned in properties & also pulls all the topics for the given AWS account and then matches.
We mention topic ARN instead of just topic name in our properties. This causes failure in topic name match & throws "topic is not reachable" error. The reason for putting topic ARN instead of just name is that we have a use case of publishing messages to cross AWS account topic. Although, it is able to send messages to within as well as cross AWS account with topic ARN (as spring code takes care of it) but sns health check fails.
When we deployed our service after moving to the given sns binder, we observed that our service is restarting very frequently. After further investigation, we found that service health check was failing with following response:
We looked into SnsBinderHealthIndicator class and found that sns binder takes topic names mentioned in properties & also pulls all the topics for the given AWS account and then matches.
We mention topic ARN instead of just topic name in our properties. This causes failure in topic name match & throws "topic is not reachable" error. The reason for putting topic ARN instead of just name is that we have a use case of publishing messages to cross AWS account topic. Although, it is able to send messages to within as well as cross AWS account with topic ARN (as spring code takes care of it) but sns health check fails.
@mKeRix @hendrik-nibbrig-idealo
The text was updated successfully, but these errors were encountered: