Command Entrypoint

  1. bin/seatunnel-connector.sh

Options

  1. Usage: seatunnel-connector.sh [options]
  2. Options:
  3. -h, --help Show the usage message
  4. -l, --list List all supported plugins(sources, sinks, transforms)
  5. (default: false)
  6. -o, --option-rule Get option rule of the plugin by the plugin
  7. identifier(connector name or transform name)
  8. -pt, --plugin-type SeaTunnel plugin type, support [source, sink,
  9. transform]

Example

  1. # List all supported connectors(sources and sinks) and transforms
  2. bin/seatunnel-connector.sh -l
  3. # List all supported sinks
  4. bin/seatunnel-connector.sh -l -pt sink
  5. # Get option rule of the connector or transform by the name
  6. bin/seatunnel-connector.sh -o Paimon
  7. # Get option rule of paimon sink
  8. bin/seatunnel-connector.sh -o Paimon -pt sink