3

We use ActiveMQ as a broker in one of our system but the messages sent between applications are in query string format, God knows why. Then when one of our new features requires a JSON structure, we had to URL encode the JSON so it can be part of the message . Now the log growth is significantly higher than the version before and no longer human readable.

Comments
  • 1
    Would have gone with a wrapper somehow. Maybe even go as far as prepend a /legacy/ to the topic and have a script listening on that, wrapping the query in some json model and then pushing it to the original topic
Add Comment