MCPcopy Index your code
hub / github.com/constellation-rs/amadeus

github.com/constellation-rs/amadeus @v0.4.3

Chat with this repo
repository ↗ · DeepWiki ↗ · release v0.4.3 ↗ · + Follow
2,427 symbols 6,130 edges 182 files 539 documented · 22% updated 4y agov0.4.3 · 2021-05-20★ 47926 open issues
What it actually does AI analysis from the code graph — generated when you open this
loading…
README
<img alt="Amadeus" src="https://raw.githubusercontent.com/constellation-rs/amadeus/master/logo.svg?sanitize=true" width="450" />







Harmonious distributed data processing & analysis in Rust







<a href="https://crates.io/crates/amadeus"><img src="https://img.shields.io/crates/v/amadeus.svg?maxAge=86400" alt="Crates.io" /></a>
<a href="https://github.com/constellation-rs/amadeus/raw/v0.4.3/LICENSE.txt"><img src="https://img.shields.io/crates/l/amadeus.svg?maxAge=2592000" alt="Apache-2.0 licensed" /></a>
<a href="https://dev.azure.com/alecmocatta/amadeus/_build?definitionId=26"><img src="https://dev.azure.com/alecmocatta/amadeus/_apis/build/status/tests?branchName=master" alt="Build Status" /></a>







<a href="https://docs.rs/amadeus">📖 Docs</a> | <a href="https://constellation.rs/amadeus">🌐 Home</a> | <a href="https://constellation.zulipchat.com/#narrow/stream/213231-amadeus">💬 Chat</a>

Amadeus provides:

  • Distributed streams: like Rayon's parallel iterators, but distributed across a cluster.
  • Data connectors: to work with CSV, JSON, Parquet, Postgres, S3 and more.
  • ETL and Data Science tooling: focused on streaming processing & analysis.

Amadeus is a batteries-included, low-level reusable building block for the Rust Distributed Computing and Big Data ecosystems.

Principles

  • Fearless: no data races, no unsafe, and lossless data canonicalization.
  • Make distributed computing trivial: running distributed should be as easy and performant as running locally.
  • Data is gradually typed: for maximum performance when the schema is known, and flexibility when it's not.
  • Simplicity: keep interfaces and implementations as simple and reliable as possible.
  • Reliability: minimize unhandled errors (including OOM), and only surface errors that couldn't be handled internally.

Why Amadeus?

Clean & Scalable applications

By design, Amadeus encourages you to write clean and reusable code that works, regardless of data scale, locally or distributed across a cluster. Write once, run at any data scale.

Community

We aim to create a community that is welcoming and helpful to anyone that is interested! Come join us on our Zulip chat to:

  • get Amadeus working for your use case;
  • discuss direction for the project;
  • find good issues to get started with.

Compatibility out of the box

Amadeus has deep, pluggable, integration with various file formats, databases and interfaces:

Data format Source Destination
CSV
JSON
XML 👐
Parquet 🔨
Avro 🔨
PostgreSQL 🔨
HDF5 👐
Redshift 👐
CloudFront Logs
Common Crawl
S3 🔨
HDFS 👐 👐

✔ = Working

🔨 = Work in Progress

👐 = Requested: check out the issue for how to help!

Performance

Amadeus is routinely benchmarked and provisional results are very promising:

  • A 1.5x to 17x speedup reading Parquet data compared to the official Apache Arrow parquet crate with these benchmarks.

Runs Everywhere

Amadeus is a library that can be used on its own as parallel threadpool, or with Constellation as a distributed cluster.

Constellation is a framework for process distribution and communication, and has backends for a bare cluster (Linux or macOS), a managed Kubernetes cluster, and more in the pipeline.

Examples

This will read the Parquet partitions from the S3 bucket, and print the 100 most frequently occuring URLs.

use amadeus::prelude::*;
use amadeus::data::{IpAddr, Url};
use std::error::Error;

#[derive(Data, Clone, PartialEq, Debug)]
struct LogLine {
    uri: Option<String>,
    requestip: Option<IpAddr>,
}

#[tokio::main]
async fn main() -> Result<(), Box<dyn Error>> {
    let pool = ThreadPool::new(None, None)?;

    let rows = Parquet::new(ParquetDirectory::new(S3Directory::new_with(
        AwsRegion::UsEast1,
        "us-east-1.data-analytics",
        "cflogworkshop/optimized/cf-accesslogs/",
        AwsCredentials::Anonymous,
    )))
    .await?;

    let top_pages = rows
        .par_stream()
        .map(|row: Result<LogLine, _>| {
            let row = row.unwrap();
            (row.uri, row.requestip)
        })
        .most_distinct(&pool, 100, 0.99, 0.002, 0.0808)
        .await;

    println!("{:#?}", top_pages);
    Ok(())
}

This is typed, so faster, and it goes an analytics step further also, prints top 100 URLs by distinct IPs logged.

See the same example but with data dynamically typed.

use amadeus::prelude::*;
use std::error::Error;

#[tokio::main]
async fn main() -> Result<(), Box<dyn Error>> {
    let pool = ThreadPool::new(None, None)?;

    let rows = Parquet::new(ParquetDirectory::new(S3Directory::new_with(
        AwsRegion::UsEast1,
        "us-east-1.data-analytics",
        "cflogworkshop/optimized/cf-accesslogs/",
        AwsCredentials::Anonymous,
    )))
    .await?;

    let top_pages = rows
        .par_stream()
        .map(|row: Result<Value, _>| {
            let row = row.ok()?.into_group().ok()?;
            row.get("uri")?.clone().into_url().ok()
        })
        .filter(|row| row.is_some())
        .map(Option::unwrap)
        .most_frequent(&pool, 100, 0.99, 0.002)
        .await;

    println!("{:#?}", top_pages);
    Ok(())
}

