how is this compared to https://shadowtraffic.io/
Show HN: DDL to Data – Generate realistic test data from SQL schemas
11–20 of 34 posts
Re: Show HN: DDL to Data – Generate realistic test data from SQL schemas
#12I appreciate this product existing, but the row limits in each tier seem very constrained.
Thanks for the feedback! Honestly, we're still dialing in the tiers, what row limits would feel reasonable to you for your use case? Always helpful to hear what people actually need.
Re: Show HN: DDL to Data – Generate realistic test data from SQL schemas
#13Reminds me a bit of Snaplet before it embarked on its incredible journey to get acquired by Supabase and shut down. I like the concept but the painpoint has never been around creating realistic looking emails and such like, but creating data that is realistic in terms of the business domain and in terms of volume.
Re: Show HN: DDL to Data – Generate realistic test data from SQL schemas
#14Earlier quoted context omitted.
Thanks for the feedback! Honestly, we're still dialing in the tiers, what row limits would feel reasonable to you for your use case? Always helpful to hear what people actually need.
To be honest, I think 1M rows is starting point for any paid plan. Any data model of minimal complexity explodes fast, especially with cascading one-to-many relationships. If anything, it may make more sense to have a table-level, rather than a global, limit. Or put the limit on "trunk" tables.
Re: Show HN: DDL to Data – Generate realistic test data from SQL schemas
#15Re: Show HN: DDL to Data – Generate realistic test data from SQL schemas
#16Congrats on being launchable! I've written seed data scripts a number of times, so I get the need. How do you think about creating larger amounts of data? E.g., I'm building a statistical product where the seed data needs to be 1M rows; performance differences between implementations start to matter.
Thanks! At 1M rows, I think a few things matter: Streaming: Can't hold it all in memory. Generate in chunks, write, release, repeat. Format choice: Parquet with row groups is fast and compresses well. SQL needs batched inserts (~1000/statement). Direct DB writes via COPY skip serialization entirely is usually fastest. FK relationships: The real bottleneck. Pre-generate parent PKs, hold in memory, reference for childr…
Re: Show HN: DDL to Data – Generate realistic test data from SQL schemas
#17does it handle skewed distributions? faker's always been useless for this - like, your test data ends up with everyone having 5 orders when real data is all long tail
Re: Show HN: DDL to Data – Generate realistic test data from SQL schemas
#18Reminds me a bit of Snaplet before it embarked on its incredible journey to get acquired by Supabase and shut down. I like the concept but the painpoint has never been around creating realistic looking emails and such like, but creating data that is realistic in terms of the business domain and in terms of volume.
Appreciate the Snaplet comparison, they were doing good work. You're right that realistic looking strings are the easy part. We're focused on relational integrity first (FKs, constraints, realistic cardinality), but business domain logic is the next layer. What kinds of rules would be useful for you? Things like weighted distributions, time-based patterns, conditional relationships?
If one were be able to use metrics as source then, depending on the quality of the metrics, it might be possible to distribute data in a manner similar to what's observed in production? You know, some users that are far more active than others, for example. Considering a major issue with testing is that you can't accurately benchmark changes or migrations based on a staging environment that is 1% the size of your prod one, that would be a huge win I think even if the data is, for the most part, nonsensical. As long as referential integrity is intact the specifics matter less.
Domain specific stuff is harder to describe I think. For example, in my setup I'd want seeds of valid train journeys over multiple legs. There's a lot of detail in that where the shortcut is basically to try and source it from prod in some way.
Re: Show HN: DDL to Data – Generate realistic test data from SQL schemas
#19Earlier quoted context omitted.
Appreciate the Snaplet comparison, they were doing good work. You're right that realistic looking strings are the easy part. We're focused on relational integrity first (FKs, constraints, realistic cardinality), but business domain logic is the next layer. What kinds of rules would be useful for you? Things like weighted distributions, time-based patterns, conditional relationships?
The realistic cardinality is actually a good start (the problem with things like using Faker for DB seeds being that everything is entirely too random). If one were be able to use metrics as source then, depending on the quality of the metrics, it might be possible to distribute data in a manner similar to what's observed in production? You know, some users that are far more active than others, for example. Consideri…
Re: Show HN: DDL to Data – Generate realistic test data from SQL schemas
#20Earlier quoted context omitted.
The realistic cardinality is actually a good start (the problem with things like using Faker for DB seeds being that everything is entirely too random). If one were be able to use metrics as source then, depending on the quality of the metrics, it might be possible to distribute data in a manner similar to what's observed in production? You know, some users that are far more active than others, for example. Consideri…
This is useful. What if you ran a CLI locally that extracts just the statistical profile from prod cardinality, relationship ratios, etc. and uploaded that? We'd never touch your database, you just hand us the metrics and we match the shape.