Replies: 2 comments 3 replies
-
Hey @guspower ! Given our currently limited resources, we have to be laser-focused on what we prioritize, so I think tasks that other tools do better than what we could implement in a reasonable time frame are not going to be a priority soon. But I think at least for observability, we should be able to get to something satisfying quickly. Would be happy to discuss it with you. Could you share with the community here the ways you solved the problems above in your existing projects ? |
Beta Was this translation helpful? Give feedback.
-
Sorry for resurrecting this old thread, I was interested to know if any decision or direction has been taken regarding job scheduling? Somewhat related and also, I would imagine, more technically challenging, is event listening. Not sure if that's something that's being considered? For me one of the missing components in SQLPage is automated logic processing like triggers and actions. I'm sure it wouldn't be trivial to implement but I thought I'd ask out of interest in the projects direction in general. |
Beta Was this translation helpful? Give feedback.
-
Hi,
I continue to enjoy using
SQLPage
. I thought I'd list a few possible ideas for the toolkit here to get peoples' opinions. These are not requests for features per se but rather points for discussion.These are ideas that have come up over the course of various projects, and the problems also apply to other tech stacks. For each, my questions are:
SQLPage
consider tackling this problem and, if soJob Management / Scheduling (
cron
)Problem: a task must be run regularly (e.g. a data refresh), scheduled for a specific time (e.g. close of business) or will be long-running / async and the eventual outcome captured.
Maybe
SQLPage
could use something liketokio-cron-scheduler
along with asqlpage_configuration/job
directory, or aschedule
component. The jobs would probably need to be held in a database table alongside_sqlx_migrations
(_sqlx_job
?) to handle multi-node scenarios.Observability (status/metrics)
Problem: many cloud operating environments now expect deployed systems to provide both status endpoints (for service availability checking) and metric endpoints (for load balancing, performance monitoring).
There are numerous "standards" in this space, but providing out-of-the-box observability might increase adoption of
SQLPage
.Precompilation / Includes
Problem: Currently the unit of work in
SQLPage
is a.sql
file which can contain one or more queries (including functions) and components. There are methods of reuse e.g.run_sql
, however many toolchains provide the ability (often via the build system) to run tasks before system launch that can be used to generate the final artefacts from templates - in our context this could be the ability to pull in custom includes that would cut down on duplication (often an issue with SQL queries).Build systems usually become an oubliette of pain and complexity because people stretch and pull them to do things they were never designed to do. However they may be a
SQLPage
way here of producing something simple and opinionated that ultimately makes codebases more maintainable.Testability
Problem: How do we help
SQLPage
developers ensure that their systems keep working as they add new functionality and make changes to existing data and code?I spend a lot of time designing systems to be easily testable. I am thinking about ways of making
SQLPage
more testable. A few ideas that spring to mind:SQLPage
against it.sql
files without UI, record query success and output, provide access to that data for later test assertionwiremock-rs
or similar to simulate playback from 3rd party endpoints used byfetch
Comment most welcome
Beta Was this translation helpful? Give feedback.
All reactions