What about loading this data into Postgres? This will create and populate a table called "accesslogs".

```rust,ignore use amadeus::prelude::*; use std::error::Error;

[tokio::main]

async fn main() -> Result<(), Box> { let pool = ThreadPool::new(None, None)?;

let rows = Parquet::new(ParquetDirectory::new(S3Directory::new_with(
    AwsRegion::UsEast1,
    "us-east-1.data-analytics",
    "cflogworkshop/optimized/cf-accesslogs/",
    AwsCredentials::Anonymous,
)))
.await?;

// Note: this isn't yet implemented!
rows.par_stream()
    .pipe(Postgres::new("127.0.0.1", PostgresTable::new("accesslogs")));

Ok(())

}


## Running Distributed

Operations can run on a parallel threadpool or on a distributed process pool.

Amadeus uses the [**Constellation**](https://github.com/constellation-rs/constellation) framework for process distribution and communication. Constellation has backends for a bare cluster (Linux or macOS), and a managed Kubernetes cluster.

```rust
use amadeus::dist::prelude::*;
use amadeus::data::{IpAddr, Url};
use constellation::*;
use std::error::Error;

#[derive(Data, Clone, PartialEq, Debug)]
struct LogLine {
    uri: Option<String>,
    requestip: Option<IpAddr>,
}

fn main() -> Result<(), Box<dyn Error>> {
    init(Resources::default());

    // #[tokio::main] isn't supported yet so unfortunately setting up the Runtime must be done explicitly
    tokio::runtime::Builder::new()
        .threaded_scheduler()
        .enable_all()
        .build()
        .unwrap()
        .block_on(async {
            let pool = ProcessPool::new(None, None, None, Resources::default())?;

            let rows = Parquet::new(ParquetDirectory::new(S3Directory::new_with(
                AwsRegion::UsEast1,
                "us-east-1.data-analytics",
                "cflogworkshop/optimized/cf-accesslogs/",
                AwsCredentials::Anonymous,
            )))
            .await?;

            let top_pages = rows
                .dist_stream()
                .map(FnMut!(|row: Result<LogLine, _>| {
                    let row = row.unwrap();
                    (row.uri, row.requestip)
                }))
                .most_distinct(&pool, 100, 0.99, 0.002, 0.0808)
                .await;

            println!("{:#?}", top_pages);
            Ok(())
        })
}

Getting started

todo

Examples

Take a look at the various examples.

Contribution

Amadeus is an open source project! If you'd like to contribute, check out the list of “good first issues”. These are all (or should be) issues that are suitable for getting started, and they generally include a detailed set of instructions for what to do. Please ask questions and ping us on our Zulip chat if anything is unclear!

License

Licensed under Apache License, Version 2.0, (LICENSE.txt or http://www.apache.org/licenses/LICENSE-2.0).

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be licensed as above, without any additional terms or conditions.

Extension points exported contracts — how you extend this code

AsBytes (Interface)
Converts an instance of data type to a slice of bytes as `u8`. [6 implementers]
amadeus-parquet/src/internal/data_type.rs
UnionAssign (Interface)
Union `Self` with `Rhs` in place. [9 implementers]
amadeus-streaming/src/traits.rs
DowncastFrom (Interface)
This trait lets one downcast a generic type like [`Value`] to a specific type like `u64`. It exists, rather than for ex [32 …
amadeus-types/src/lib.rs
Reducer (Interface)
(no doc) [14 implementers]
amadeus-core/src/par_sink.rs
PostgresData (Interface)
(no doc) [20 implementers]
amadeus-postgres/src/lib.rs
Source (Interface)
(no doc) [6 implementers]
src/source.rs
Data (Interface)
(no doc) [7 implementers]
src/data.rs
SerdeData (Interface)
(no doc) [6 implementers]
amadeus-serde/src/lib.rs

Core symbols most depended-on inside this repo

map
called by 332
amadeus-types/src/list.rs
build
called by 127
amadeus-parquet/src/internal/schema/types.rs
clone
called by 124
amadeus-aws/src/lib.rs
push
called by 119
amadeus-parquet/src/internal/util/memory.rs
len
called by 85
amadeus-parquet/src/internal/util/io.rs
as_ref
called by 70
amadeus-parquet/src/internal/util/memory.rs
iter
called by 67
amadeus-core/src/file.rs
len
called by 61
amadeus-parquet/src/internal/encodings/rle.rs

Shape

Method 1,249
Function 601
Class 442
Interface 69
Enum 66

Languages

Rust100%

Modules by API surface

amadeus-types/src/value.rs120 symbols
amadeus-parquet/src/internal/record/schemas.rs111 symbols
amadeus-parquet/src/internal/schema/types.rs79 symbols
amadeus-parquet/src/internal/column/writer.rs67 symbols
amadeus-parquet/src/internal/encodings/decoding.rs64 symbols
amadeus-parquet/src/internal/format.rs63 symbols
amadeus-parquet/src/internal/file/metadata.rs63 symbols
amadeus-parquet/src/internal/util/bit_util.rs62 symbols
amadeus-parquet/src/internal/encodings/encoding.rs57 symbols
amadeus-types/src/time.rs56 symbols
amadeus-parquet/src/internal/file/properties.rs48 symbols
amadeus-parquet/src/internal/record/reader.rs41 symbols

Datastores touched

alecDatabase · 1 repos

For agents

$ claude mcp add amadeus \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact