cargo-semver-checks VS octosql-plugin-random_data

Compare cargo-semver-checks vs octosql-plugin-random_data and see what are their differences.

cargo-semver-checks

Scan your Rust crate for semver violations. (by obi1kenobi)
Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
cargo-semver-checks octosql-plugin-random_data
18 1
901 0
- -
9.3 0.0
7 days ago about 1 year ago
Rust Go
Apache License 2.0 Mozilla Public License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

cargo-semver-checks

Posts with mentions or reviews of cargo-semver-checks. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-09-07.

octosql-plugin-random_data

Posts with mentions or reviews of octosql-plugin-random_data. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-07-14.
  • OctoSQL allows you to join data from different sources using SQL
    13 projects | news.ycombinator.com | 14 Jul 2022
    Hey!

    > I think the main fundamental difference is that this wants all of the data upfront in a data file.

    Absolutely not! Moreover, OctoSQL can push down predicates to databases so that it only has to download a small subset of the table, if the datasource and query allow it.

    > Very easy to model HTTP APIs as a table.

    "Very easy" is relative, but you can take a look at the random_data[0] datasource which is exactly this. I'm also planning to add a GitHub datasource fairly soon. That said, there is Steampipe[1] for which this is the main use case afaik (hitting API's and exposing them as tables through Postgres FWD's written in Go), so it might be a smoother and more polished experience. There's also tons of plugins already available for it.

    > Easy to model basically anything as a table for example files on my filesystem.

    Yep, definitely. That's the idea behind OctoSQL. Strive to create a tool for easily exposing anything through SQL (like your machine's processes list, an API, and join that with a file, or database). There's still lot's of documentation work left to do though, in order to make the plugin authoring experience easier.

    > A decent query planner so that I can avoid expensive things (like API calls) if I can determine if I need the object based on something cheaper (like a local disk access).

    Probably depends on the use-case, and it sometimes needs you to be fairly explicit, but OctoSQL does in fact do that. It will push down predicates to underlying databases, which means joining something small with something very big (while only taking very small amounts of the latter) can be very fast with LOOKUP JOIN's.

    > I want something that is easy to extend to sources that are possibly non-listable or at the very least I don't want to have all of the data available.

    Doable. An example of this is the `plugins.available_versions` table[2]. It requires you to provide the plugin name as a predicate, as the versions need to be downloaded from the plugin's own repository (and listing all plugin repositories on each query isn't really what you want to be doing). You can also LOOKUP JOIN with the `plugins.available_plugins` table if that is indeed what you want.

    [0]: https://github.com/cube2222/octosql-plugin-random_data

    [1]: https://steampipe.io

    [2]: https://github.com/cube2222/octosql/blob/main/datasources/pl...

What are some alternatives?

When comparing cargo-semver-checks and octosql-plugin-random_data you can also consider the following projects:

prql-query - Query and transform data with PRQL

go-sqlite3-stdlib - A standard library for mattn/go-sqlite3 including best-effort date parsing, url parsing, math/string functions, and stats aggregation functions

argfile - Load additional CLI args from file

octosql-plugin-postgres

noria - Fast web applications through dynamic, partially-stateful dataflow

dsq - Commandline tool for running SQL queries against JSON, CSV, Excel, Parquet, and more.

ddl-diff - Generates SQL migrations by parsing and diffing DDL

steampipe - Zero-ETL, infinite possibilities. Live query APIs, code & more with SQL. No DB required.

rust-semverver - Automatic checking for semantic versioning in library crates

materialize - The data warehouse for operational workloads.