ActiveSpaces crashes when using snapshot to query data in metaspace.
book
Article ID: KB0085891
calendar_today
Updated On:
Products
Versions
TIBCO ActiveSpaces
-
Not Applicable
-
Description
Resolution: Description: =========== ActiveSpaces crashes when using snapshot to query data in metaspace.
Environment: =========== TIBCO ActiveSpaces 2.0.2 HF4 All Operating Systems
Cause: ====== Examine the code and determine whether the space objects are being stored. The following is an example of the space object not being stored.
Method1(..args…) Space space = ms.getSpace(“spacename”, LEECH); space.put(…)
Resolution =========
The space object should be buffered to avoid calling getSpace continuously. It should be stored as a local variable or in a container.
Space space; Initialize() space = ms.getSpace(“spacename”, LEECH); Method1(..args…) space.put(…)
Issue/Introduction
ActiveSpaces crashes when using snapshot to query data in metaspace.