Scroll ignore | ||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||
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
...