An abstraction layer for distributed computation
Project description
Fugue
Have questions? Chat with us on Slack
Fugue is a pure abstraction layer that makes code portable across differing computing frameworks such as Pandas, Spark and Dask.
- Framework-agnostic code: Write code once in native Python. Fugue makes it runnable on Pandas, Dask or Spark with minimal changes. Logic and code is decoupled from frameworks, even from Fugue itself. Fugue adapts user's code, as well as the underlying computing frameworks.
- Rapid iterations for big data projects: Test code on smaller data, then reliably scale to Dask or Spark when ready. This drastically improves project iteration time and saves cluster expense. This lessens the frequency spinning up clusters to test code, and reduces expensive mistakes.
- Friendlier interface for Spark: Fugue handles some optimizations on Spark, making it easier for big data practitioners to focus on logic. A lot of Fugue users see performance gains in their Spark jobs. Fugue SQL extends Spark SQL to be a programming language.
- Highly testable code: Fugue naturally makes logic more testable because the code is in native Python. Unit tests scale seamlessly from local workflows to distributed computing workflows.
Who is it for?
- Big data practitioners looking to reduce compute costs and increase project velocity
- Data practitioners who keep switching between data processing frameworks (Pandas, Spark, Dask)
- Data engineers scaling data pipelines to handle bigger data in a consistent and reliable way
- Data practitioners looking to write more testable code
- Spark/Dask users who want to have an easier experience working with distributed computing
- People who love using SQL. Fugue SQL extends standard SQL to be a programming language
Key Features
Here is an example Fugue code snippet that illustrates some of the key features of the framework. A fillna function creates a new column named filled
, which is the same as the column value
except that the None
values are filled.
from fugue import FugueWorkflow
from typing import Iterable, Dict, Any, List
# Creating sample data
data = [
["A", "2020-01-01", 10],
["A", "2020-01-02", None],
["A", "2020-01-03", 30],
["B", "2020-01-01", 20],
["B", "2020-01-02", None],
["B", "2020-01-03", 40]
]
schema = "id:str,date:date,value:double"
# schema: *, filled:double
def fillna(df:Iterable[Dict[str,Any]], value:float=0) -> Iterable[Dict[str,Any]]:
for row in df:
row["filled"] = (row["value"] or value)
yield row
with FugueWorkflow() as dag:
df1 = dag.df(data, schema).transform(fillna)
df1.show()
Catch errors faster
Fugue builds a directed acyclic graph (DAG) before running code, allowing users to receive errors faster. This catches more errors before expensive jobs are run on a cluster. For example, mismatches in specified schema will raise errors. In the code above, the schema hint comment is read and the schema is enforced during execution. Schema is required for Fugue extensions.
Cross-platform execution
Notice that the fillna
function written above is purely in native Python. The code will still run without Fugue. Fugue lets users write code in Python, and then port the logic to Pandas, Spark, or Dask. Users can focus on the logic, rather than on what engine it will be executed. To bring it to Spark, simply pass the SparkExecutionEngine
into the FugueWorkflow
as follows.
from fugue_spark import SparkExecutionEngine
with FugueWorkflow(SparkExecutionEngine) as dag:
df1 = dag.df(data, schema).transform(fillna)
df1.show()
Similarly for Dask, we can pass the DaskExecutionEngine
into the FugueWorkflow
instead.
Spark optimizations
Fugue makes Spark easier to use for people starting with distributed computing. For example, Fugue uses the constructed DAG to smartly auto-persist dataframes used multiple times. This often speeds up Spark jobs of users.
Access to framework configuration
Even if Fugue tries to simplify the experience of using distributed computing frameworks, it does not restrict users from editing configuration when needed. For example, the Spark session can be configured with the following:
from pyspark.sql import SparkSession
from fugue_spark import SparkExecutionEngine
spark_session = (SparkSession
.builder
.config("spark.executor.cores",4)
.config("fugue.dummy","dummy")
.getOrCreate())
engine = SparkExecutionEngine(spark_session, {"additional_conf":"abc"})
Fugue SQL
A SQL-based language capable of expressing end-to-end workflows. The fillna
code above is equivalent to the code below. This is how to use a Python-defined transformer along with the standard SQL SELECT
statement.
with FugueSQLWorkflow() as dag:
df1 = dag.df(data, schema)
dag("""
SELECT id, date, value FROM df1
TRANSFORM USING fillna (value=10)
PRINT
""")
Alternatively, there is a simpler way:
df1 = ArrayDataFrame(data, schema)
fsql("""
SELECT id, date, value FROM df1
TRANSFORM USING fillna (value=10)
PRINT
""").run()
Get started
To read the complete static docs, click here
The best way to start is to go through the tutorials. We have the tutorials in an interactive notebook environent.
Run the tutorial using binder:
But it runs slow on binder, the machine on binder isn't powerful enough for a distributed framework such as Spark. Parallel executions can become sequential, so some of the performance comparison examples will not give you the correct numbers.
Run the tutorial using docker
Alternatively, you should get decent performance if running its docker image on your own machine:
docker run -p 8888:8888 fugueproject/tutorials:latest
Installation
pip install fugue
Fugue has these extras:
- sql: to support Fugue SQL
- spark: to support Spark as the ExecutionEngine
- dask: to support Dask as the ExecutionEngine
For example a common use case is:
pip install fugue[sql,spark]
Contributing
Feel free to message us on Slack. We also have contributing instructions.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file fugue-0.5.1.dev1.tar.gz
.
File metadata
- Download URL: fugue-0.5.1.dev1.tar.gz
- Upload date:
- Size: 284.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.7.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9553cc1e75143752780bd49945c228cc4ac20e5d90d40acf913e4acd8bf54d1c |
|
MD5 | 50663faa14084da3d0a99200308e31c2 |
|
BLAKE2b-256 | 04fa835dfa9b0516ecd8104a046d8c09a5a20fea88150d676f4497402f881a2a |
File details
Details for the file fugue-0.5.1.dev1-py3-none-any.whl
.
File metadata
- Download URL: fugue-0.5.1.dev1-py3-none-any.whl
- Upload date:
- Size: 349.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.7.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9386e7bb9ce7030ed427040648e1a0048bed0f550ee1382f092d023cb7951b00 |
|
MD5 | ea54ce9c354552fcb903d537ecad9d98 |
|
BLAKE2b-256 | 7ce89c7686952376dca6916a0dfae023f7321489f997db0cf6ffe100be5fce09 |