-
Notifications
You must be signed in to change notification settings - Fork 13
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
In Redwood, we should use the latest version of Clickhouse #30
Comments
It appears that the clickhouse Docker image has moved from https://hub.docker.com/r/yandex/clickhouse-server to https://hub.docker.com/r/clickhouse/clickhouse-server/ Yet, we cannot bump the clickhouse version in the current stable release. Otherwise we might break people's databases. This will only happen in the next release, Redwood, scheduled for June. We can make this change now in the nightly branch but will not be able to backport it to the master branch just yet. |
Issues with Latest Version (24.2.1.2248)
We've encountered issues with the latest version of ClickHouse server (24.2.1.2248) due to the deprecation of Live View feature (link). This has caused errors when attempting to access the course_enrollments table. Alternative: Refreshable Materialized View Workarounds
|
@regisb As mentioned earlier, Live views are deprecated. Are we good to proceed with implementing a normal view for |
I don't know. What do you suggest? Why? |
@regisb Given the deprecation of Live Views and the limitations of materialized views in updating existing data, implementing a Normal View seems like a more feasible approach. With a Normal View, we can efficiently track changes without encountering the limitations associated with Live Views or materialized views. |
That sounds great. I suggest you create a proof of concept to migrate a single live view to a normal view. This will help you decide if we should migrate all live views. |
@DawoudSheraz Error we got: Please share your thoughts or any additional considerations you believe are important to address moving forward. Thanks |
@FahadKhalid210 Alright, if we are already using Live view by providing staff access on certain tables, we can use that here. Though it would be good if we can document under what conditions do the staff users require access. |
PR #38 |
@FahadKhalid210 Does this require any further actions? Thanks |
@DawoudSheraz, @waseem-blended PR is merged. Closing this issue |
Hi,
I'm trying to add a new connector to a third party provider with cairn clickhouse. However, to make this work we need to upgrade the clickhouse server version used.
FROM docker.io/yandex/clickhouse-server:22.1.3.7
However, I checked this repo in docker hub and it seems like there are no latest image of clickhouse released. Please upgrade the version to latest.
The text was updated successfully, but these errors were encountered: