-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Assets: implement migration for old uploaded files #12326
Labels
Comments
@etj I guess that keeping the old files inside the previous location won't break GeoNode and Geoserer, right? |
@giohappy
|
mattiagiupponi
added a commit
that referenced
this issue
Jun 26, 2024
mattiagiupponi
added a commit
that referenced
this issue
Jun 26, 2024
12 tasks
mattiagiupponi
added a commit
that referenced
this issue
Jun 26, 2024
mattiagiupponi
added a commit
that referenced
this issue
Jul 11, 2024
12 tasks
12 tasks
mattiagiupponi
added a commit
that referenced
this issue
Jul 24, 2024
12 tasks
giohappy
pushed a commit
that referenced
this issue
Sep 24, 2024
…2411) * [Fixes #12124] GNIP 100: Assets (#12335) * [Fixes #12124] GNIP 100: Assets --------- Co-authored-by: etj <e.tajariol@gmail.com> * [Fixes #12226] Directory assets (#12337) [Fixes #12226] Directory assets --------- Co-authored-by: etj <e.tajariol@gmail.com> * [Fixes #12341] Asset download handler and link generator (#12343) * [Fixes #12341] Download handler fix * [Fixes #12341] Assets: link generation (#12342) --------- Co-authored-by: Emanuele Tajariol <etj@geo-solutions.it> * [Fixes #12326] Assets: implement migration for old uploaded files * [Fixes #12326] Assets: implement migration for old uploaded files * [Fixes #12326] Assets: implement migration for old uploaded files * [Fixes #12326] rollback requirements --------- Co-authored-by: etj <e.tajariol@gmail.com> Co-authored-by: Emanuele Tajariol <etj@geo-solutions.it>
giohappy
added a commit
that referenced
this issue
Sep 24, 2024
…2411) (#12611) * [Fixes #12124] GNIP 100: Assets (#12335) * [Fixes #12124] GNIP 100: Assets --------- * [Fixes #12226] Directory assets (#12337) [Fixes #12226] Directory assets --------- * [Fixes #12341] Asset download handler and link generator (#12343) * [Fixes #12341] Download handler fix * [Fixes #12341] Assets: link generation (#12342) --------- * [Fixes #12326] Assets: implement migration for old uploaded files * [Fixes #12326] Assets: implement migration for old uploaded files * [Fixes #12326] Assets: implement migration for old uploaded files * [Fixes #12326] rollback requirements --------- Co-authored-by: mattiagiupponi <51856725+mattiagiupponi@users.noreply.github.com> Co-authored-by: etj <e.tajariol@gmail.com> Co-authored-by: Emanuele Tajariol <etj@geo-solutions.it>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Continuation of #12124
Some old installations have the uploaded data into
/data
.The recent importer stores the uploaded data into
.../STATIC_ROOT/uploaded
, and GeoServer publishes the geotiff from that directoryThe final migration to Assets will store the files in
.../STATIC_ROOT/assets
, and GeoServer shall publish the files from there.In order to clean up such obsolete setups, a migration script could be done that:
uploaded/
toassets/
(first checks if all the files are intouploaded/
)LocalAsset.location
fieldSuch a migration script should only be run by hand since we do not know if such files are also used for other purposes outside GeoNode, so the admin can choose to run it or not.
The text was updated successfully, but these errors were encountered: