What is the basic configuration for redshift?

Issue #18 resolved
Former user created an issue

I'm trying to set up a connection with redshift but it throws connection error cause of cluster name, username and password. Where can I find them or how can I set up them?

Comments (2)

  1. Waldemar Hummer Account Deactivated

    Please note that LocalStack currently only supports the basic Redshift API commands, but it does NOT support the actual query interface.

    That is, you can run CLI commands like the following:

    aws --endpoint-url=http://localhost:4577 redshift describe-clusters
    aws --endpoint-url=http://localhost:4577 redshift create-cluster --cluster-identifier c1 --node-type dc1.large --master-username user --master-user-password pass
    ...
    

    But you cannot currently run and data queries against the mock. See the discussion here: https://github.com/atlassian/localstack/issues/63 (apologies for cross-posting a Github link here). This project looks like a promising approach to integrate the query capabilities into LocalStack: https://github.com/opt-tech/redshift-fake-driver

    Can you provide a bit more details of what exactly you are trying to achieve? Some code snippets with your test logic would be useful. Thanks

  2. Log in to comment