项目作者: mc2-project

项目描述 :
An encrypted data analytics platform
高级语言: C++
项目地址: git://github.com/mc2-project/opaque.git
创建时间: 2016-10-31T19:09:35Z
项目社区:https://github.com/mc2-project/opaque

开源协议:Apache License 2.0

下载


Opaque

Secure Apache Spark SQL

Tests Status
License

Contributor Covenant

Welcome to the landing page of Opaque SQL! Opaque SQL is a package for Apache Spark SQL that enables processing over encrypted DataFrames using the OpenEnclave framework.

Quick start

Note that Opaque SQL requires the MC2 Client in order to securely run an encrypted query. For a quickstart on that end-to-end workflow, please see the README in the MC2 Client repo.

Usage

Similar to Apache Spark SQL, Opaque SQL offer an encrypted DataFrame abstraction. Users familiar with the Spark API can easily run queries on encrypted DataFrames using the same API. The main difference is that we support saving and loading of DataFrames, but not actions like .collect or .show. An example script is the following:

  1. // Import hooks to Opaque SQL
  2. import edu.berkeley.cs.rise.opaque.implicits._
  3. import org.apache.spark.sql.types._
  4. // Load an encrypted DataFrame (saved using the MC2 client)
  5. val df_enc = spark.read.format("edu.berkeley.cs.rise.opaque.EncryptedSource").load("/tmp/opaquesql.csv.enc")
  6. // Run a filter query on the encrypted DataFrame
  7. val result = df_enc.filter($"Age" < lit(30))
  8. // This will save the encrypted result to the result directory on the cloud
  9. result.write.format("edu.berkeley.cs.rise.opaque.EncryptedSource").save("/tmp/opaque_sql_result")

For more details on how to use Opaque SQL, please refer to this section.

Documentation

For more details on building, using, and contributing, please see our documentation.

Paper

The open source is based on our NSDI 2017 paper.

Contact

Join the discussion on Slack or email us at mc2-dev@googlegroups.com.