Avatar

Please consider registering
guest

sp_LogInOut Log In sp_Registration Register

Register | Lost password?
Advanced Search

— Forum Scope —




— Match —





— Forum Options —





Minimum search word length is 3 characters - maximum search word length is 84 characters

sp_Feed Topic RSS sp_TopicIcon
Subscription notification buffer
February 5, 2015
11:06, EET
Avatar
gjevremovic
Member
Members
Forum Posts: 49
Member Since:
January 30, 2014
sp_UserOfflineSmall Offline

Hi,

is it possible programmatically to clear subscription notification buffer? (without making new subscription of course)
Maybe I am wrong but looks that after setPublishingEnabled(false) than again setPublishingEnabled(true)
SubscriptionNotificationListener.onDataChange(…) receives first values from buffer than it receives values after setPublishingEnabled(true).

BR,

Goran

February 5, 2015
12:15, EET
Avatar
Jouni Aro
Moderator
Moderators
Forum Posts: 1010
Member Since:
December 21, 2011
sp_UserOfflineSmall Offline

No, it’s not possible to clear the buffer. The buffer should be cleared whenever there are messages, independent if the Subscription is enabled for publishing or not.

February 5, 2015
12:17, EET
Avatar
Jouni Aro
Moderator
Moderators
Forum Posts: 1010
Member Since:
December 21, 2011
sp_UserOfflineSmall Offline

And messages are also not removed from the queue when you disable publishing.

February 6, 2015
15:04, EET
Avatar
gjevremovic
Member
Members
Forum Posts: 49
Member Since:
January 30, 2014
sp_UserOfflineSmall Offline

“The buffer should be cleared whenever there are messages”, you mean should be cleared after all messages are consumed?
Here is my problem that I have in visualization. I bound screen to the subscription so each time when I switch to another screen
I stop publishing of “non active screen” subscription and start publishing “active screen” subscription. This generally works ok except when
steady state of variables values occur. I am using SubscriptionNotificationListener to receive values.
For example I have on first screen variable which counts from 0 to 255.
I switch to second screen before variable reach 255, for example 185.
Now I am in second screen and wait counter to reach 255.
When I return to first screen the value will be 187 and should be 255.

That is because after firstScreenSubscription.setPublishingEnabled(true) it received messages from notification buffer and because variable is in steady
state no further changes will be received and value will stay 187.

Than I add one poll just before firstScreenSubscription.setPublishingEnabled(true) to pickup real value but I can’t control timing and in log I see
that poll works but after it is overwritten with old messages from notification buffer.

That is why I asked is it possible to clear buffer as it is possible it will resolve my problem, just clear it before poll.

Here is my log:

06.02.2015 15:29:15,241 DEBUG screen activation – !!!!!! ~~~~~~~~ activate()
// start poll
06.02.2015 15:29:15,241 DEBUG pollSubscription – Number of items in subscription: 1
06.02.2015 15:29:15,243 DEBUG notifyChange – Attrib of type class java.lang.Byte has value 255 in state VALID
06.02.2015 15:29:15,244 DEBUG notifyChange – Attrib of type class java.lang.Number has value 255 in state VALID
// end poll, start publishing again
06.02.2015 15:29:15,244 DEBUG notifyChange – Set publishing true
06.02.2015 15:29:15,361 DEBUG SubscriptionNotificationListener.onDataChange – item ns=4;s=AllDataTypesDynamic/ItemByte has changed, new value 210
// value 255 is overwritten with old value 210 from notification buffer

The same result is also when poll is after firstScreenSubscription.setPublishingEnabled(true) as poll is very quick.
Could you please help with some advice related to timing control?

BR,

Goran

February 9, 2015
12:26, EET
Avatar
Jouni Aro
Moderator
Moderators
Forum Posts: 1010
Member Since:
December 21, 2011
sp_UserOfflineSmall Offline

What I mean is that the client side SDK dispatched messages from the receive buffer independent of the PublishingEnabled setting. But I am thinking, whether the server might keep the old samples in its buffer and send them after publishing is again re-enabled. Which server are you connecting to?

If you increase the logging level to DEBUG, you should see more about the actual traffic in the SDK level.

February 9, 2015
15:01, EET
Avatar
gjevremovic
Member
Members
Forum Posts: 49
Member Since:
January 30, 2014
sp_UserOfflineSmall Offline

