-
Notifications
You must be signed in to change notification settings - Fork 683
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sample ICombiner #53
Comments
Hi Remek.... I don't think that a custom Combiner would be a great example for a BETWEEN scenario. That you should probably express as a CROSS JOIN with the BETWEEN in the WHERE clause. Writing example Combiners is on our backlog though, although it would have to be one that shows a good use case :). |
Hi Mike, I was looking for any example not necessary related to BETWEEN. I agree with you that in most cases CROSS APPLY would be better solution then COMBINE. |
I assume you mean a CROSS JOIN? :) And yes, custom Combiners can be more efficient than the generic CROSS JOIN/WHERE. If you feel yours is a good example and you are willing to share it, please let me know and I can add it. |
Yes, I meant CROSS JOIN. I’m working on article to explain how to use COMBINE. I will let you know when ready so you can decide if it’s worth to add it as example and if so I will send you all source codes |
Thanks. Looking forward to the example! From: RemekH [mailto:notifications@github.com] Yes, I meant CROSS JOIN. I’m working on article to explain how to use COMBINE. I will let you know when ready so you can decide if it’s worth to add it as example and if so I will send you all source codes — |
Hi Mike, |
Thanks I already tweeted it out :). |
We now have the U-SQL C# Programmability guide with samples for all UDOs at https://docs.microsoft.com/en-us/azure/data-lake-analytics/data-lake-analytics-u-sql-programmability-guide. |
Would be possible to add some example showing how to make custom JOIN using ICombiner?
E.g. JOIN two data sets using BETWEEN or x>=z && y<=z
The text was updated successfully, but these errors were encountered: