Snowflake Class Methods
Snowflake
A class for connecting to Snowflake wrapping around the snowflake python connector.
https://docs.snowflake.com/en/developer-guide/snowpark/python/index
The additional features include reading large tables in chunks, and having pauses and retries if a chunk read is unsuccessful.
Source code in veetility/snowflake.py
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 | |
__init__(connection_params_dict)
Initialise the snowflake connection with a dictionary of connection parameters.
Log File is created in the LOG_DIR environment variable with a subdirectory with the name of the client_name
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
connection_params_dict |
dict
|
Dictionary of connection parameters |
required |
client_name |
str
|
Name of the client, this is used to create a folder in the LOG_DIR environment variable |
required |
Returns:
| Type | Description |
|---|---|
None
|
None |
Source code in veetility/snowflake.py
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | |
drop_table(table_name, database=None, schema=None)
Function to drop Snowflake table
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
table_name |
str
|
Name of the table to drop |
required |
database |
str
|
Name of the database to drop the table from. Defaults to the database specified on class initialisation. |
None
|
schema |
str
|
Name of the schema to drop the table from. Defaults to the schema specified on class initialisation. |
None
|
Returns:
| Type | Description |
|---|---|
Message that the table has been dropped |
Source code in veetility/snowflake.py
187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 | |
read_snowflake_to_df(table_name, schema=None, database=None, chunk_size=200000)
Function to read Snowflake table using SQLAlchemy
URL stands for Uniform Resource Locator. It is a reference (an address) to a resource on the Internet.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
table_name |
str
|
Name of the table to read |
required |
schema |
str
|
Name of the schema to read from. Defaults to the schema specified on class initialisation. |
None
|
chunk_size |
int
|
Size of the data chunks to read in a single batch. Defaults to 200000. |
200000
|
Returns:
| Name | Type | Description |
|---|---|---|
df | Pandas dataframe of the data read from Snowflake |
Source code in veetility/snowflake.py
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 | |
read_snowflake_to_df_snowpark(table_name, schema=None, database=None)
Alternative function to read Snowflake table using Snowpark.
This method provides an alternative to read_snowflake_to_df() using Snowpark instead of the Snowflake connector. This can be more reliable for certain use cases.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
table_name |
str
|
Name of the table to read |
required |
schema |
str
|
Name of the schema to read from. Defaults to the schema specified on class initialisation. |
None
|
database |
str
|
Name of the database to read from. Defaults to the database specified on class initialisation. |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
df | Pandas dataframe of the data read from Snowflake |
Source code in veetility/snowflake.py
271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 | |
send_sql_query(sql_query, database=None, schema=None)
Executes a SQL query on a Snowflake database using the specified schema and database.
This function creates a connection to a Snowflake database using provided credentials, executes a given SQL query, and commits the changes. It defaults to the instance's database and schema if none are provided.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
sql_query |
str
|
The SQL query to execute. This could be any valid SQL command. |
required |
database |
str
|
The database to connect to. Defaults to the instance's database if None. |
None
|
schema |
str
|
The schema to use within the database. Defaults to the instance's schema if None. |
None
|
Raises:
| Type | Description |
|---|---|
snowflake.connector.Error
|
If there is an issue with the connection or the SQL execution. |
Source code in veetility/snowflake.py
225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 | |
write_df_to_snowflake(df, table_name, database=None, schema=None, auto_create_table=False, overwrite=False, chunk_size=20000)
Function to write Pandas dataframe to Snowflake table.
Truncates (if it exists) or creates new table and inserts the new data into the selcted table.
This function is based on the write_pandas function from the snowflake-connector-python package but just adds some redundancy and retries if the connection fails.
Their documentation can be found here, but is incomplete as it doesn't include the overwrite parameter.
https://docs.snowflake.com/en/developer-guide/python-connector/python-connector-api#write_pandas
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
df |
dataframe
|
Pandas dataframe to write to Snowflake |
required |
table_name |
str
|
Name of the table to write to |
required |
database |
str
|
Name of the database to write the table to. Defaults to the database specified on class initialisation. |
None
|
schema |
str
|
Name of the schema to write the table to. Defaults to the schema specified on class initialisation. |
None
|
auto_create_table |
bool
|
If True, creates the table if it does not exist. Defaults to False. |
False
|
overwrite |
bool
|
If True, overwrites the table if it exists, else if False the df is appended to current table. Defaults to False. |
False
|
chunk_size |
int
|
Size of the data chunks to write in a single batch. Defaults to 200000. |
20000
|
Returns:
| Type | Description |
|---|---|
None |
Source code in veetility/snowflake.py
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 | |
write_df_to_snowflake_snowpark(df, table_name, database=None, schema=None, mode='overwrite')
Alternative function to write Pandas dataframe to Snowflake using Snowpark.
This method provides an alternative to write_df_to_snowflake() using Snowpark instead of the Snowflake connector. This can be more reliable for certain use cases.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
df |
dataframe
|
Pandas dataframe to write to Snowflake |
required |
table_name |
str
|
Name of the table to write to |
required |
database |
str
|
Name of the database to write to. Defaults to the database specified on class initialisation. |
None
|
schema |
str
|
Name of the schema to write to. Defaults to the schema specified on class initialisation. |
None
|
mode |
str
|
Write mode - 'overwrite' or 'append'. Defaults to 'overwrite'. |
'overwrite'
|
Returns:
| Type | Description |
|---|---|
None |
Source code in veetility/snowflake.py
325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 | |