Enhance your Snowflake environment with codbex’s low-code solutions, effortlessly deployed as Docker images for maximum efficiency.

In this tutorial, I’m going to show you how you can easily deploy codbex products on Snowflake. I will describe the steps needed to deploy codbex Kronos. By following the steps, you can deploy any other codbex product in the same way.

Snowflake setup

  1. Create a non-trial Snowflake account

  2. In a worksheet execute the following commands:

    • Create a new role with privileges, warehouse and DB

      // Create an CONTAINER_USER_ROLE with required privileges
      USE ROLE ACCOUNTADMIN;
      CREATE OR REPLACE ROLE CONTAINER_USER_ROLE;
      GRANT CREATE DATABASE ON ACCOUNT TO ROLE CONTAINER_USER_ROLE;
      GRANT CREATE WAREHOUSE ON ACCOUNT TO ROLE CONTAINER_USER_ROLE;
      GRANT CREATE COMPUTE POOL ON ACCOUNT TO ROLE CONTAINER_USER_ROLE;
      GRANT CREATE INTEGRATION ON ACCOUNT TO ROLE CONTAINER_USER_ROLE;
      GRANT MONITOR USAGE ON ACCOUNT TO  ROLE  CONTAINER_USER_ROLE;
      GRANT BIND SERVICE ENDPOINT ON ACCOUNT TO ROLE CONTAINER_USER_ROLE;
      GRANT IMPORTED PRIVILEGES ON DATABASE snowflake TO ROLE CONTAINER_USER_ROLE;
      
      // Grant CONTAINER_USER_ROLE to ACCOUNTADMIN
      grant role CONTAINER_USER_ROLE to role ACCOUNTADMIN;
      
      // Create Database, Warehouse, and Image spec stage
      USE ROLE CONTAINER_USER_ROLE;
      CREATE OR REPLACE DATABASE CONTAINER_HOL_DB;
      
      CREATE OR REPLACE WAREHOUSE CONTAINER_HOL_WH
      WAREHOUSE_SIZE = XSMALL
      AUTO_SUSPEND = 120
      AUTO_RESUME = TRUE;
          
      CREATE STAGE IF NOT EXISTS specs
      ENCRYPTION = (TYPE='SNOWFLAKE_SSE');
      
      CREATE STAGE IF NOT EXISTS volumes
      ENCRYPTION = (TYPE='SNOWFLAKE_SSE')
      DIRECTORY = (ENABLE = TRUE);
      

      Adjust the warehouse size if needed. Details about supported sizes here.

    • Create compute pool and image repository

      USE ROLE CONTAINER_USER_ROLE;
      CREATE COMPUTE POOL IF NOT EXISTS CONTAINER_HOL_POOL
        MIN_NODES = 1
        MAX_NODES = 1
        INSTANCE_FAMILY = CPU_X64_XS;
      
      CREATE IMAGE REPOSITORY IF NOT EXISTS CONTAINER_HOL_DB.PUBLIC.IMAGE_REPO;
         
      // get details about the created image repository
      SHOW IMAGE REPOSITORIES like 'IMAGE_REPO' IN SCHEMA CONTAINER_HOL_DB.PUBLIC;
      

      Adjust the size of the provisioned machines if needed. More details about the different sizes here.

    • Create network rule which allows egress communication to all hosts on ports 443 and 80. This will allow codbex products to communicate with the outside world.

      USE ROLE ACCOUNTADMIN;
      
      DROP NETWORK RULE IF EXISTS allow_all_rule;
      DROP EXTERNAL ACCESS INTEGRATION IF EXISTS allow_all_rule_integration;
      
      CREATE OR REPLACE NETWORK RULE allow_all_rule
        MODE= 'EGRESS'
        TYPE = 'HOST_PORT'
        VALUE_LIST = ('0.0.0.0:443','0.0.0.0:80');
      
      CREATE OR REPLACE EXTERNAL ACCESS INTEGRATION allow_all_rule_integration
        ALLOWED_NETWORK_RULES = (allow_all_rule)
        ENABLED = true;
      
      GRANT USAGE ON INTEGRATION allow_all_rule_integration TO ROLE CONTAINER_USER_ROLE;
      

Docker image preparation

  1. Pull latest codbex-kronos image

    IMAGE_NAME='codbex-kronos'
    IMAGE_VERSION='latest'
    docker pull ghcr.io/codbex/$IMAGE_NAME:$IMAGE_VERSION --platform linux/amd64
    

    Adjust the IMAGE_NAME with the needed codbex product. For example, you can use codbex-helios, codbex-iapetus, codbex-hyperion and any other codbex product.

  2. Login in your Snowflake image repository

    # replace <org> and <account> with values for your snowflake account
    SNOWFLAKE_REGISTRY_HOSTNAME='<org>-<account>.registry.snowflakecomputing.com'
    # example value: jiixfdf-qd67203.registry.snowflakecomputing.com
       
    docker login "$SNOWFLAKE_REGISTRY_HOSTNAME" -u <your_username>
    
  3. Retag the pulled image and push it to the Snowflake repository

    # you can get the value for `REPO_URL`
    # from the result of the following sql:
    # SHOW IMAGE REPOSITORIES like 'IMAGE_REPO' IN SCHEMA CONTAINER_HOL_DB.PUBLIC;
    REPO_URL="$SNOWFLAKE_REGISTRY_HOSTNAME/container_hol_db/public/image_repo"
    SNOWFLAKE_IMAGE="$REPO_URL/$IMAGE_NAME:$IMAGE_VERSION"
      
    docker tag ghcr.io/codbex/$IMAGE_NAME:$IMAGE_VERSION "$SNOWFLAKE_IMAGE"
      
    echo "Pushing image $SNOWFLAKE_IMAGE"
    docker push "$SNOWFLAKE_IMAGE"
    

