Gld JMS Load Strategy Configuration: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
(Created page with "=Internal= * gld Configuration")
 
No edit summary
 
Line 2: Line 2:


* [[Gld_Configuration#Load_Strategy_Section|gld Configuration]]
* [[Gld_Configuration#Load_Strategy_Section|gld Configuration]]
=send=
<pre>
service:
  type: jms
  ...
  load-strategy:
    name: send
    queue: jms/queue/novaordis
    connection-factory: jms/RemoteConnectionFactory
    connection-policy: connection-per-run
    session-policy: session-per-operation
    reuse-value: false
  ...
</pre>
=receive=
<pre>
service:
  type: jms
  ...
  load-strategy:
    name: receive
    queue: jms/queue/novaordis
    connection-factory: jms/RemoteConnectionFactory
    connection-policy: connection-per-run
    session-policy: session-per-operation
    reuse-value: false
  ...
</pre>

Latest revision as of 21:24, 17 February 2017

Internal

send

service:

  type: jms
  ...

  load-strategy:
    name: send
    queue: jms/queue/novaordis
    connection-factory: jms/RemoteConnectionFactory
    connection-policy: connection-per-run
    session-policy: session-per-operation
    reuse-value: false
  ...

receive

service:

  type: jms
  ...

  load-strategy:
    name: receive
    queue: jms/queue/novaordis
    connection-factory: jms/RemoteConnectionFactory
    connection-policy: connection-per-run
    session-policy: session-per-operation
    reuse-value: false
  ...