Skip to main content

stdout

This is primarily used for develop purposes, it console logs the incoming data, it's meant to inspect in between operations or end of outputs.

Usage

Log results

Example of a job using the stdout processor

{
"name" : "testing",
"workers" : 1,
"slicers" : 1,
"lifecycle" : "once",
"assets" : [
"standard"
],
"operations" : [
{
"_op": "test-reader"
},
{
"_op": "stdout"
}
]
}

Parameters

ConfigurationDescriptionTypeNotes
limitSpecify a number > 0 to limit the number of results printed to the console log. Default is to print all results.Numberoptional

Example configuration

{
"_op": "stdout",
"limit": 125
}