-
Notifications
You must be signed in to change notification settings - Fork 28.9k
[SPARK-18120][SPARK-19557][SQL] Call QueryExecutionListener callback methods for DataFrameWriter methods #16962
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,52 @@ | ||
| /* | ||
| * 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.execution.datasources | ||
|
|
||
| import org.apache.spark.sql.{Dataset, Row, SaveMode, SparkSession} | ||
| import org.apache.spark.sql.catalyst.plans.QueryPlan | ||
| import org.apache.spark.sql.catalyst.plans.logical.LogicalPlan | ||
| import org.apache.spark.sql.execution.command.RunnableCommand | ||
|
|
||
| /** | ||
| * Saves the results of `query` in to a data source. | ||
| * | ||
| * Note that this command is different from [[InsertIntoDataSourceCommand]]. This command will call | ||
| * `CreatableRelationProvider.createRelation` to write out the data, while | ||
| * [[InsertIntoDataSourceCommand]] calls `InsertableRelation.insert`. Ideally these 2 data source | ||
| * interfaces should do the same thing, but as we've already published these 2 interfaces and the | ||
| * implementations may have different logic, we have to keep these 2 different commands. | ||
| */ | ||
| case class SaveIntoDataSourceCommand( | ||
| query: LogicalPlan, | ||
| provider: String, | ||
| partitionColumns: Seq[String], | ||
| options: Map[String, String], | ||
| mode: SaveMode) extends RunnableCommand { | ||
|
|
||
| override protected def innerChildren: Seq[QueryPlan[_]] = Seq(query) | ||
|
|
||
| override def run(sparkSession: SparkSession): Seq[Row] = { | ||
| DataSource( | ||
| sparkSession, | ||
| className = provider, | ||
| partitionColumns = partitionColumns, | ||
| options = options).write(mode, Dataset.ofRows(sparkSession, query)) | ||
|
|
||
|
Member
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. Do we need to Invalidate the cache to be consistent with
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 don't have the
Member
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. : ) |
||
| Seq.empty[Row] | ||
| } | ||
| } | ||
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.
Does this also cover SPARK-19557? If so, might as well mention that in the PR (or close the bug as a duplicate or related or something).