-
Notifications
You must be signed in to change notification settings - Fork 28.6k
[SPARK-52283][SQL] Declarative Pipelines DataflowGraph
creation and resolution
#51003
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
Open
aakash-db
wants to merge
30
commits into
apache:master
Choose a base branch
from
aakash-db:graph-resolution
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+5,730
−2
Open
Changes from 12 commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
f6423ba
1
aakash-db a874f0d
2
aakash-db 1e14973
3
aakash-db e15dc6a
4
aakash-db 395af50
5
aakash-db c28a095
6
aakash-db 1dbc38c
comments p1
aakash-db c53c17c
1
aakash-db 12790a4
queryContext addition
aakash-db c78c705
1
aakash-db 4405843
error formatting
aakash-db 8941194
comments
aakash-db 6f1e58c
1
aakash-db b8bfc30
fix
aakash-db 1339c24
fix 2
aakash-db ae8da43
remove shim exclusion in spark core test dep
sryza da6bc91
1
aakash-db f91a2d3
Remove validateAppendOnceFlows
sryza fc36fa6
Clean up PipelinesErrors
sryza db1591f
Remove weird Returns comments for lazy vals in DataflowGraph
sryza 759fd5a
Fix LoadTableException again
sryza 16a7ab2
remove param
aakash-db bbd48e4
Merge branch 'graph-resolution' of githubnonemu.com:aakash-db/spark i…
aakash-db 93dd574
Add SchemaInferenceUtilsSuite
sryza 21b5412
wenchen feedback and try to fix build errors
sryza ac30615
another docs fix
sryza ffb3a52
remove direct spark-core test jar dependency
sryza 1887e30
fix SparkThrowableSuite
gengliangwang e3ee4ce
try more to fix the build
sryza 27f4aee
more docs fix
sryza 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
33 changes: 33 additions & 0 deletions
33
sql/pipelines/src/main/scala/org/apache/spark/sql/pipelines/AnalysisWarning.scala
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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.apache.spark.sql.pipelines | ||
|
||
/** Represents a warning generated as part of graph analysis. */ | ||
sealed trait AnalysisWarning | ||
|
||
object AnalysisWarning { | ||
aakash-db marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
/** | ||
* Warning that some streaming reader options are being dropped | ||
* | ||
* @param sourceName Source for which reader options are being dropped. | ||
* @param droppedOptions Set of reader options that are being dropped for a specific source. | ||
*/ | ||
case class StreamingReaderOptionsDropped(sourceName: String, droppedOptions: Seq[String]) | ||
extends AnalysisWarning | ||
} |
26 changes: 26 additions & 0 deletions
26
sql/pipelines/src/main/scala/org/apache/spark/sql/pipelines/Language.scala
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.apache.spark.sql.pipelines | ||
aakash-db marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
sealed trait Language {} | ||
|
||
object Language { | ||
case class Python() extends Language {} | ||
case class Sql() extends Language {} | ||
} | ||
|
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.