how to deploy sql functions in pool
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2024 09:06 AM
we have some function definitions which we have to have available for our bi tools e.g.
CREATE FUNCTION CREATEDATE(year INT, month INT, day INT) RETURNS DATE RETURN make_date(year, month, day);
how can we always have this function definition in our version control and have it run in our databricks releases and if in case we have to recreate the infrastructure it will run in our databricks releases and if in case we have to recreate the infrastructure it will run in our databricks releases and if in case we have to recreate the infrastructure it will run in our databricks releases.
#sql #sqlfunctions #deploy
Labels:
- Labels:
-
Delta Lake
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2024 01:56 PM
looking at some alternatives with other databricks components, I think that a CI/CD process should be created where the view can be created through the databricks api. https://docs.databricks.com/api/workspace/functions/create

