Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Squirro also distributes some connectors as data loader plugins for maximum flexibility. Some data loader plugins can also be installed from Squirro's repository. See Plugin Repository for more.

Table of Contents

Table of Contents
outlinetrue

Usage

Data loader plugins can be used in Squirro's user interface, or on the command line with the Data Loader.

...

On the command line, the plugin can be loaded by specifying the --source-script option. For example:

Code Block
languagebash
squirro_data_load ^
    -v ^
    --cluster %CLUSTER% ^
    --project-id %PROJECT_ID% ^
    --token %TOKEN% ^
    --source-script medline.py ^
    --map-id PMID ^
    --map-title TI
Expand
titleLinux
Code Block
languagebash
squirro_data_load \
    -v \
    --cluster $CLUSTER \
    --project-id $PROJECT_ID \
    --token $TOKEN \
    --source-script medline.py \
    --map-id PMID \
    --map-title TI

As can be seen, --source-script is used in place of the --source-type option. Apart from that, the behaviour is identical, and mapping, facet configuration, etc. all behave identically.

...