Deploy the application

  1. Create spec file codbex-kronos-snowpark.yaml for service deployment with the following content

    spec:
      containers:
        - name: codbex-application
          image: <snowflake-image>
          volumeMounts:
            - name: app-volume
              mountPath: /target
          env:
            DIRIGIBLE_DATABASE_CUSTOM_DATASOURCES: SNOWFLAKE
            DIRIGIBLE_DATABASE_DATASOURCE_NAME_DEFAULT: SNOWFLAKE
            SNOWFLAKE_DRIVER: net.snowflake.client.jdbc.SnowflakeDriver
            SNOWFLAKE_WAREHOUSE: CONTAINER_HOL_WH
            SNOWFLAKE_DATABASE: CONTAINER_HOL_DB
            SNOWFLAKE_ROLE: CONTAINER_USER_ROLE
            SNOWFLAKE_SCHEMA: PUBLIC
            SNOWFLAKE_URL: jdbc:snowflake://not-used-in-snowpark-scenario
            SNOWFLAKE_USERNAME: not-used-in-snowpark-scenario
            SNOWFLAKE_PASSWORD: not-used-in-snowpark-scenario
      endpoints:
        - name: app-endpoint
          port: 80
          public: true
      volumes:
        - name: app-volume
          source: "@CONTAINER_HOL_DB.PUBLIC.VOLUMES"
          uid: 1000
          gid: 1000
      networkPolicyConfig:
        allowInternetEgress: true
    

    Details about the Snowpark Container Services specification YAML could be found here.

  2. Replace the following placeholders in the above yaml

    Placeholder Description Example
    <snowflake-image> snowflake image - the value of SNOWFLAKE_IMAGE jiixfdf-qd67203.registry.snowflakecomputing.com/container_hol_db/public/image_repo/codbex-kronos:latest
  3. Upload the spec file

    • Upload the file to the created stage specs using the UI (Snowsight)
      • Go to Snowsight UI
      • Open Data -> Add Data
      • Select Load files into a Stage add-file-to-stage.png
      • Select database CONTAINER_HOL_DB and schema PUBLIC
      • Select stage specs
      • Click on Upload button upload-file.png
      • Here you ca find more details about the user interface if you have any troubles.
    • Alternatively, you can use the Snowflake CLI
      • Install Snowflake CLI by following the instructions here
      • Create a new connection with name blog and set role=CONTAINER_USER_ROLE, warehouse=CONTAINER_HOL_WH, database=CONTAINER_HOL_DB, schema=PUBLIC
        snow connection add --default
        
      • Test created connection
        snow connection test --connection "blog"
        
      • Upload the created spec YAML file
        snow stage copy codbex-kronos-snowpark.yaml @specs \
          --overwrite --connection blog \
          --database CONTAINER_HOL_DB --schema PUBLIC --role CONTAINER_USER_ROLE
        
  4. Create (deploy) the application service

    • In the Snowflake worksheet execute the following command:
      USE ROLE CONTAINER_USER_ROLE;
      USE DATABASE CONTAINER_HOL_DB;
         
      DROP SERVICE IF EXISTS codbex_kronos;
         
      CREATE SERVICE codbex_kronos
        in compute pool CONTAINER_HOL_POOL
        from @specs
        EXTERNAL_ACCESS_INTEGRATIONS = (allow_all_rule_integration)
      spec = 'codbex-kronos-snowpark.yaml';
      
    • Check your service status:
      CALL SYSTEM$GET_SERVICE_STATUS('codbex_kronos');
      
    • At first, it will be in status PENDING service-status-pending.png
    • Wait until it become READY service-status-ready.png

Using your newly deployed application

  1. Get application URL

    SHOW ENDPOINTS IN SERVICE codbex_kronos;
    
  2. Open the value of ingress_url in your browser endpoints.png

  3. Login with your Snowflake credentials snowflake-login.png

  4. Login in the application using the default credentials user admin and password admin.
    You should see the application’s welcome page kronos-welcome-page.png

  5. Next, you can validate the connection to the Snowflake database

    • Go to Database perspective by clicking on the corresponding button db-perspective.png
    • Select SNOWFLAKE datasource snowflake-ds.png
    • Create a test table, insert data into it and select all entries
      DROP TABLE IF EXISTS STUDENTS;
      
      CREATE TABLE STUDENTS (
          ID INTEGER AUTOINCREMENT,
          FIRST_NAME STRING,
          LAST_NAME STRING
      );
         
      INSERT INTO STUDENTS (FIRST_NAME, LAST_NAME)
      VALUES
           ('John', 'Doe'),
           ('Jane', 'Smith'),
           ('Emily', 'Johnson');
          
      SELECT * FROM STUDENTS;
      

      test-snowflake-connection.png

  6. To check the application logs, you can call SYSTEM$GET_SERVICE_LOGS function

    CALL SYSTEM$GET_SERVICE_LOGS('codbex_kronos', '0',  'codbex-application');
    

Congratulations, you have deployed your codbex application!


I hope you enjoyed this blog. Stay tuned for more great functionality by codbex!
If you have any questions, ideas or want to contribute, feel free to contact us.

Iliyan Velichkov

Iliyan likes SUP, rifle shooting and fishing.