title | linkTitle | weight | description |
---|---|---|---|
Native Apps |
Native Apps |
18 |
Get started with Native Apps in LocalStack for Snowflake |
Snowflake Native Apps are applications built and executed directly within the Snowflake Data Cloud platform. These apps can be used to extend the capabilities of Snowflake by integrating with external services, automating workflows, and building custom data applications. These apps are developed using Snowflake-native tools (e.g., Snowflake SQL, Snowflake API, and JavaScript) and can be distributed on the Snowflake Marketplace.
The Snowflake emulator supports CRUD operations for Native Apps, allowing you to create, read, update, and delete apps using the same commands and syntax as the Snowflake service. The following operations are supported:
CREATE APPLICATIONS
SHOW APPLICATION PACKAGES
ALTER APPLICATION PACKAGE
DESCRIBE APPLICATION PACKAGE
DROP APPLICATION PACKAGE
This guide is designed for users new to Native Apps and assumes basic knowledge of SQL and Snowflake. Start your Snowflake emulator and connect to it using an SQL client in order to execute the queries further below.
In this guide, you will createan Application Package, add a version to your Application Package using a manifest file, create a Native Application from that package, view and describe your Native Applications, and clean up by dropping applications and packages.
An Application Package is a container that can hold multiple versions of your Native App code and metadata. Use the CREATE APPLICATION PACKAGE
statement:
CREATE OR REPLACE APPLICATION PACKAGE my_first_package;
You can view all existing Application Packages in your environment using the SHOW APPLICATION PACKAGES
statement:
SHOW APPLICATION PACKAGES;
A manifest file describes your Native App version (e.g., name, version, comment). You typically store the manifest in a stage so that Snowflake can access it easily when creating a new app version.
Create your manifest.yml
locally:
manifest_version: 1
version:
name: v1
comment: "My first native application"
You can then upload the manifest file to a stage:
PUT file://./manifest.yml @my_stage AUTO_COMPRESS=FALSE;
Once your manifest (and any related files) are uploaded to a stage, you can register a version with the Application Package using the ALTER APPLICATION PACKAGE
statement:
ALTER APPLICATION PACKAGE my_first_package
ADD VERSION v1
USING '@my_stage';
After adding a version, you can optionally set it as the default release directive:
ALTER APPLICATION PACKAGE my_first_package
SET DEFAULT RELEASE DIRECTIVE VERSION = v1 PATCH = 0;
Use SHOW APPLICATION PACKAGES
again to see details of your updated package:
SHOW APPLICATION PACKAGES LIKE 'MY_FIRST_PACKAGE';
Next, create a Native Application that references the versioned Application Package you just set up using the CREATE APPLICATION
statement:
CREATE OR REPLACE APPLICATION my_native_app
FROM APPLICATION PACKAGE my_first_package;
When you no longer need your Native Application or its package, you can drop them using the DROP APPLICATION
and DROP APPLICATION PACKAGE
statements:
DROP APPLICATION my_native_app;
DROP APPLICATION PACKAGE my_first_package;