Skip to content

Instantly share code, notes, and snippets.

@timvw
Last active January 15, 2023 09:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save timvw/01535e05ed3165b726aa4b71b131cdbd to your computer and use it in GitHub Desktop.
Save timvw/01535e05ed3165b726aa4b71b131cdbd to your computer and use it in GitHub Desktop.
Ballista session
# launch cli and connect to scheduler
docker run \
--network host \
--rm -it \
-v /Users/timvw:/Users/timvw \
apache/arrow-ballista-cli:0.10.0 --host 127.0.0.1 --port 50050
create external table test stored as parquet location '/Users/timvw/Desktop/test.parquet';
select * from test limit 10;
# launch scheduler, ui and executor in single container
docker run \
--network host \
--rm -it \
-v /Users/timvw:/Users/timvw \
ghcr.io/apache/arrow-ballista-standalone:0.10.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment