com.stratio.datasource.mongodb.DefaultSource.scala Maven / Gradle / Ivy
/**
* Copyright (C) 2015 Stratio (http://stratio.com)
*
* 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 com.stratio.datasource.mongodb
import com.stratio.datasource.mongodb.config.MongodbConfigBuilder
import com.stratio.datasource.mongodb.config.MongodbConfig._
import org.apache.spark.sql.SaveMode._
import org.apache.spark.sql.sources.{BaseRelation, CreatableRelationProvider, RelationProvider, SchemaRelationProvider}
import org.apache.spark.sql.types.StructType
import org.apache.spark.sql.{DataFrame, SQLContext, SaveMode}
/**
* Allows creation of MongoDB based tables using
* the syntax CREATE TEMPORARY TABLE ... USING com.stratio.deep.mongodb.
* Required options are detailed in [[com.stratio.datasource.mongodb.config.MongodbConfig]]
*/
class DefaultSource extends RelationProvider with SchemaRelationProvider with CreatableRelationProvider{
override def createRelation(
sqlContext: SQLContext,
parameters: Map[String, String]): BaseRelation = {
new MongodbRelation(MongodbConfigBuilder(parseParameters(parameters)).build())(sqlContext)
}
override def createRelation(
sqlContext: SQLContext,
parameters: Map[String, String],
schema: StructType): BaseRelation = {
new MongodbRelation(MongodbConfigBuilder(parseParameters(parameters)).build(), Some(schema))(sqlContext)
}
override def createRelation(
sqlContext: SQLContext,
mode: SaveMode,
parameters: Map[String, String],
data: DataFrame): BaseRelation = {
val mongodbRelation = new MongodbRelation(
MongodbConfigBuilder(parseParameters(parameters)).build(), Some(data.schema))(sqlContext)
mode match{
case Append => mongodbRelation.insert(data, overwrite = false)
case Overwrite => mongodbRelation.insert(data, overwrite = true)
case ErrorIfExists => if(mongodbRelation.isEmptyCollection) mongodbRelation.insert(data, overwrite = false)
else throw new UnsupportedOperationException("Writing in a non-empty collection.")
case Ignore => if(mongodbRelation.isEmptyCollection) mongodbRelation.insert(data, overwrite = false)
}
mongodbRelation
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy