-
Notifications
You must be signed in to change notification settings - Fork 325
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
v2.0.0-rc.0 #68
Comments
The highlights of this release are:
Upgrading Plausible Analytics to v2.0
Update image tagIn your plausible:
- image: plausible/analytics:v1.5.1
+ image: plausible/analytics:v2.0.0-rc.0 and restart the container $ cd hosting
$ docker compose stop plausible
$ docker compose rm plausible
$ docker compose up -d This will boot up the new version of the app. If you open the dashboards now, you wouldn't see any past metrics. This is expected as Run data migration
Connect to the running $ cd hosting
$ docker compose exec plausible bin/plausible rpc Plausible.DataMigration.NumericIDs.run You can attempt this migration multiple times (unless you perform the next step). Drop v1 tables (optional)Once you verify the migration went well, the old tables can be dropped. It's easiest to use $ ch hosting
$ docker compose exec plausible_events_db clickhouse-client :) \c plausible_events_db
:) show tables;
:) drop table events;
:) drop table sessions; See https://clickhouse.com/docs/en/operations/server-configuration-parameters/settings#max-table-size-to-drop for how to drop tables with more than 50GB of data. Enable automatic MaxMind GeoLite2 updates (optional)In your + MAXMIND_LICENSE_KEY=LNpsJCCKPis6XvBP
+ MAXMIND_EDITION=GeoLite2-City Now you can remove any other volumes and services used to download, store, and update geolocation databases. ChangelogFollowing changes have been made since v1.5: Added
Fixed
Changed
Removed
|
This PR removes all the leftovers and alternative code branching after v2 migration. The self-hosted release is being drafted at: plausible/community-edition#68 Refs: - #2865 - #2825 - #2780
* Clean up after V2 migration This PR removes all the leftovers and alternative code branching after v2 migration. The self-hosted release is being drafted at: plausible/community-edition#68 Refs: - #2865 - #2825 - #2780 * !fixup
|
This issue is used to track the next self-hosted release.
The text was updated successfully, but these errors were encountered: