CRAN Package Check Results for Package Storm

Last updated on 2024-06-28 04:57:34 CEST.

Flavor Version Tinstall Tcheck Ttotal Status Flags
r-devel-linux-x86_64-debian-clang 1.2 NOTE
r-devel-linux-x86_64-debian-gcc 1.2 2.49 19.09 21.58 NOTE
r-devel-linux-x86_64-fedora-clang 1.2 35.15 NOTE
r-devel-linux-x86_64-fedora-gcc 1.2 33.43 NOTE
r-devel-windows-x86_64 1.2 3.00 40.00 43.00 NOTE
r-patched-linux-x86_64 1.2 3.11 23.71 26.82 NOTE
r-release-linux-x86_64 1.2 2.98 24.00 26.98 NOTE
r-release-macos-arm64 1.2 17.00 NOTE
r-release-macos-x86_64 1.2 22.00 NOTE
r-release-windows-x86_64 1.2 4.00 181310.00 181314.00 ERROR
r-oldrel-macos-arm64 1.2 17.00 NOTE
r-oldrel-macos-x86_64 1.2 20.00 NOTE
r-oldrel-windows-x86_64 1.2 4.00 42.00 46.00 NOTE

Check Details

Version: 1.2
Check: DESCRIPTION meta-information
Result: NOTE Malformed Title field: should not end in a period. Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc, r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc, r-devel-windows-x86_64, r-patched-linux-x86_64, r-release-linux-x86_64, r-release-macos-arm64, r-release-macos-x86_64, r-release-windows-x86_64, r-oldrel-macos-arm64, r-oldrel-macos-x86_64, r-oldrel-windows-x86_64

Version: 1.2
Check: examples
Result: ERROR Running examples in 'Storm-Ex.R' failed The error most likely occurred in: > ### Name: Storm-package > ### Title: Write Storm Bolts in R using the Storm Multi-Language Protocol. > ### Aliases: Storm-package Storm-class Tuple-class Storm Tuple > ### Keywords: storm hadoop > > ### ** Examples > > #library(Storm) > #source("Storm/R/Storm.R") > > #create a Storm object > storm = Storm$new(); > > #by default it has a handler that logs that the tuple was skipped. > #let's replace it that with something more interesting and equally > #useless. > > storm$lambda = function(s) { + #argument 's' is the Storm object. + + #get the current Tuple object. + t = s$tuple; + + #optional: acknowledge receipt of the tuple. + s$ack(t); + + #optional: log a message. + s$log(c("processing tuple=",t$id)); + + #create contrived tuples to illustrate output. + + #create 1st tuple... + t$output = vector(mode="character",length=1); + t$output[1] = as.numeric(t$input[3])+as.numeric(t$input[4]); + #...and emit it. + s$emit(t); + + #create 2nd tuple... + t$output[1] = as.numeric(t$input[3])-as.numeric(t$input[4]); + #...and emit it. + s$emit(t); + + #alternative/optional: mark the tuple as failed. + s$fail(t); + }; > > #enter the main tuple-processing loop. > storm$run(); {"pid": 175356} end {"command": "emit", "anchors": [], "tuple": ["bolt initializing"]} end Flavor: r-release-windows-x86_64