From 0c527311884c10712ead16befa58269c7fc78f94 Mon Sep 17 00:00:00 2001 From: Trevor <30731171+tbar4@users.noreply.github.com> Date: Wed, 16 Oct 2024 15:55:10 -0700 Subject: [PATCH] #1086 solve examples errors (#1087) * updated documentation in both examples repo and docs to a working version of running Ballista from the CLI * updated documentation in both examples repo and docs to a working version of running Ballista from the CLI --------- Co-authored-by: Trevor Barnes --- docs/source/user-guide/deployment/quick-start.md | 4 ++-- examples/README.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/source/user-guide/deployment/quick-start.md b/docs/source/user-guide/deployment/quick-start.md index cbb78476f..d94de0475 100644 --- a/docs/source/user-guide/deployment/quick-start.md +++ b/docs/source/user-guide/deployment/quick-start.md @@ -61,7 +61,7 @@ The examples can be run using the `cargo run --bin` syntax. Open a new terminal ```bash cd examples -cargo run --release --bin sql +cargo run --release --example remote-sql ``` ### Source code for distributed SQL example @@ -108,7 +108,7 @@ async fn main() -> Result<()> { ```bash cd examples -cargo run --release --bin dataframe +cargo run --release --example remote-dataframe ``` ### Source code for distributed DataFrame example diff --git a/examples/README.md b/examples/README.md index 60e43e731..4eaaac1e2 100644 --- a/examples/README.md +++ b/examples/README.md @@ -90,7 +90,7 @@ The examples can be run using the `cargo run --bin` syntax. ## Distributed SQL Example ```bash -cargo run --release --bin sql +cargo run --release --example remote-sql ``` ### Source code for distributed SQL example @@ -136,7 +136,7 @@ async fn main() -> Result<()> { ## Distributed DataFrame Example ```bash -cargo run --release --bin dataframe +cargo run --release --example remote-dataframe ``` ### Source code for distributed DataFrame example