Hi Aro,
I am using local UaDemoServer.
Yes, I see, managing of subscription is independent from buffer. I tried also to remove/add new subscription listener from/to subscription and the result is the same. As listener become active it consumes old messages from buffer anyway.
The question is why there is only few messages in the buffer? Obviously setPublishingEnabled(false) influence that in the buffer will be only 1-3 messages
and after stop publishing, buffer will not receive any. Can we say that these changes 1-3 registered after set publishing to false are orphans?
Currently I don’t have idea how to resolve this issue.

Thanks,

Goran

February 11, 2015
13:20, EET
Avatar
gjevremovic
Member
Members
Forum Posts: 49
Member Since:
January 30, 2014
sp_UserOfflineSmall Offline

Hi Aro,
can we make some conclusion?
My opinion is that this is a bug. If I set publishing off that means I am not interesting in messages till set publishing on again.
At least after set publishing on I should get the actual value of variable in PLC as last message.

Thanks,

Goran

February 11, 2015
14:09, EET
Avatar
Jouni Aro
Moderator
Moderators
Forum Posts: 1010
Member Since:
December 21, 2011
sp_UserOfflineSmall Offline

I got this comment from Unified Automation, regarding the behaviour:

There is nothing you can do on the client side and there is also nothing that can be changed on the server side. The behavior is like defined by OPC UA.

If the client want to stop monitoring and clean up buffers for monitored items, the client must change the monitoring mode of the monitored items to DISABLED. This clears the buffers of monitored items and stops the sampling.

By changing the monitoring mode back to REPORTING, the server starts sampling into empty queues and delivers only new values.

February 11, 2015
14:37, EET
Avatar
Jouni Aro
Moderator
Moderators
Forum Posts: 1010
Member Since:
December 21, 2011
sp_UserOfflineSmall Offline

I am actually not sure about the resolution yet myself. Can you describe the defined Subscription and MonitoredItem settings: PublishingInterval, SamplingInterval, QueueSize?

February 11, 2015
15:18, EET
Avatar
gjevremovic
Member
Members
Forum Posts: 49
Member Since:
January 30, 2014
sp_UserOfflineSmall Offline

Thanks a lot Aro for this post. I will try with change of monitoring mode for these items but I see potential problem as I have same item in multiple subscriptions.
Related to PublishingInterval, SamplingInterval, QueueSize everything is default:
s.setPublishingInterval(publishInterval); // ~200
s.setLifetimeCount(lifeTimeCount); // ~1000
s.setMaxKeepAliveCount(maxKeepAliveCount); // ~50
s.setMaxNotificationsPerPublish(maxNotificationsPerPublish);// ~1000
s.setNotificationBufferSize(100);
MonitoredItem sampling interval is 500ms, queue size is default 1
BR,
Goran

February 13, 2015
14:50, EET
Avatar
gjevremovic
Member
Members
Forum Posts: 49
Member Since:
January 30, 2014
sp_UserOfflineSmall Offline

Hi Aro,

again thanks for the post. Problem with multiple screens and multiple subscriptions resolved. Thanks to UA too.
It works as changing of monitoring mode is for particular item but per subscription. So if I change monitoring mode of item in one subscription
will not influence monitoring mode in another subscription. I thought it is opposite but luckily it is not.

BR,
jev

February 13, 2015
14:56, EET
Avatar
Jouni Aro
Moderator
Moderators
Forum Posts: 1010
Member Since:
December 21, 2011
sp_UserOfflineSmall Offline

OK, very good. And thanks for confirming the status.

Forum Timezone: Europe/Helsinki

Most Users Ever Online: 518

Currently Online:
13 Guest(s)

Currently Browsing this Page:
1 Guest(s)

Top Posters:

hbrackel: 135

pramanj: 86

Francesco Zambon: 81

rocket science: 77

Ibrahim: 76

Sabari: 62

kapsl: 57

gjevremovic: 49

Xavier: 43

TimK: 41

Member Stats:

Guest Posters: 0

Members: 683

Moderators: 16

Admins: 1

Forum Stats:

Groups: 3

Forums: 15

Topics: 1467

Posts: 6261

Newest Members:

digitechroshni, LouieWreve, Kickbiche, karrimacvitie5, graciela2073, sagarchau, elviralangwell4, Donnavek, Eddiefauth, DonaldPooma

Moderators: Jouni Aro: 1010, Otso Palonen: 32, Tuomas Hiltunen: 5, Pyry: 1, Petri: 0, Bjarne Boström: 983, Heikki Tahvanainen: 402, Jukka Asikainen: 1, moldzh08: 0, Jimmy Ni: 26, Teppo Uimonen: 21, Markus Johansson: 42, Niklas Nurminen: 0, Matti Siponen: 321, Lusetti: 0, Ari-Pekka Soikkeli: 5

Administrators: admin: 1