Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Scroll ignore
scroll-viewporttrue
scroll-pdftrue
scroll-officetrue
scroll-chmtrue
scroll-docbooktrue
scroll-eclipsehelptrue
scroll-htmltrue
scroll-epubtrue

Open in new tab

About Collectors

Collectors are extractors that are developed and managed by you (A customer of K).

...

Code Block
class Extractor(username: str = None, password: str = None, host: str = None, server: str = None, \
    databases: list = [], port: int = 5439, tunnel: bool = False, output_path: str = './output', \
    mask: bool = False, compress: bool = False) -> None

username: username to sign into Redshift
password: password to sign into Redshift
host: Host address to of the Redshift Service as onboarded in K
server: The host value to actually connect to Redshift, this can be an IP Address or the same value as server
databases: list of databases to extract, no spaces
port: redshift port
tunnel: Is a SSH tunnel being used? If yes then it will default to localhost
output_path: full or relative path to where the outputs should go
mask: To mask the META/DATABASE_LOG files or not
compress: To gzip output files or not

...