blob: f9154adf8610a59e0d827a9f9823ea0fc87ff2c8 [file] [log] [blame]
/*
Licensed 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.phoenix.spark
import org.apache.hadoop.conf.Configuration
import org.apache.spark.sql.{DataFrame, SQLContext}
@deprecated("Use the DataSource V2 API implementation (see PhoenixDataSource)")
class SparkSqlContextFunctions(@transient val sqlContext: SQLContext) extends Serializable {
/*
This will return a Spark DataFrame, with Phoenix types converted Spark SQL catalyst types
'table' is the corresponding Phoenix table
'columns' is a sequence of of columns to query
'predicate' is a set of statements to go after a WHERE clause, e.g. "TID = 123"
'zkUrl' is an optional Zookeeper URL to use to connect to Phoenix
'conf' is a Hadoop Configuration object. If zkUrl is not set, the "hbase.zookeeper.quorum"
property will be used
*/
def phoenixTableAsDataFrame(table: String, columns: Seq[String],
predicate: Option[String] = None,
zkUrl: Option[String] = None,
tenantId: Option[String] = None,
conf: Configuration = new Configuration): DataFrame = {
// Create the PhoenixRDD and convert it to a DataFrame
new PhoenixRDD(sqlContext.sparkContext, table, columns, predicate, zkUrl, conf, tenantId = tenantId)
.toDataFrame(sqlContext)
}
}