Solace Jav RTO Max Send Buff and Receive Buff

Options
mprabhat_jha
mprabhat_jha Member Posts: 15
edited June 2023 in General Discussions #1

Hi,

I am using Java RTO and I am not really clear with Max Receive Buffer Size and Max Send Buffer Size.

Say if my Send Buffer size is 1024 bytes, does it mean Solace API waits and collates messages upto 1024 bytes and sends them together ? Similar question of the reveive Buffer Size.

Tagged:

Answers

  • Aaron
    Aaron Member, Administrator, Moderator, Employee Posts: 537 admin
    Options

    Hi @mprabhat_jha. See the docs here: https://docs.solace.com/API/API-Developer-Guide/Java-RTO-API-Best-Practices.htm#Memory

    But no, it is not waiting to fill up that buffer before sending. Your buffer can be quite large, but the API will send messages as they are published into the buffer.

    Why are trying to tweak these values? Are you running into performance issues with default values?

    And quick question: why are you using the Java RTO API? It's a JNI-wrapper C API. Typically, most Java users use either JCSMP or the new Java API. What's your use case?

    Thanks!