问题标签 [infosphere-spl]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
36 浏览

infosphere-spl - 设置 IBM Streams 实例属性并使其生效而无需重新启动实例

我必须设置一些实例属性来处理一致的区域项目。我设置了这些属性,但它们仅在我重新启动实例时才会反映出来,这显然导致所有正在运行的作业都被取消。我有 100 个作业正在运行,我无法打扰,但想在需要使用一致区域的实例上设置“checkpointRepositoryConfiguration”等。有没有办法可以在不重新启动实例的情况下设置这些实例属性,或者如果我必须重新启动实例,有没有办法可以防止在该实例上运行的作业被取消?

0 投票
1 回答
350 浏览

infosphere-spl - JSON to Tuple operation in IBM Streams

Is there a way to convert a JSON string to a SPL tuple type without using JSONtoTuple Operator? I saw this documentation: https://developer.ibm.com/streamsdev/docs/introducing-the-json-toolkit/ where they have mentioned a native function for converting tuple to json but not json to tuple.

How do I convert a JSON to Tuple inside a Custom operator?

0 投票
1 回答
68 浏览

infosphere-spl - 实例内与两个实例之间的 IBM Streams 导出/导入操作

导出/导入操作在同一个实例中发生与在两个不同实例之间发生时有何不同。两者之间有性能差异吗?

0 投票
2 回答
172 浏览

infosphere-spl - 在 IBM Streams 中处理大型 XML 文件时,XML Parse 运算符引发错误

XML Parse 运算符在处理大型 XML 文件时引发此错误: 在 XML 解析期间发生以下错误:内部错误:巨大的输入查找

虽然文档说这已在 Streams 4.2.1.3 中修复,但我们可以将此参数添加到 XML Parse 运算符来修复它: xmlParseHuge: true;

较低版本的 Streams 不支持上述参数。如何在 Streams 4.2.1.1 中解决此问题?

0 投票
1 回答
150 浏览

ibm-streams - 我们可以在 C++ 运算符中使用 SPL 时间函数吗?

我想在 cpp 中使用 toTimestamp 函数。所以我像 SPL::Functions::time::toTimestamp(Sys.YYYYMMDDhhmmss,date) 一样访问它。问题是它无法识别“Sys”。我应该包括什么图书馆?