Skip to content

Instantly share code, notes, and snippets.

View sfc-gh-vsekar's full-sized avatar

Venkatesh Sekar sfc-gh-vsekar

  • Snowflake
  • Waterloo, Canada
View GitHub Profile
@sfc-gh-vsekar
sfc-gh-vsekar / arcgis_geocoding.ipynb
Last active March 13, 2025 02:42
Geocoding using ArcGis location services in Snowflake
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@sfc-gh-vsekar
sfc-gh-vsekar / lidar_snowflake_native_batch_public.ipynb
Created February 13, 2024 13:39
large scale parallel processing with Snowpark
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@sfc-gh-vsekar
sfc-gh-vsekar / geotiff_snowflake_native_public.ipynb
Created February 7, 2024 18:42
Parsing GeoTiff files natively in Snowflake
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@sfc-gh-vsekar
sfc-gh-vsekar / langchain_snowpark_callbacks_public.ipynb
Last active February 1, 2024 02:05
Demonstration of a prototype SnowflakeCallBackHandler for Langchain
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@sfc-gh-vsekar
sfc-gh-vsekar / langchain_snowpark_tool_public.ipynb
Last active February 7, 2024 05:48
Developing custom Langchain Tool, that uses Snowpark Session
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@sfc-gh-vsekar
sfc-gh-vsekar / spcs_api_connect_with_snowpark_session.ipynb
Last active October 28, 2024 13:59
Connect to API end point hosted in Snowpark Containers (SPCS) using Snowpark
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@sfc-gh-vsekar
sfc-gh-vsekar / blog_querying_multi_terabyte_via_external_table_sqls.sql
Last active February 18, 2025 12:08
A quick gist for the sqls used in the blog : Querying TB sized External Tables with Snowflake
/*
Block : #STAGE
DDL for defining the external stage
*/
-- Step 1 : Create a database and schema for the experiment
create database ccrawl;
create schema ccrawl.raw;
use schema ccrawl.raw;