Skip to content

Custom resolvers? #71

Answered by littleK0i
josdotso asked this question in Q&A
Feb 7, 2024 · 2 comments · 3 replies
Discussion options

You must be logged in to vote

You can define custom resolvers and overload existing ones using exactly the same approach as you did with parsers.

But I would not recommend adding any logic which goes out of scope of object management. SnowDDL was designed for commands executed instantly and in parallel. It is not a good fit for something which may run for many hours, like dynamic table refresh. It will be locked in execution, and you won't get final output until everything is done.

Also, I would not recommend using dynamic tables in general. You may get much better results and much more control with any external orchestration tool running plain SQL.

Replies: 2 comments 3 replies

Comment options

You must be logged in to vote
1 reply
@josdotso
Comment options

Answer selected by josdotso
Comment options

You must be logged in to vote
2 replies
@littleK0i
Comment options

@josdotso
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants