[demos] Serve the batch-analytics TPC-H data from a live bucket - #6781
Merged
Conversation
mihaibudiu
reviewed
Jul 31, 2026
| @@ -0,0 +1,306 @@ | |||
| #!/usr/bin/env -S uv run --script | |||
Contributor
Author
There was a problem hiding this comment.
we didnt have a script to generate the dataset
mihaibudiu
approved these changes
Jul 31, 2026
blp
approved these changes
Jul 31, 2026
AWS disabled s3://batchtofeldera along with the account that owned it, so every read answers AllAccessDisabled. That breaks the accelerating-batch-analytics demo for anyone who opens it, and fails the packaged-demo step in CI. Point the demo, the TPC-H workload tests, and the batch use-case docs at s3://feldera-demo-datasets/tpch/sf0.1 in us-west-1, a bucket provisioned as code that allows anonymous reads. The replacement carries the same scale factor as the old bucket, so the record counts in the tutorial stay as they were. Add scripts/tpch_demo_data.py to regenerate the tables from the official TPC-H dbgen. Signed-off-by: Gerd Zellweger <mail@gerdzellweger.com>
gz
force-pushed
the
demo-data-tpch-bucket
branch
from
July 31, 2026 23:07
0ad46e5 to
74ca430
Compare
gz
enabled auto-merge
July 31, 2026 23:09
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.
AWS disabled
s3://batchtofelderaalong with the account that owned it, so everyread answers
403 AllAccessDisabled. That breaks theaccelerating-batch-analyticspackaged demo for anyone who opens it in the Web Console, and fails the
"Validate and run packaged demos" step in CI.
This points the demo, the TPC-H workload tests, and the batch use-case docs at
s3://feldera-demo-datasets/tpch/sf0.1inus-west-1.The bucket is provisioned as code with anonymous
GetObjectandListBucket, soreaders still need no credentials and
aws_skip_signaturekeeps working.The replacement carries the same scale factor as the old bucket, so the record
counts in the tutorial are unchanged (lineitem 601k, customer 15.0k, ...).
scripts/tpch_demo_data.pyregenerates the data from the official TPC-Hdbgen(v2.17.3). Scale factors 0.01, 0.1 and 1 are published under
tpch/sf<N>/.Describe Manual Test Plan
dbgenand confirmed thecanonical TPC-H cardinalities (sf1: lineitem 6,001,215, orders 1,500,000;
sf0.1: lineitem 600,572, customer 15,000).
CREATE TABLE:integer,decimal(15,2),date,string, with onlyn_commentandr_commentnullable.
environment, mirroring how the connector reads them.
LISTandGETover plain HTTPS return200.Checklist
Breaking Changes?
Describe Incompatible Changes
None. The demo's SQL schema and the tutorial's record counts are unchanged; only
the bucket the data is served from differs.