11 releases (6 breaking)

0.7.0 Feb 22, 2024
0.5.0 Jan 11, 2024
0.4.0 Nov 14, 2023

#340 in Database interfaces

Download history 560/week @ 2024-01-03 496/week @ 2024-01-10 4428/week @ 2024-01-17 9528/week @ 2024-01-24 8631/week @ 2024-01-31 9268/week @ 2024-02-07 8631/week @ 2024-02-14 9208/week @ 2024-02-21 8113/week @ 2024-02-28 6086/week @ 2024-03-06 9306/week @ 2024-03-13 8367/week @ 2024-03-20 8522/week @ 2024-03-27 5681/week @ 2024-04-03 6916/week @ 2024-04-10 7002/week @ 2024-04-17

29,635 downloads per month

Apache-2.0

56KB
1K SLoC

snowflake-rs

Snowflake library for undocumented public API. If you want to query documented public SQL REST API use snowflake-jwt together with your favourite request library, see ./jwt/examples for how it's done.

Features

Since it does a lot of I/O the library is async-only, and currently has hard dependency on tokio as a runtime due to use of reqwest.

  • Single statements
  • Multiple statements
  • Async requests (is it needed if whole library is async?)
  • Query results in Arrow
  • Chunked query results
  • Password auth
  • Certificate auth
  • Browser-auth
  • Closing session
  • Token renewal
  • PUT support
  • GET support
  • AWS integration
  • GCloud integration
  • Azure integration
  • Parallel uploading of small files

Why

Snowflake has 2 public APIs, one is SQL REST API, which is limited in its support of PUT and GET statements and another undocumented API, which is used by official Drivers with the support for both.

This implementation emulates gosnowflake library, as each official driver comes with a different set of internal flags and defaults (which are selected by CLIENT_APP_ID) the Go implementation is the only one currently outputting Arrow by-default.

We've chosen not to generate bindings for C/C++ libsnowflakeclient library (which backs ODBC driver) as it is in active development and building it under macOS M1 is bigger effort than writing our own API wrapper.

Usage

In your Cargo.toml:

[dependencies]
snowflake-api = "0.1.0"

Check examples for working programs using the library.

use anyhow::Result;
use snowflake_api::{QueryResult, SnowflakeApi};

async fn run_query(sql: &str) -> Result<QueryResult> {
    let mut api = SnowflakeApi::with_password_auth(
        "ACCOUNT_IDENTIFIER",
        Some("WAREHOUSE"),
        Some("DATABASE"),
        Some("SCHEMA"),
        "USERNAME",
        Some("ROLE"),
        "PASSWORD",
    )?;
    let res = api.exec(sql).await?;

    Ok(res)
}

PUT / GET

PUT/GET statements allow you to access Snowflake-owned storage instead of provisioning your own when doing COPY INTO. Storage provider depends on which cloud your Snowflake account was provisioned in, hence the need to support multiple cloud backends.

Dependencies

~21–38MB
~624K SLoC