Ishan Anand
Ishan Anand
Hi Jules, thanks for replying. > We started reworking the Python package to use Socket.io, meaning that we can have python code reacting to events in the interface. I think...
Thanks for looking, done.
Thanks, done.
I wanted to bump this feature request up. For workflows, while the result is retained for a configurable duration, the invocation journal is immediately removed. A configuration parameter to delay...
@ischaojie - thanks for the repro attempt! I updated Rye to 0.31 (from 0.29) and don't see the error on Linux now either. Earlier, `rye add dotenv` (dotenv is the...
I had to manually edit the pyproject toml. Though, `uv` has come along a lot further now, maybe more useful to replace `rye` with it.
I traced the issue to this method call when SQLMesh loads models - https://github.com/TobikoData/sqlmesh/blob/e27daf54c19ba1c3d0fe78a86f5b928b3795630e/sqlmesh/core/model/definition.py#L840 Given the SQL-python model specifies its dependency using the "depends_on" arg, sqlmesh doesn't need to render...
This looks a bit intractable. Looking at all the tests that go through the above code path (derive model dependencies by rendering the query when the depends_on arg is already...
https://sqlmesh.readthedocs.io/en/stable/concepts/models/python_models/#dependencies Documentation for python models says - specifying `depends_on` takes precedence over SQLmesh resolving the dependencies. Is it okay to extend this property to SQL-models-defined-in-python? Other options dont feel great....
Thanks. Toby suggested the same thing but the schema of my actual model really depends on the column types/comments. Returning a dummy query earlier (`SELECT 1` or None), and the...