Ecosyste.ms: Packages

An open API service providing package, version and dependency metadata of many open source software ecosystems and registries.

Top 1.3% on proxy.golang.org
Top 0.2% dependent packages on proxy.golang.org
Top 0.1% dependent repos on proxy.golang.org
Top 2.6% forks on proxy.golang.org
Top 0.1% docker downloads on proxy.golang.org

proxy.golang.org : github.com/snowflakedb/gosnowflake

Package gosnowflake is a pure Go Snowflake driver for the database/sql package. Clients can use the database/sql package directly. For example: Use the Open() function to create a database handle with connection parameters: The Go Snowflake Driver supports the following connection syntaxes (or data source name (DSN) formats): where all parameters must be escaped or use Config and DSN to construct a DSN string. For information about account identifiers, see the Snowflake documentation (https://docs.snowflake.com/en/user-guide/admin-account-identifier.html). The following example opens a database handle with the Snowflake account named "my_account" under the organization named "my_organization", where the username is "jsmith", password is "mypassword", database is "mydb", schema is "testschema", and warehouse is "mywh": The connection string (DSN) can contain both connection parameters (described below) and session parameters (https://docs.snowflake.com/en/sql-reference/parameters.html). The following connection parameters are supported: account <string>: Specifies your Snowflake account, where "<string>" is the account identifier assigned to your account by Snowflake. For information about account identifiers, see the Snowflake documentation (https://docs.snowflake.com/en/user-guide/admin-account-identifier.html). If you are using a global URL, then append the connection group and ".global" (e.g. "<account_identifier>-<connection_group>.global"). The account identifier and the connection group are separated by a dash ("-"), as shown above. This parameter is optional if your account identifier is specified after the "@" character in the connection string. region <string>: DEPRECATED. You may specify a region, such as "eu-central-1", with this parameter. However, since this parameter is deprecated, it is best to specify the region as part of the account parameter. For details, see the description of the account parameter. database: Specifies the database to use by default in the client session (can be changed after login). schema: Specifies the database schema to use by default in the client session (can be changed after login). warehouse: Specifies the virtual warehouse to use by default for queries, loading, etc. in the client session (can be changed after login). role: Specifies the role to use by default for accessing Snowflake objects in the client session (can be changed after login). passcode: Specifies the passcode provided by Duo when using multi-factor authentication (MFA) for login. passcodeInPassword: false by default. Set to true if the MFA passcode is embedded in the login password. Appends the MFA passcode to the end of the password. loginTimeout: Specifies the timeout, in seconds, for login. The default is 60 seconds. The login request gives up after the timeout length if the HTTP response is success. requestTimeout: Specifies the timeout, in seconds, for a query to complete. 0 (zero) specifies that the driver should wait indefinitely. The default is 0 seconds. The query request gives up after the timeout length if the HTTP response is success. authenticator: Specifies the authenticator to use for authenticating user credentials: To use the internal Snowflake authenticator, specify snowflake (Default). To authenticate through Okta, specify https://<okta_account_name>.okta.com (URL prefix for Okta). To authenticate using your IDP via a browser, specify externalbrowser. To authenticate via OAuth, specify oauth and provide an OAuth Access Token (see the token parameter below). application: Identifies your application to Snowflake Support. insecureMode: false by default. Set to true to bypass the Online Certificate Status Protocol (OCSP) certificate revocation check. IMPORTANT: Change the default value for testing or emergency situations only. token: a token that can be used to authenticate. Should be used in conjunction with the "oauth" authenticator. client_session_keep_alive: Set to true have a heartbeat in the background every hour to keep the connection alive such that the connection session will never expire. Care should be taken in using this option as it opens up the access forever as long as the process is alive. ocspFailOpen: true by default. Set to false to make OCSP check fail closed mode. validateDefaultParameters: true by default. Set to false to disable checks on existence and privileges check for Database, Schema, Warehouse and Role when setting up the connection tracing: Specifies the logging level to be used. Set to error by default. Valid values are trace, debug, info, print, warning, error, fatal, panic. disableQueryContextCache: disables parsing of query context returned from server and resending it to server as well. Default value is false. clientConfigFile: specifies the location of the client configuration json file. In this file you can configure Easy Logging feature. All other parameters are interpreted as session parameters (https://docs.snowflake.com/en/sql-reference/parameters.html). For example, the TIMESTAMP_OUTPUT_FORMAT session parameter can be set by adding: A complete connection string looks similar to the following: Session-level parameters can also be set by using the SQL command "ALTER SESSION" (https://docs.snowflake.com/en/sql-reference/sql/alter-session.html). Alternatively, use OpenWithConfig() function to create a database handle with the specified Config. # Connection Config You can also connect to your warehouse using the connection config. The dbSql library states that when you want to take advantage of driver-specific connection features that aren’t available in a connection string. Each driver supports its own set of connection properties, often providing ways to customize the connection request specific to the DBMS For example: If you are using this method, you dont need to pass a driver name to specify the driver type in which you are looking to connect. Since the driver name is not needed, you can optionally bypass driver registration on startup. To do this, set `GOSNOWFLAKE_SKIP_REGISTERATION` in your environment. This is useful you wish to register multiple verions of the driver. Note: GOSNOWFLAKE_SKIP_REGISTERATION should not be used if sql.Open() is used as the method to connect to the server, as sql.Open will require registration so it can map the driver name to the driver type, which in this case is "snowflake" and SnowflakeDriver{}. The Go Snowflake Driver honors the environment variables HTTP_PROXY, HTTPS_PROXY and NO_PROXY for the forward proxy setting. NO_PROXY specifies which hostname endings should be allowed to bypass the proxy server, e.g. no_proxy=.amazonaws.com means that Amazon S3 access does not need to go through the proxy. NO_PROXY does not support wildcards. Each value specified should be one of the following: The end of a hostname (or a complete hostname), for example: ".amazonaws.com" or "xy12345.snowflakecomputing.com". An IP address, for example "192.196.1.15". If more than one value is specified, values should be separated by commas, for example: By default, the driver's builtin logger is exposing logrus's FieldLogger and default at INFO level. Users can use SetLogger in driver.go to set a customized logger for gosnowflake package. In order to enable debug logging for the driver, user could use SetLogLevel("debug") in SFLogger interface as shown in demo code at cmd/logger.go. To redirect the logs SFlogger.SetOutput method could do the work. A custom query tag can be set in the context. Each query run with this context will include the custom query tag as metadata that will appear in the Query Tag column in the Query History log. For example: A specific query request ID can be set in the context and will be passed through in place of the default randomized request ID. For example: If you need query ID for your query you have to use raw connection. For queries: ``` ``` For execs: ``` ``` The result of your query can be retrieved by setting the query ID in the WithFetchResultByID context. ``` ``` From 0.5.0, a signal handling responsibility has moved to the applications. If you want to cancel a query/command by Ctrl+C, add a os.Interrupt trap in context to execute methods that can take the context parameter (e.g. QueryContext, ExecContext). See cmd/selectmany.go for the full example. The Go Snowflake Driver now supports the Arrow data format for data transfers between Snowflake and the Golang client. The Arrow data format avoids extra conversions between binary and textual representations of the data. The Arrow data format can improve performance and reduce memory consumption in clients. Snowflake continues to support the JSON data format. The data format is controlled by the session-level parameter GO_QUERY_RESULT_FORMAT. To use JSON format, execute: The valid values for the parameter are: If the user attempts to set the parameter to an invalid value, an error is returned. The parameter name and the parameter value are case-insensitive. This parameter can be set only at the session level. Usage notes: The Arrow data format reduces rounding errors in floating point numbers. You might see slightly different values for floating point numbers when using Arrow format than when using JSON format. In order to take advantage of the increased precision, you must pass in the context.Context object provided by the WithHigherPrecision function when querying. Traditionally, the rows.Scan() method returned a string when a variable of types interface was passed in. Turning on the flag ENABLE_HIGHER_PRECISION via WithHigherPrecision will return the natural, expected data type as well. For some numeric data types, the driver can retrieve larger values when using the Arrow format than when using the JSON format. For example, using Arrow format allows the full range of SQL NUMERIC(38,0) values to be retrieved, while using JSON format allows only values in the range supported by the Golang int64 data type. Users should ensure that Golang variables are declared using the appropriate data type for the full range of values contained in the column. For an example, see below. When using the Arrow format, the driver supports more Golang data types and more ways to convert SQL values to those Golang data types. The table below lists the supported Snowflake SQL data types and the corresponding Golang data types. The columns are: The SQL data type. The default Golang data type that is returned when you use snowflakeRows.Scan() to read data from Arrow data format via an interface{}. The possible Golang data types that can be returned when you use snowflakeRows.Scan() to read data from Arrow data format directly. The default Golang data type that is returned when you use snowflakeRows.Scan() to read data from JSON data format via an interface{}. (All returned values are strings.) The standard Golang data type that is returned when you use snowflakeRows.Scan() to read data from JSON data format directly. Go Data Types for Scan() =================================================================================================================== | ARROW | JSON =================================================================================================================== SQL Data Type | Default Go Data Type | Supported Go Data | Default Go Data Type | Supported Go Data | for Scan() interface{} | Types for Scan() | for Scan() interface{} | Types for Scan() =================================================================================================================== BOOLEAN | bool | string | bool ------------------------------------------------------------------------------------------------------------------- VARCHAR | string | string ------------------------------------------------------------------------------------------------------------------- DOUBLE | float32, float64 [1] , [2] | string | float32, float64 ------------------------------------------------------------------------------------------------------------------- INTEGER that | int, int8, int16, int32, int64 | string | int, int8, int16, fits in int64 | [1] , [2] | | int32, int64 ------------------------------------------------------------------------------------------------------------------- INTEGER that doesn't | int, int8, int16, int32, int64, *big.Int | string | error fit in int64 | [1] , [2] , [3] , [4] | ------------------------------------------------------------------------------------------------------------------- NUMBER(P, S) | float32, float64, *big.Float | string | float32, float64 where S > 0 | [1] , [2] , [3] , [5] | ------------------------------------------------------------------------------------------------------------------- DATE | time.Time | string | time.Time ------------------------------------------------------------------------------------------------------------------- TIME | time.Time | string | time.Time ------------------------------------------------------------------------------------------------------------------- TIMESTAMP_LTZ | time.Time | string | time.Time ------------------------------------------------------------------------------------------------------------------- TIMESTAMP_NTZ | time.Time | string | time.Time ------------------------------------------------------------------------------------------------------------------- TIMESTAMP_TZ | time.Time | string | time.Time ------------------------------------------------------------------------------------------------------------------- BINARY | []byte | string | []byte ------------------------------------------------------------------------------------------------------------------- ARRAY [6] | string / array | string / array ------------------------------------------------------------------------------------------------------------------- OBJECT [6] | string / struct | string / struct ------------------------------------------------------------------------------------------------------------------- VARIANT | string | string ------------------------------------------------------------------------------------------------------------------- MAP | map | map [1] Converting from a higher precision data type to a lower precision data type via the snowflakeRows.Scan() method can lose low bits (lose precision), lose high bits (completely change the value), or result in error. [2] Attempting to convert from a higher precision data type to a lower precision data type via interface{} causes an error. [3] Higher precision data types like *big.Int and *big.Float can be accessed by querying with a context returned by WithHigherPrecision(). [4] You cannot directly Scan() into the alternative data types via snowflakeRows.Scan(), but can convert to those data types by using .Int64()/.String()/.Uint64() methods. For an example, see below. [5] You cannot directly Scan() into the alternative data types via snowflakeRows.Scan(), but can convert to those data types by using .Float32()/.String()/.Float64() methods. For an example, see below. [6] Arrays and objects can be either semistructured or structured, see more info in section below. Note: SQL NULL values are converted to Golang nil values, and vice-versa. ## Semistructured and structured types Snowflake supports two flavours of "structured data" - semistructured and structured. Semistructured types are variants, objects and arrays without schema. When data is fetched, it's represented as strings and the client is responsible for its interpretation. Example table definition: The data not have any corresponding schema, so values in table may be slightly different. ### Structured types Structured types differentiate from semistructured types by having specific schema. In all rows of the table, values must conform to this schema. Example table definition: #### Retrieving structured objects 1. Create a struct, example: 2. Implement sql.Scanner interface: 3. Use it in regular scan: See StructuredObject for all available operations including null support, embedding nested structs, etc. #### Retrieving structured arrays Retrieving array of simple types works exactly the same like normal values - using Scan function. If you want to scan array of structs, you have to use a helper function ScanArrayOfScanners: #### Retrieving structured maps The following example shows how to retrieve very large values using the math/big package. This example retrieves a large INTEGER value to an interface and then extracts a big.Int value from that interface. If the value fits into an int64, then the code also copies the value to a variable of type int64. Note that a context that enables higher precision must be passed in with the query. If the variable named "rows" is known to contain a big.Int, then you can use the following instead of scanning into an interface and then converting to a big.Int: If the variable named "rows" contains a big.Int, then each of the following fails: Similar code and rules also apply to big.Float values. If you are not sure what data type will be returned, you can use code similar to the following to check the data type of the returned value: ## Arrow batches You can retrieve data in a columnar format similar to the format a server returns. You must use `WithArrowBatches` context, similar to the following: Limitations: 1. For some queries Snowflake may decide to return data in JSON format (examples: `SHOW PARAMETERS` or `ls @stage`). You cannot use JSON with Arrow batches context. 2. Snowflake handles timestamps in a range which is higher than available space in Arrow timestamp type. Because of that special treatment should be used (see below). ### Handling timestamps in Arrow batches Snowflake returns timestamps natively (from backend to driver) in multiple formats. The Arrow timestamp is an 8-byte data type, which is insufficient to handle the larger date and time ranges used by Snowflake. Also, Snowflake supports 0-9 (nanosecond) digit precision for seconds, while Arrow supports only 3 (millisecond), 6 (microsecond), an 9 (nanosecond) precision. Consequently, Snowflake uses a custom timestamp format in Arrow, which differs on timestamp type and precision. If you want to use timestamps in Arrow batches, you have two options: ### Invalid UTF-8 characters in Arrow batches Snowflake previously allowed users to upload data with invalid UTF-8 characters. Consequently, Arrow records containing string columns in Snowflake could include these invalid UTF-8 characters. However, according to the Arrow specifications (https://arrow.apache.org/docs/cpp/api/datatype.html and https://github.com/apache/arrow/blob/a03d957b5b8d0425f9d5b6c98b6ee1efa56a1248/go/arrow/datatype.go#L73-L74), Arrow string columns should only contain UTF-8 characters. To address this issue and prevent potential downstream disruptions, the context `enableArrowBatchesUtf8Validation`, is introduced. When enabled, this feature iterates through all values in string columns, identifying and replacing any invalid characters with `�`. This ensures that Arrow records conform to the UTF-8 standards, preventing validation failures in downstream services like the Rust Arrow library that impose strict validation checks. ### WithHigherPrecision in Arrow batches To preserve BigDecimal values within Arrow batches, use `WithHigherPrecision`. This offers two main benefits: it helps avoid precision loss and defers the conversion to upstream services. Alternatively, without this setting, all non-zero scale numbers will be converted to float64, potentially resulting in loss of precision. Zero-scale numbers (DECIMAL256, DECIMAL128) will be converted to int64, which could lead to overflow. Binding allows a SQL statement to use a value that is stored in a Golang variable. Without binding, a SQL statement specifies values by specifying literals inside the statement. For example, the following statement uses the literal value “42“ in an UPDATE statement: With binding, you can execute a SQL statement that uses a value that is inside a variable. For example: The “?“ inside the “VALUES“ clause specifies that the SQL statement uses the value from a variable. Binding data that involves time zones can require special handling. For details, see the section titled "Timestamps with Time Zones". Version 1.6.23 (and later) of the driver takes advantage of sql.Null types which enables the proper handling of null parameters inside function calls, i.e.: The timestamp nullability had to be achieved by wrapping the sql.NullTime type as the Snowflake provides several date and time types which are mapped to single Go time.Time type: Version 1.3.9 (and later) of the Go Snowflake Driver supports the ability to bind an array variable to a parameter in a SQL INSERT statement. You can use this technique to insert multiple rows in a single batch. As an example, the following code inserts rows into a table that contains integer, float, boolean, and string columns. The example binds arrays to the parameters in the INSERT statement. If the array contains SQL NULL values, use slice []interface{}, which allows Golang nil values. This feature is available in version 1.6.12 (and later) of the driver. For example, For slices []interface{} containing time.Time values, a binding parameter flag is required for the preceding array variable in the Array() function. This feature is available in version 1.6.13 (and later) of the driver. For example, Note: For alternative ways to load data into the Snowflake database (including bulk loading using the COPY command), see Loading Data into Snowflake (https://docs.snowflake.com/en/user-guide-data-load.html). When you use array binding to insert a large number of values, the driver can improve performance by streaming the data (without creating files on the local machine) to a temporary stage for ingestion. The driver automatically does this when the number of values exceeds a threshold (no changes are needed to user code). In order for the driver to send the data to a temporary stage, the user must have the following privilege on the schema: If the user does not have this privilege, the driver falls back to sending the data with the query to the Snowflake database. In addition, the current database and schema for the session must be set. If these are not set, the CREATE TEMPORARY STAGE command executed by the driver can fail with the following error: For alternative ways to load data into the Snowflake database (including bulk loading using the COPY command), see Loading Data into Snowflake (https://docs.snowflake.com/en/user-guide-data-load.html). Go's database/sql package supports the ability to bind a parameter in a SQL statement to a time.Time variable. However, when the client binds data to send to the server, the driver cannot determine the correct Snowflake date/timestamp data type to associate with the binding parameter. For example: To resolve this issue, a binding parameter flag is introduced that associates any subsequent time.Time type to the DATE, TIME, TIMESTAMP_LTZ, TIMESTAMP_NTZ or BINARY data type. The above example could be rewritten as follows: The driver fetches TIMESTAMP_TZ (timestamp with time zone) data using the offset-based Location types, which represent a collection of time offsets in use in a geographical area, such as CET (Central European Time) or UTC (Coordinated Universal Time). The offset-based Location data is generated and cached when a Go Snowflake Driver application starts, and if the given offset is not in the cache, it is generated dynamically. Currently, Snowflake does not support the name-based Location types (e.g. "America/Los_Angeles"). For more information about Location types, see the Go documentation for https://golang.org/pkg/time/#Location. Internally, this feature leverages the []byte data type. As a result, BINARY data cannot be bound without the binding parameter flag. In the following example, sf is an alias for the gosnowflake package: The driver directly downloads a result set from the cloud storage if the size is large. It is required to shift workloads from the Snowflake database to the clients for scale. The download takes place by goroutine named "Chunk Downloader" asynchronously so that the driver can fetch the next result set while the application can consume the current result set. The application may change the number of result set chunk downloader if required. Note this does not help reduce memory footprint by itself. Consider Custom JSON Decoder. Custom JSON Decoder for Parsing Result Set (Experimental) The application may have the driver use a custom JSON decoder that incrementally parses the result set as follows. This option will reduce the memory footprint to half or even quarter, but it can significantly degrade the performance depending on the environment. The test cases running on Travis Ubuntu box show five times less memory footprint while four times slower. Be cautious when using the option. The Go Snowflake Driver supports JWT (JSON Web Token) authentication. To enable this feature, construct the DSN with fields "authenticator=SNOWFLAKE_JWT&privateKey=<your_private_key>", or using a Config structure specifying: The <your_private_key> should be a base64 URL encoded PKCS8 rsa private key string. One way to encode a byte slice to URL base 64 URL format is through the base64.URLEncoding.EncodeToString() function. On the server side, you can alter the public key with the SQL command: The <your_public_key> should be a base64 Standard encoded PKI public key string. One way to encode a byte slice to base 64 Standard format is through the base64.StdEncoding.EncodeToString() function. To generate the valid key pair, you can execute the following commands in the shell: Note: As of February 2020, Golang's official library does not support passcode-encrypted PKCS8 private key. For security purposes, Snowflake highly recommends that you store the passcode-encrypted private key on the disk and decrypt the key in your application using a library you trust. JWT tokens are recreated on each retry and they are valid (`exp` claim) for `jwtTimeout` seconds. Each retry timeout is configured by `jwtClientTimeout`. Retries are limited by total time of `loginTimeout`. The driver allows to authenticate using the external browser. When a connection is created, the driver will open the browser window and ask the user to sign in. To enable this feature, construct the DSN with field "authenticator=EXTERNALBROWSER" or using a Config structure with following Authenticator specified: The external browser authentication implements timeout mechanism. This prevents the driver from hanging interminably when browser window was closed, or not responding. Timeout defaults to 120s and can be changed through setting DSN field "externalBrowserTimeout=240" (time in seconds) or using a Config structure with following ExternalBrowserTimeout specified: This feature is available in version 1.3.8 or later of the driver. By default, Snowflake returns an error for queries issued with multiple statements. This restriction helps protect against SQL Injection attacks (https://en.wikipedia.org/wiki/SQL_injection). The multi-statement feature allows users skip this restriction and execute multiple SQL statements through a single Golang function call. However, this opens up the possibility for SQL injection, so it should be used carefully. The risk can be reduced by specifying the exact number of statements to be executed, which makes it more difficult to inject a statement by appending it. More details are below. The Go Snowflake Driver provides two functions that can execute multiple SQL statements in a single call: To compose a multi-statement query, simply create a string that contains all the queries, separated by semicolons, in the order in which the statements should be executed. To protect against SQL Injection attacks while using the multi-statement feature, pass a Context that specifies the number of statements in the string. For example: When multiple queries are executed by a single call to QueryContext(), multiple result sets are returned. After you process the first result set, get the next result set (for the next SQL statement) by calling NextResultSet(). The following pseudo-code shows how to process multiple result sets: The function db.ExecContext() returns a single result, which is the sum of the number of rows changed by each individual statement. For example, if your multi-statement query executed two UPDATE statements, each of which updated 10 rows, then the result returned would be 20. Individual row counts for individual statements are not available. The following code shows how to retrieve the result of a multi-statement query executed through db.ExecContext(): Note: Because a multi-statement ExecContext() returns a single value, you cannot detect offsetting errors. For example, suppose you expected the return value to be 20 because you expected each UPDATE statement to update 10 rows. If one UPDATE statement updated 15 rows and the other UPDATE statement updated only 5 rows, the total would still be 20. You would see no indication that the UPDATES had not functioned as expected. The ExecContext() function does not return an error if passed a query (e.g. a SELECT statement). However, it still returns only a single value, not a result set, so using it to execute queries (or a mix of queries and non-query statements) is impractical. The QueryContext() function does not return an error if passed non-query statements (e.g. DML). The function returns a result set for each statement, whether or not the statement is a query. For each non-query statement, the result set contains a single row that contains a single column; the value is the number of rows changed by the statement. If you want to execute a mix of query and non-query statements (e.g. a mix of SELECT and DML statements) in a multi-statement query, use QueryContext(). You can retrieve the result sets for the queries, and you can retrieve or ignore the row counts for the non-query statements. Note: PUT statements are not supported for multi-statement queries. If a SQL statement passed to ExecQuery() or QueryContext() fails to compile or execute, that statement is aborted, and subsequent statements are not executed. Any statements prior to the aborted statement are unaffected. For example, if the statements below are run as one multi-statement query, the multi-statement query fails on the third statement, and an exception is thrown. If you then query the contents of the table named "test", the values 1 and 2 would be present. When using the QueryContext() and ExecContext() functions, golang code can check for errors the usual way. For example: Preparing statements and using bind variables are also not supported for multi-statement queries. The Go Snowflake Driver supports asynchronous execution of SQL statements. Asynchronous execution allows you to start executing a statement and then retrieve the result later without being blocked while waiting. While waiting for the result of a SQL statement, you can perform other tasks, including executing other SQL statements. Most of the steps to execute an asynchronous query are the same as the steps to execute a synchronous query. However, there is an additional step, which is that you must call the WithAsyncMode() function to update your Context object to specify that asynchronous mode is enabled. In the code below, the call to "WithAsyncMode()" is specific to asynchronous mode. The rest of the code is compatible with both asynchronous mode and synchronous mode. The function db.QueryContext() returns an object of type snowflakeRows regardless of whether the query is synchronous or asynchronous. However: The call to the Next() function of snowflakeRows is always synchronous (i.e. blocking). If the query has not yet completed and the snowflakeRows object (named "rows" in this example) has not been filled in yet, then rows.Next() waits until the result set has been filled in. More generally, calls to any Golang SQL API function implemented in snowflakeRows or snowflakeResult are blocking calls, and wait if results are not yet available. (Examples of other synchronous calls include: snowflakeRows.Err(), snowflakeRows.Columns(), snowflakeRows.columnTypes(), snowflakeRows.Scan(), and snowflakeResult.RowsAffected().) Because the example code above executes only one query and no other activity, there is no significant difference in behavior between asynchronous and synchronous behavior. The differences become significant if, for example, you want to perform some other activity after the query starts and before it completes. The example code below starts a query, which run in the background, and then retrieves the results later. This example uses small SELECT statements that do not retrieve enough data to require asynchronous handling. However, the technique works for larger data sets, and for situations where the programmer might want to do other work after starting the queries and before retrieving the results. For a more elaborative example please see cmd/async/async.go The Go Snowflake Driver supports the PUT and GET commands. The PUT command copies a file from a local computer (the computer where the Golang client is running) to a stage on the cloud platform. The GET command copies data files from a stage on the cloud platform to a local computer. See the following for information on the syntax and supported parameters: ## Using PUT The following example shows how to run a PUT command by passing a string to the db.Query() function: "<local_file>" should include the file path as well as the name. Snowflake recommends using an absolute path rather than a relative path. For example: Different client platforms (e.g. linux, Windows) have different path name conventions. Ensure that you specify path names appropriately. This is particularly important on Windows, which uses the backslash character as both an escape character and as a separator in path names. To send information from a stream (rather than a file) use code similar to the code below. (The ReplaceAll() function is needed on Windows to handle backslashes in the path to the file.) Note: PUT statements are not supported for multi-statement queries. ## Using GET The following example shows how to run a GET command by passing a string to the db.Query() function: "<local_file>" should include the file path as well as the name. Snowflake recommends using an absolute path rather than a relative path. For example: ## Specifying temporary directory for encryption and compression Putting and getting requires compression and/or encryption, which is done in the OS temporary directory. If you cannot use default temporary directory for your OS or you want to specify it yourself, you can use "tmpDirPath" DSN parameter. Remember, to encode slashes. Example: ## Using custom configuration for PUT/GET If you want to override some default configuration options, you can use `WithFileTransferOptions` context. There are multiple config parameters including progress bars or compression.

Registry - Source - Documentation - JSON
purl: pkg:golang/github.com/snowflakedb/gosnowflake
Keywords: golang, snowflake
License: Apache-2.0
Latest release: 5 months ago
First release: over 6 years ago
Namespace: github.com/snowflakedb
Dependent packages: 539
Dependent repositories: 3,968
Stars: 275 on GitHub
Forks: 112 on GitHub
Docker dependents: 380
Docker downloads: 1,488,103,094
See more repository details: repos.ecosyste.ms
Last synced: 4 days ago

Top 7.8% on proxy.golang.org
github.com/artie-labs/transfer v1.25.15
Real-time data replication from OLTP to OLAP dbs
184 versions - Latest release: 13 days ago - 1 dependent package - 1 dependent repositories - 31 stars on GitHub
Top 4.7% on proxy.golang.org
github.com/k1low/tbls v1.75.0 💰
tbls is a CI-Friendly tool for document a database, written in Go.
193 versions - Latest release: 15 days ago - 2,203 stars on GitHub
Top 1.8% on proxy.golang.org
github.com/k1LoW/tbls v1.75.0 💰
tbls is a CI-Friendly tool for document a database, written in Go.
193 versions - Latest release: 15 days ago - 15 dependent packages - 6 dependent repositories - 2,203 stars on GitHub
Top 5.9% on proxy.golang.org
github.com/SigNoz/signoz-otel-collector v0.88.23
SigNoz distro for OpenTelemetry Collector
86 versions - Latest release: 15 days ago - 2 dependent packages - 1 dependent repositories - 13 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/signoz/signoz-otel-collector v0.88.23
SigNoz distro for OpenTelemetry Collector
86 versions - Latest release: 15 days ago - 13 stars on GitHub
Top 7.2% on proxy.golang.org
github.com/stackql/stackql v0.5.643
Query, provision and operate Cloud and SaaS resources and APIs using an extensible SQL based fram...
26 versions - Latest release: 16 days ago - 107 stars on GitHub
Top 2.0% on proxy.golang.org
github.com/pachyderm/pachyderm/v2 v2.9.6
Data-Centric Pipelines and Data Versioning
583 versions - Latest release: 17 days ago - 2 dependent packages - 8 dependent repositories - 5,909 stars on GitHub
Top 0.9% on proxy.golang.org
github.com/xo/usql v0.19.1
Command usql is the universal command-line interface for SQL databases.
113 versions - Latest release: 19 days ago - 38 dependent packages - 35 dependent repositories - 7,898 stars on GitHub
Top 3.1% on proxy.golang.org
github.com/signalfx/splunk-otel-collector v0.100.0
113 versions - Latest release: 21 days ago - 3 dependent packages - 2 dependent repositories - 130 stars on GitHub
Top 9.7% on proxy.golang.org
github.com/bruin-data/bruin v0.10.0
88 versions - Latest release: 21 days ago
Top 2.0% on proxy.golang.org
github.com/rudderlabs/rudder-server v1.25.0
Privacy and Security focused Segment-alternative, in Golang and React
201 versions - Latest release: 23 days ago - 7 dependent packages - 1 dependent repositories - 3,691 stars on GitHub
Top 2.6% on proxy.golang.org
github.com/trufflesecurity/trufflehog/v3 v3.75.1
Find credentials all over the place
206 versions - Latest release: 24 days ago - 1 dependent package - 1 dependent repositories - 10,960 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/open-telemetry/opentelemetry-service-contrib v0.100.0
Contrib repository for the OpenTelemetry Collector
149 versions - Latest release: 24 days ago - 1,560 stars on GitHub
Top 5.3% on proxy.golang.org
go.opentelemetry.io/collector-contrib v0.100.0
Package otel provides global access to the OpenTelemetry API. The subpackages of the otel package...
149 versions - Latest release: 24 days ago - 4,482 stars on GitHub
Top 1.2% on proxy.golang.org
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/snowflakereceiver v0.100.0
Contrib repository for the OpenTelemetry Collector
42 versions - Latest release: 24 days ago - 38 dependent packages - 9 dependent repositories - 1,681 stars on GitHub
Top 1.5% on proxy.golang.org
github.com/open-telemetry/opentelemetry-collector-contrib v0.100.0
Contrib repository for the OpenTelemetry Collector
150 versions - Latest release: 24 days ago - 3 dependent packages - 98 dependent repositories - 1,560 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/chanzuckerberg/cztack v0.69.4
The CZI infrastructure stack.
121 versions - Latest release: 27 days ago - 58 stars on GitHub
Top 4.8% on proxy.golang.org
github.com/chanzuckerberg/go-misc v2.4.1+incompatible
miscellaneous go code
43 versions - Latest release: 27 days ago - 26 dependent packages - 24 dependent repositories - 7 stars on GitHub
Top 6.2% on proxy.golang.org
github.com/michelin/snowflake-grafana-datasource v1.6.1
Snowflake grafana datasource plugin allows Snowflake data to be visually represented in Grafana d...
9 versions - Latest release: 28 days ago - 46 stars on GitHub
Top 7.7% on proxy.golang.org
github.com/observiq/bindplane-agent v1.50.0
observIQ’s distribution of the OpenTelemetry collector providing a simple and unified solution to...
88 versions - Latest release: 29 days ago - 54 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/flarco/sling v1.2.10
428 versions - Latest release: about 1 month ago
github.com/slingdata-io/sling-cli v1.2.9
Sling is a CLI tool that extracts data from a source storage/database and loads it in a target st...
428 versions - Latest release: about 1 month ago - 1 dependent package - 19 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/metadb-project/metadb v1.3.1
Metadb extends PostgreSQL with features to support analytics such as streaming data sources, data...
102 versions - Latest release: about 1 month ago - 7 stars on GitHub
Top 1.3% on proxy.golang.org
github.com/influxdata/kapacitor v1.7.4
A data pipeline processing engine. See the README for more complete examples and guides. Code O...
140 versions - Latest release: about 1 month ago - 6 dependent packages - 11 dependent repositories - 2,197 stars on GitHub
Top 1.4% on proxy.golang.org
github.com/benthosdev/benthos/v4 v4.27.0 💰
Fancy stream processing made operationally mundane
40 versions - Latest release: about 1 month ago - 36 dependent packages - 9 dependent repositories - 5,853 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/Jeffail/benthos/v4 v4.27.0 💰
Fancy stream processing made operationally mundane
40 versions - Latest release: about 1 month ago - 6,899 stars on GitHub
Top 4.1% on proxy.golang.org
github.com/HashiCorp/vault v1.16.2
A tool for secrets management, encryption as a service, and privileged access management
253 versions - Latest release: about 1 month ago - 27,195 stars on GitHub
Top 4.1% on proxy.golang.org
github.com/hashicorp/Vault v1.16.2
A tool for secrets management, encryption as a service, and privileged access management
253 versions - Latest release: about 1 month ago - 27,203 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/goto/meteor v0.10.4
Meteor is an easy-to-use, plugin-driven metadata collection framework to extract data from differ...
62 versions - Latest release: about 1 month ago - 0 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/snowplow-devops/conntest v0.3.0
Connection testing for Snowplow destinations
9 versions - Latest release: about 1 month ago - 0 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/golang-migrate/migratE/v4 v4.17.1
Database migrations. CLI and Golang library.
41 versions - Latest release: about 1 month ago - 11,045 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/golang-mIGRAte/migrate/v4 v4.17.1
Database migrations. CLI and Golang library.
41 versions - Latest release: about 1 month ago - 11,045 stars on GitHub
Top 4.3% on proxy.golang.org
gopkg.in/golang-migrate/migrate.v4 v4.17.1
Package migrate reads migrations from sources and runs them against databases. Sources are define...
41 versions - Latest release: about 1 month ago - 13,341 stars on GitHub
Top 8.6% on proxy.golang.org
github.com/raito-io/cli-plugin-snowflake v0.37.1
106 versions - Latest release: about 2 months ago - 2 stars on GitHub
Top 0.6% on proxy.golang.org
github.com/influxdata/influxdb/v2 v2.7.6
Scalable datastore for metrics, events, and real-time analytics
71 versions - Latest release: about 2 months ago - 12 dependent packages - 21 dependent repositories - 25,104 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/influxdb/influxdb/v2 v2.7.6
Scalable datastore for metrics, events, and real-time analytics
71 versions - Latest release: about 2 months ago - 25,110 stars on GitHub
Top 9.7% on proxy.golang.org
gopkg.in/influxdb/influxdb.v2 v2.7.6
71 versions - Latest release: about 2 months ago
github.com/chronosmasterofalltime/gorm-snowflake v1.1.0
21 versions - Latest release: about 2 months ago - 0 stars on GitHub
Top 6.8% on proxy.golang.org
github.com/observiq/observiq-otel-collector v1.48.2
observIQ’s distribution of the OpenTelemetry collector providing a simple and unified solution to...
87 versions - Latest release: about 2 months ago - 40 stars on GitHub
Top 7.7% on proxy.golang.org
github.com/observIQ/observiq-otel-collector/receiver/pluginreceiver v1.48.2
observIQ’s distribution of the OpenTelemetry collector providing a simple and unified solution to...
54 versions - Latest release: about 2 months ago - 60 stars on GitHub
Top 5.2% on proxy.golang.org
github.com/trufflesecurity/truffleHog/v3 v3.73.0
Find and verify credentials
199 versions - Latest release: about 2 months ago - 11,851 stars on GitHub
Top 8.1% on proxy.golang.org
github.com/CGA1123/slugcmplr v0.0.15
Package slugcmplr exposes functions to transform a source repository to a Heroku compatible tarba...
14 versions - Latest release: about 2 months ago - 7 stars on GitHub
Top 8.1% on proxy.golang.org
github.com/cga1123/slugcmplr v0.0.15
Package slugcmplr exposes functions to transform a source repository to a Heroku compatible tarba...
14 versions - Latest release: about 2 months ago - 7 stars on GitHub
Top 7.2% on proxy.golang.org
github.com/knq/usql v0.18.1
110 versions - Latest release: 2 months ago - 1 dependent repositories
Top 4.6% on proxy.golang.org
github.com/apache/arrow-adbc/go/adbc v0.11.0
Package adbc defines the interfaces for Arrow Database Connectivity. An Arrow-based interface be...
61 versions - Latest release: 2 months ago - 1 dependent package - 1 dependent repositories - 143 stars on GitHub
Top 4.5% on proxy.golang.org
github.com/open-telemetry/opentelemetry-collector-contrib/cmd/configschema v0.97.0
Deprecated: [v0.92.0] This package is deprecated and will be removed in a future release. See htt...
64 versions - Latest release: 2 months ago - 2,280 stars on GitHub
Top 0.9% on proxy.golang.org
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/sqlqueryreceiver v0.97.0
Contrib repository for the OpenTelemetry Collector
48 versions - Latest release: 2 months ago - 96 dependent packages - 109 dependent repositories - 1,566 stars on GitHub
Top 2.6% on proxy.golang.org
github.com/lf-edge/ekuiper v1.14.0-dev.1
Lightweight data stream processing engine for IoT edge
496 versions - Latest release: 2 months ago - 1 dependent package - 4 dependent repositories - 958 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/influxdb/kapacitor v1.7.3
A data pipeline processing engine. See the README for more complete examples and guides. Code O...
139 versions - Latest release: 2 months ago
Top 5.1% on proxy.golang.org
github.com/justwatchcom/sql_exporter v0.5.4
Flexible SQL Exporter for Prometheus.
18 versions - Latest release: 2 months ago - 272 stars on GitHub
Top 9.0% on proxy.golang.org
github.com/anovateam/benthos/v4 v4.26.0
Fancy stream processing made operationally mundane
54 versions - Latest release: 2 months ago - 0 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/jeffail/benthos/v4 v4.26.0
40 versions - Latest release: 2 months ago
Top 4.7% on proxy.golang.org
github.com/k1Low/tbls v1.73.3 💰
tbls is a CI-Friendly tool for document a database, written in Go.
185 versions - Latest release: 3 months ago - 2,221 stars on GitHub
Top 4.7% on proxy.golang.org
github.com/k1loW/tbls v1.73.3 💰
tbls is a CI-Friendly tool for document a database, written in Go.
185 versions - Latest release: 3 months ago - 2,221 stars on GitHub
Top 9.9% on proxy.golang.org
github.com/breezewish/tidb-snowflake v0.0.4
Replicate data changes from TiDB to Data Warehouses in real-time
4 versions - Latest release: 3 months ago - 6 stars on GitHub
Top 9.7% on proxy.golang.org
github.com/pingcap-inc/tidb2dw v0.0.4
Replicate data changes from TiDB to Data Warehouses in real-time
4 versions - Latest release: 3 months ago - 6 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/canva/benthos/v4 v4.13.0
A fork of the official benthosdev/benthos repository in order to apply Canva-specific customisations
17 versions - Latest release: 3 months ago - 1 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/Canva/benthos/v4 v4.13.0
A fork of the official benthosdev/benthos repository in order to apply Canva-specific customisations
17 versions - Latest release: 3 months ago - 1 stars on GitHub
github.com/Canva/opentelemetry-collector-contrib v0.96.0
A fork of official open-telemetry/opentelemetry-collector-contrib repository in order to apply Ca...
125 versions - Latest release: 3 months ago - 2 stars on GitHub
github.com/canva/opentelemetry-collector-contrib v0.96.0
A fork of official open-telemetry/opentelemetry-collector-contrib repository in order to apply Ca...
125 versions - Latest release: 3 months ago - 2 stars on GitHub
github.com/dbnet-io/dbnet v0.0.87
dbNet is a web-based database client using Go as a backend, and React as front-end
87 versions - Latest release: 3 months ago - 2 stars on GitHub
github.com/dbrest-io/dbrest v0.0.70
Spin up a REST API for any Major Database
70 versions - Latest release: 3 months ago - 1 dependent package - 3 stars on GitHub
Top 6.8% on proxy.golang.org
github.com/observIQ/observiq-otel-collector v1.45.0
observIQ’s distribution of the OpenTelemetry collector providing a simple and unified solution to...
79 versions - Latest release: 3 months ago - 41 stars on GitHub
Top 7.7% on proxy.golang.org
github.com/observIQ/bindplane-agent v1.45.0
observIQ’s distribution of the OpenTelemetry collector providing a simple and unified solution to...
79 versions - Latest release: 3 months ago - 54 stars on GitHub
Top 6.1% on proxy.golang.org
github.com/observiq/observiq-collector v1.45.0
79 versions - Latest release: 3 months ago
Top 9.9% on proxy.golang.org
github.com/Elate-DevOps/migrate/v4 v4.0.12
Package migrate reads migrations from sources and runs them against databases. Sources are define...
13 versions - Latest release: 3 months ago - 0 stars on GitHub
github.com/fixfi-devops/migrate/v4 v4.0.12
Database migrations. CLI and Golang library.
13 versions - Latest release: 3 months ago - 0 stars on GitHub
github.com/elate-devops/migrate/v4 v4.0.12
Database migrations. CLI and Golang library.
13 versions - Latest release: 3 months ago - 0 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/featureform/featureform v0.12.2
The Virtual Feature Store. Turn your existing data infrastructure into a feature store.
41 versions - Latest release: 3 months ago - 1,230 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/featureform/embeddinghub v0.12.2
41 versions - Latest release: 3 months ago
Top 4.1% on proxy.golang.org
github.com/influxdata/InfluxDB v1.11.5
Package influxdb is the root package of InfluxDB, the scalable datastore for metrics, events, and...
239 versions - Latest release: 4 months ago - 25,104 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/ox-eye/opentelemetry-collector-contrib v0.58.0
Contrib repository for the OpenTelemetry Collector
87 versions - Latest release: 4 months ago - 0 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/natun-ai/natun v0.3.2
Transform your pythonic research to an artifact that engineers can deploy easily.
2 versions - Latest release: 4 months ago - 64 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/raptor-ml/natun v0.3.2
2 versions - Latest release: 4 months ago
Top 6.5% on proxy.golang.org
github.com/raptor-ml/raptor v0.3.2
Transform your pythonic research to an artifact that engineers can deploy easily.
9 versions - Latest release: 4 months ago - 1 dependent repositories - 64 stars on GitHub
Top 3.9% on proxy.golang.org
github.com/fluxninja/aperture/v2 v2.34.0
Observability-driven load management for cloud apps
173 versions - Latest release: 4 months ago - 3 dependent packages - 1 dependent repositories - 299 stars on GitHub
Top 3.8% on proxy.golang.org
github.com/hashicorp/vault-plugin-database-snowflake v0.9.2
23 versions - Latest release: 4 months ago - 36 dependent packages - 364 dependent repositories - 10 stars on GitHub
Top 6.6% on proxy.golang.org
github.com/estuary/connectors v0.0.0-20240124202215-51504a80eb48
Connectors for capturing data from external data sources
181 versions - Latest release: 4 months ago - 19 stars on GitHub
github.com/fluxninja/opentelemetry-collector-contrib v0.93.0
Contrib repository for the OpenTelemetry Collector
155 versions - Latest release: 4 months ago - 0 stars on GitHub
github.com/fluxninja/opentelemetry-collector-contrib/receiver/sqlqueryreceiver v0.93.0
Contrib repository for the OpenTelemetry Collector
57 versions - Latest release: 4 months ago - 1 dependent package - 1 dependent repositories - 0 stars on GitHub
github.com/nucleuscloud/neosync/backend v0.0.0-20240124170021-336ee683296c
391 versions - Latest release: 4 months ago - 1 dependent package - 1 dependent repositories - 3 stars on GitHub
Top 3.9% on proxy.golang.org
github.com/signalfx/splunk-otel-collector/pkg/receiver/smartagentreceiver v0.0.0-20240123174422-d4503474614a
281 versions - Latest release: 4 months ago - 2 dependent packages - 1 dependent repositories - 130 stars on GitHub
Top 0.4% on proxy.golang.org
github.com/influxdb/influxdb v1.11.5
Package influxdb is the root package of InfluxDB, the scalable datastore for metrics, events, and...
239 versions - Latest release: 4 months ago - 39 dependent packages - 56 dependent repositories - 25,104 stars on GitHub
Top 0.1% on proxy.golang.org
github.com/influxdata/influxdb v1.11.5
Package influxdb is the root package of InfluxDB, the scalable datastore for metrics, events, and...
240 versions - Latest release: 4 months ago - 5,884 dependent packages - 10,935 dependent repositories - 25,104 stars on GitHub
Top 8.5% on proxy.golang.org
github.com/flarco/dbio v0.4.82
410 versions - Latest release: 4 months ago - 4 dependent packages - 1 dependent repositories - 3 stars on GitHub
Top 9.0% on proxy.golang.org
github.com/remp2020/telegraf v1.29.2
Fork of github.com/influxdata/telegraf mirrored from our private repository, which includes extra...
33 versions - Latest release: 4 months ago - 0 stars on GitHub
github.com/fluffy-bunny/grpcdotnetgo v0.1.322
469 versions - Latest release: 4 months ago - 3 dependent packages - 4 dependent repositories - 2 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/lf-edge/ekuiper/extensions v0.0.0-20240119092555-ac96c610c8f5
Lightweight data stream processing engine for IoT edge
408 versions - Latest release: 4 months ago - 958 stars on GitHub
github.com/nucleuscloud/neosync/worker v0.0.0-20240118173357-a2e0b81f0d30
370 versions - Latest release: 4 months ago - 1 dependent package - 1 dependent repositories - 3 stars on GitHub
Top 5.9% on proxy.golang.org
github.com/CMSgov/bcda-app v0.0.0-20240116200610-366105d4b80b
Beneficiary Claims Data API
18 versions - Latest release: 5 months ago - 36 stars on GitHub
Top 3.2% on proxy.golang.org
github.com/burningalchemist/sql_exporter v0.0.0-20240115230932-4c157972a69d
Database agnostic SQL exporter for Prometheus
76 versions - Latest release: 5 months ago - 4 dependent packages - 5 dependent repositories - 98 stars on GitHub
github.com/darkness4/auth-htmx v1.5.0
Experiment with Go + HTMX and OAuth2/OIDC
7 versions - Latest release: 5 months ago - 7 stars on GitHub
github.com/Darkness4/auth-htmx v1.5.0
Auth HTMX is a simple demonstration of OAuth2/OIDC in combination with HTMX, written in Go.
7 versions - Latest release: 5 months ago - 18 stars on GitHub
Top 7.7% on proxy.golang.org
github.com/observiq/bindplane-agent/receiver/pluginreceiver v1.42.0
observIQ’s distribution of the OpenTelemetry collector providing a simple and unified solution to...
44 versions - Latest release: 5 months ago - 5 dependent packages - 54 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/influxdb/tivan v1.29.2
108 versions - Latest release: 5 months ago
Top 8.2% on proxy.golang.org
github.com/influxdb/telegraf v1.29.2
The plugin-driven server agent for collecting & reporting metrics.
108 versions - Latest release: 5 months ago - 12,680 stars on GitHub
Top 0.3% on proxy.golang.org
github.com/influxdata/telegraf v1.29.2
The plugin-driven server agent for collecting & reporting metrics.
108 versions - Latest release: 5 months ago - 128 dependent packages - 361 dependent repositories - 12,680 stars on GitHub
github.com/rtekdogan/opentelemetry-collector-contrib v0.91.0
Contrib repository for the OpenTelemetry Collector
4 versions - Latest release: 5 months ago - 0 stars on GitHub
Top 9.7% on proxy.golang.org
github.com/jtwatson/migrate/v4 v4.17.1-beta.0
4 versions - Latest release: 5 months ago
Top 8.2% on proxy.golang.org
github.com/cludden/benthos/v4 v4.24.0-no-otel.2 💰
A dull, resilient and quick to deploy stream processor
4 versions - Latest release: 5 months ago - 1 dependent package - 0 stars on GitHub