Starburst

Parameters

This Syncer inherits all its parameters from the Trino Syncer.

🧙 Starburst is basically a services layer on top of Trino.

How do I use the Syncer in commands?

CS Tools accepts syncer definitions in either declarative or configuration file form.

Find the copy button to the right of the code block.

Simply write the parameters out alongside the command.

cs_tools tools searchable metadata --syncer "starburst://host=thoughtspot.cloud.starburst.io&catalog=thoughtspot&schema=cs_tools&authentication=basic&username=tsadmin&secret=[redacted]" --config dogfood

* when declaring multiple parameters inline, you should wrap the enter value in quotes.

  1. Create a file with the .toml extension.

    syncer-overwrite.toml

    [configuration]
    host = "thoughtspot.cloud.starburst.io"
    port = 8080
    catalog = "thoughtspot"
    schema = "cs_tools"
    authentication = "basic"
    username = "tsadmin"
    secret = "[redacted]"
    load_strategy = "TRUNCATE"
    
    * this is a complete example, not all parameters are required.

  2. Write the filename in your command in place of the parameters.

    cs_tools tools searchable metadata --syncer starburst://syncer-overwrite.toml --config dogfood