You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by "paleolimbot (via GitHub)" <gi...@apache.org> on 2023/07/12 02:19:14 UTC

[GitHub] [arrow-adbc] paleolimbot commented on issue #841: go/adbc/driver/snowflake: expose multiple authentication options

paleolimbot commented on issue #841:
URL: https://github.com/apache/arrow-adbc/issues/841#issuecomment-1631749823

   Thank you!
   
   When I run
   
   ```r
   library(adbcdrivermanager)
   
   db <- adbc_database_init(
     adbcsnowflake::adbcsnowflake(), 
     username = "dunnington",
     adbc.snowflake.sql.account = "wv15596.ca-central-1.aws",
     adbc.snowflake.sql.auth_type = "auth_ext_browser"
   )
   
   adbc_connection_init(db)
   ```
   
   on MacOS, I get a Finder window popping up, but no browser. Also, the R session blocks indefinitely and I have to kill it manually.
   
   Using the Snowflake Python connector, I get an error message:
   
   ```python
   >>> import snowflake.connector
   >>> conn = snowflake.connector.connect(user="dunnington", account="wv15596.ca-central-1.aws", authenticator="externalbrowser")
   Traceback (most recent call last):
     ...
   snowflake.connector.errors.DatabaseError: 390190 (08001): Failed to connect to DB: wv15596.ca-central-1.aws.snowflakecomputing.com:443, There was an error related to the SAML Identity Provider account parameter. Contact Snowflake support.
   ```
   
   I'm on a free trial, so perhaps SSO isn't a thing.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org