🎄 Happy Holidays! 🥳

Most of Solace is closed December 24–January 1 so our employees can spend time with their families. We will re-open Thursday, January 2, 2024. Please expect slower response times during this period and open a support ticket for anything needing immediate assistance.

Happy Holidays!

Please note: most of Solace is closed December 25–January 2, and will re-open Tuesday, January 3, 2023.

Solace spring cloud stream support

akg17
akg17 Member Posts: 76

Couple of questions i have

  1. Does solace has compress support for producer ?
    producer:
    compress: true

  2. Does autoBindError Queue is supported only in consumer or producer ?

  3. if i enable error-channel-enabled: true, is there a way to listen to all the error together in one channel,
    and i would be able to drop them back to error queues figuring out the error queues.
     @ServiceActivator(inputChannel="my/default/topic.errors")
     public void handlePublishError(ErrorMessage message) {
         logger.warn("Message Publish Failed for: " + message);
         logger.info("Original Message: " + message.getOriginalMessage());
     } 
  1. useGroupNameInQueueName this is there for only consumer wont create any issue for producer ?
    @marc