-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-14353] Dataset Time Window window API for Python, and SQL
#12136
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
Closed
Closed
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
4777b77
added python api for time windowing
brkyvz 7b0fb13
everything except R
brkyvz f589469
added window support for sql, python, and R
brkyvz 12e1841
fixed R style
brkyvz e2aa616
remove R changes
brkyvz a59ad58
smarter reflection
brkyvz 71fa73f
use existing util method
brkyvz c891d75
address comments
brkyvz 9a3a47f
should be fixed
brkyvz 8dec7ca
handle null
brkyvz 891f448
fix col name
brkyvz 1bd7563
fix second line
brkyvz 68b9de2
Update functions.py
brkyvz File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -22,6 +22,7 @@ import java.util.UUID | |
| import scala.collection.Map | ||
| import scala.collection.mutable.Stack | ||
|
|
||
| import org.apache.commons.lang.ClassUtils | ||
| import org.json4s.JsonAST._ | ||
| import org.json4s.JsonDSL._ | ||
| import org.json4s.jackson.JsonMethods._ | ||
|
|
@@ -365,20 +366,32 @@ abstract class TreeNode[BaseType <: TreeNode[BaseType]] extends Product { | |
| * @param newArgs the new product arguments. | ||
| */ | ||
| def makeCopy(newArgs: Array[AnyRef]): BaseType = attachTree(this, "makeCopy") { | ||
| // Skip no-arg constructors that are just there for kryo. | ||
| val ctors = getClass.getConstructors.filter(_.getParameterTypes.size != 0) | ||
| if (ctors.isEmpty) { | ||
| sys.error(s"No valid constructor for $nodeName") | ||
| } | ||
| val defaultCtor = ctors.maxBy(_.getParameterTypes.size) | ||
| val allArgs: Array[AnyRef] = if (otherCopyArgs.isEmpty) { | ||
| newArgs | ||
| } else { | ||
| newArgs ++ otherCopyArgs | ||
| } | ||
| val defaultCtor = ctors.find { ctor => | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. we need a smarter way to pick the constructor, or else the two constructors for |
||
| if (ctor.getParameterTypes.length != allArgs.length) { | ||
| false | ||
| } else if (allArgs.contains(null)) { | ||
| // if there is a `null`, we can't figure out the class, therefore we should just fallback | ||
| // to older heuristic | ||
| false | ||
| } else { | ||
| val argsArray: Array[Class[_]] = allArgs.map(_.getClass) | ||
| ClassUtils.isAssignable(argsArray, ctor.getParameterTypes, true /* autoboxing */) | ||
| } | ||
| }.getOrElse(ctors.maxBy(_.getParameterTypes.length)) // fall back to older heuristic | ||
|
|
||
| try { | ||
| CurrentOrigin.withOrigin(origin) { | ||
| // Skip no-arg constructors that are just there for kryo. | ||
| if (otherCopyArgs.isEmpty) { | ||
| defaultCtor.newInstance(newArgs: _*).asInstanceOf[BaseType] | ||
| } else { | ||
| defaultCtor.newInstance((newArgs ++ otherCopyArgs).toArray: _*).asInstanceOf[BaseType] | ||
| } | ||
| defaultCtor.newInstance(allArgs.toArray: _*).asInstanceOf[BaseType] | ||
| } | ||
| } catch { | ||
| case e: java.lang.IllegalArgumentException => | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's better to check the type of slideDuration and startTime here, raise an Python TypeError exception if there are not str.