sql - EMS Bridge JMS Selector: How to filter messages based on their size -
i have topic on ems server central error-log topic distribute messages appropriate destinations. created queue called auto.log
want store error messages. created bridge between topic , queue. having issues jms selector. current jms selector based on jmscorrelationid
. 2 messages placed onto queue given error scenario test because have same correlationid, , 1 of them don't need. message seek about4.6kb
every time while other around 1kb
.
how can filter messages central topic , place messages on
auto.log
queue more4kb
in size?
i tried jmsmessagesize
, don't know how formulate proper jms selector statement, when creating bridge. tried different variations don't know if going in right direction. here have tried filtering based on message size:
jmsmessagesize >= 1000 jmsmessagesize '4%'
any suggestions, comments, references appreciated. thanks!
Comments
Post a Comment