我正在尝试使用 WSO2 流处理器上的 siddhi 应用程序解压缩传入事件。在早期版本(例如 DAS)上,有 siddhi 扩展 esbAnalytics:decompress,但如果我在 SP 中使用此扩展,则会出现错误“esbAnalytics:decompress 不存在扩展”
from FlowEntry#esbAnalytics:decompress(meta_compressed, meta_tenantId, flowData, messageId)
select messageFlowId, host, hashCode, componentName, componentType, componentIndex, componentId, startTime, endTime, duration, beforePayload, afterPayload, contextPropertyMap, transportPropertyMap, children, entryPoint, entryPointHashcode, faultCount,metaTenantId, _timestamp
group by messageFlowId
insert into TestOutputFlowEntry;
有什么方法可以在 SP 上使用 esbAnalytics:decompress 或如何解压缩传入的 flowEntry 事件?提前致谢。