-
Notifications
You must be signed in to change notification settings - Fork 265
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Declarative workflow breaks on YugabyteDB #3057
Comments
Hey, thank you for reporting this issue. But I have checked their document for syntax. It looks like Atlas still generates the correct syntax for
They don't mention anything special about the |
It should be valid, I agree. Since the error message mentions it, is it possible that |
However, in YugabyteDB, I quickly tested that, changing Atlas in a few places, and it seems to work. Please take a look at 8cce007 If adding such a change to Atlas makes sense, I can improve the patch as needed and post a PR here. |
Thanks, @a8m. I saw #2420 before, but it had no detail, plan, or code; it was just an unanswered question. So, I moved forward to making some specific progress here. I'm not sure how to take your last comment in the context of the patch I shared earlier. Should we pursue the idea of getting it in as a small change that at least makes it work? And again, I can offer time from my side to improve it in any way you believe it should be improved to get it integrated back. |
Adding support for a new database/driver is a quite complex process on our end. It requires us to integrate it into our CI pipelines and commit to supporting it across all types and syntax — including all our non-OSS parts. In addition, YugabyteDB does not support other PostgreSQL features that require more changes, and I believe an implementation for such driver should be different and not change the Postgres one. Also, our HCL cannot contain unsupported options, and Yugabyte would need to have different file extension in our editor plugins (VSCode, JetBrains), similar to what we have for MariaDB or MySQL. Currently, this is not on our upcoming tasks, as we haven’t received any customer requests for it. However, I believe we will eventually add it, and we may reach out to the Yugabyte team before we’ll start to work on it. Thank you for your suggestion, but I'll decline it at this stage. |
YugabyteDB default index access method is "lsm".
It is also required for primary key indexes.
Assuming a schema including any index like:
Or a primary key like:
During the automatic schema inspection phase, Atlas figures it needs to include
USING lsm
into eitherCREATE TABLE
orCREATE INDEX
statements like this:And this:
Then, when trying to execute the statements, it fails like this:
I guess the SQL parser chokes on the "lsm" index access method because it does not know anything about it, given it does not exist in PostgreSQL.
The text was updated successfully, but these errors were encountered: