-
Notifications
You must be signed in to change notification settings - Fork 28.4k
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
[SPARK-2406][SQL] Initial support for using ParquetTableScan to read HiveMetaStore tables. #1819
Closed
Closed
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
212d5cd
Initial support for using ParquetTableScan to read HiveMetaStore tables.
marmbrus 1161338
Add a test to make sure conversion is actually happening
marmbrus a0baec7
Partitioning columns can be resolved.
yhuai 8cdc93c
Merge pull request #8 from yhuai/parquetMetastore
marmbrus c0d9b72
Avoid creating a HadoopRDD per partition. Add dirty hacks to retriev…
marmbrus ebb267e
include parquet hive to tests pass (Remove this later).
marmbrus 4c4dc19
Fix bug with tree splicing.
marmbrus a43e0da
Merge remote-tracking branch 'origin/master' into parquetMetastore
marmbrus 41ebc5f
remove hive parquet bundle
marmbrus 4f3d54f
fix style
marmbrus cc30430
Merge remote-tracking branch 'origin/master' into parquetMetastore
marmbrus 1620079
Revert "remove hive parquet bundle"
marmbrus 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 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 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 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 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 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 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
56 changes: 56 additions & 0 deletions
56
sql/hive/src/main/scala/org/apache/spark/sql/hive/parquet/FakeParquetSerDe.scala
This file contains 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,56 @@ | ||
/* | ||
* 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.hive.parquet | ||
|
||
import java.util.Properties | ||
|
||
import org.apache.hadoop.conf.Configuration | ||
import org.apache.hadoop.hive.serde2.objectinspector.ObjectInspector.Category | ||
import org.apache.hadoop.hive.serde2.{SerDeStats, SerDe} | ||
import org.apache.hadoop.hive.serde2.objectinspector.ObjectInspector | ||
import org.apache.hadoop.io.Writable | ||
|
||
/** | ||
* A placeholder that allows SparkSQL users to create metastore tables that are stored as | ||
* parquet files. It is only intended to pass the checks that the serde is valid and exists | ||
* when a CREATE TABLE is run. The actual work of decoding will be done by ParquetTableScan | ||
* when "spark.sql.hive.convertMetastoreParquet" is set to true. | ||
*/ | ||
@deprecated("No code should depend on FakeParquetHiveSerDe as it is only intended as a " + | ||
"placeholder in the Hive MetaStore") | ||
class FakeParquetSerDe extends SerDe { | ||
override def getObjectInspector: ObjectInspector = new ObjectInspector { | ||
override def getCategory: Category = Category.PRIMITIVE | ||
|
||
override def getTypeName: String = "string" | ||
} | ||
|
||
override def deserialize(p1: Writable): AnyRef = throwError | ||
|
||
override def initialize(p1: Configuration, p2: Properties): Unit = {} | ||
|
||
override def getSerializedClass: Class[_ <: Writable] = throwError | ||
|
||
override def getSerDeStats: SerDeStats = throwError | ||
|
||
override def serialize(p1: scala.Any, p2: ObjectInspector): Writable = throwError | ||
|
||
private def throwError = | ||
sys.error( | ||
"spark.sql.hive.convertMetastoreParquet must be set to true to use FakeParquetSerDe") | ||
} |
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.
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.
I am going to test this PR soon. In the meantime would it make sense to only put this in
SQLConf
(as well as a field of the key string in the singleton object), making that class the central place that stores SQL configs?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.
I have mixed feelings about that. The problem being that this only applies to HiveContexts, so it doesn't really make much sense in a SQLContext.
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.
Sounds like a job for
HiveConf extends SQLConf
! After all, there's nothing better than confusing users trying to useorg.apache.hadoop.hive.conf.HiveConf
!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.
When in doubt, make up longer names:
SQLConfigOpts
,HiveConfigOpts
. But this is only possibly relevant in the future and should not block this PR.