Igor Lukanin

Results 327 comments of Igor Lukanin

Hi @ZiggiZagga 👋 Thanks for your proposal. It would be really great if you can elaborate on your proposal: add a data model code example that demonstrated the use of...

Hi @coutouly 👋 Thanks for raising this! In case you'd like to work on a driver, you might find these contribution guidelines helpful: https://github.com/cube-js/cube/blob/master/CONTRIBUTING.md#contributing-database-drivers

Hi @w1992wishes 👋 Thanks for reporting this! I would say that this is more or less expected given the implementation of the SQL API. Analyzing SQL queries is quite a...

There's some work-in-progress on the SQL API performance and it's priority but I also have to admit that it would probably always be slower that the REST API, even a...

@w1992wishes There's no particular timeline that I can share. However, the team is actively working on performance improvements to the SQL API. You can expect some updates in the coming...

@leopedrassoli Thanks for asking! I'm sorry if I miss anything here but where is this `test_connection.py` file coming from? And what is the issue, exactly?

> requirements.txt > `SQLAlchemy==2.0.29` @leopedrassoli I believe you need to add a PostgreSQL driver to the requirements, like `psycopg2`: https://docs.sqlalchemy.org/en/20/dialects/postgresql.html#dialect-postgresql I believe that Python function silently crashes because of that,...

@leopedrassoli Are you self-hosting Cube or using Cube Cloud?

Hi @kriKinesso 👋 My suspicion is that referencing multiple (too many?) pre-aggregations somehow breaks the query matching resolution: ``` rollups: [ CUBE.main, client.main, client_agency.main, agency.main, ], ``` Could you please...

> In my case I have to use pre-aggregations for this sort of queries, I absolutely can not allow users to query the datasource directly. If I remove any of...