-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Instructions for cross-compiling Ballista to the Raspberry Pi #263
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.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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 👍
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-claim
Results
|
That is brutal 🤯 |
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.