Instructions for cross-compiling Ballista to the Raspberry Pi#263
Merged
andygrove merged 6 commits intoapache:masterfrom May 17, 2021
Merged
Instructions for cross-compiling Ballista to the Raspberry Pi#263andygrove merged 6 commits intoapache:masterfrom
andygrove merged 6 commits intoapache:masterfrom
Conversation
Codecov Report
@@ Coverage Diff @@
## master #263 +/- ##
==========================================
- Coverage 76.81% 75.72% -1.09%
==========================================
Files 133 143 +10
Lines 23295 23840 +545
==========================================
+ Hits 17895 18054 +159
- Misses 5400 5786 +386
Continue to review full report at Codecov.
|
alamb
approved these changes
May 16, 2021
Contributor
alamb
left a comment
There was a problem hiding this comment.
I tried out the instructions for cross compilation and they worked well. I don't have a Raspberry Pi so I can't actually test out what I built, but the instructions seems to work 👍
Member
Author
|
For the record, I am now able to run benchmarks against the 100GB data set on my Pi Kubernetes cluster: apiVersion: v1
kind: Pod
metadata:
name: tpch
namespace: default
spec:
containers:
- image: andygrove/ballista-arm64
command: [ "/tpch",
"benchmark",
"--query=1",
"--path=/mnt/tpch/parquet-sf100-partitioned/",
"--format=parquet",
"--concurrency=24",
"--iterations=1",
"--debug",
"--host=ballista-scheduler",
"--port=50050"]
imagePullPolicy: Always
name: tpch
volumeMounts:
- mountPath: /mnt/tpch/parquet-sf100-partitioned/
name: data
restartPolicy: Never
volumes:
- name: data
persistentVolumeClaim:
claimName: data-pv-claimResults |
Member
|
That is brutal 🤯 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Which issue does this PR close?
Closes #247 .
Rationale for this change
Raspberry Pi's are a fun and relatively inexpensive way to experiment with truly distributed computing.
What changes are included in this PR?
Additional content for the user guide.
Are there any user-facing changes?
No.