feat: add infino to clickbench - #1129
Open
naman-modi wants to merge 2 commits into
Open
Conversation
naman-modi
had a problem deploying
to
benchmark-approval
July 28, 2026 14:21 — with
GitHub Actions
Error
naman-modi
temporarily deployed
to
benchmark-approval
July 28, 2026 16:17 — with
GitHub Actions
Inactive
naman-modi
marked this pull request as ready for review
July 28, 2026 16:24
Author
|
Disclaimer: I work at Infino AI. |
Author
|
Hey @alexey-milovidov / @rschu1ze, opened this to add infino. Would appreciate a review whenever you get a chance, happy to change anything. Thanks! |
Contributor
|
The run of Logs:
|
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.
Adds infino, a Rust engine that runs SQL, full-text (BM25), and vector search over one copy of your data on object storage. The data is spec-compliant Parquet on S3, Azure, GCS, or local disk, so anything that reads Parquet can read it. This entry runs the SQL path.
Some Pointers:
infinocrate (0.1.10), with a committed lockfile and a plain release build, so a fresh VM reproduces it with nothing else to install.queries.sqlis the same as thedatafusionentry: the two type fixes datafusion does inline (day count to DATE, binary to UTF-8) are done at load time instead.startopens the table once and serves it over a unix socket,queryis a thin client, andBENCH_RESTARTABLE=yesrestarts it before each cold run. That meets the true-cold rule (cold first run, warm second and third), so there is nolukewarm-cold-runtag.loadincludes infino compacting into its superfile format (256 MB segments). That is part of writing the data and is counted inload_time, not an optimize slipped in before the queries.Ran the whole thing on a fresh c6a.4xlarge at 100M rows, built from crates.io: load, then the 43-query sweep with row counts checked. Hot sum 33.7s.