
net.sansa_stack.inference.spark.rules.RuleExecutorNative.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sansa-inference-spark_2.12 Show documentation
Show all versions of sansa-inference-spark_2.12 Show documentation
Apache Spark based inference layer for RDF and OWL
The newest version!
package net.sansa_stack.inference.spark.rules
import net.sansa_stack.inference.data.Jena
import org.apache.jena.graph.{Node, Triple}
import org.apache.spark.SparkContext
import org.apache.spark.rdd.RDD
import net.sansa_stack.inference.spark.data.model.RDFGraphNative
import net.sansa_stack.inference.spark.rules.plan.PlanExecutorNative
/**
* A rule executor that works on Spark data structures and operations.
*
* @author Lorenz Buehmann
*/
class RuleExecutorNative(sc: SparkContext)
extends RuleExecutor[Jena, RDD[Triple], Node, Triple, RDFGraphNative](new PlanExecutorNative(sc)) {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy