Import into a node
Importing (or ingesting) data can be done by running a
pipeline that ends with the
import
output operator. When managing a
pipeline through the app or the API, all pipeline operators run within the node.
When using the CLI, at least the import
operator runs within the node.
Consider this example that takes a Zeek conn.log from our M57 dataset:
load_file "Zeek/conn.log"read_zeek_tsvselect id.orig_h, id.resp_h, orig_bytes, resp_byteswhere orig_bytes > 1 Miimport
The import
operator requires a running node. To run the above
pipeline successfully, you need to first setup a
node.