-
-
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
Move ESA to K8s #2062
Comments
Notes on
|
Indexer startup issue: HashStore not yet initialized on fresh install, and indexers come up before metacat - so indexer HashStore lib tries to initialize it, but doesn't have write access: (should self-resolve after metacat pod is up and running, and has initialized HashStore)
|
Database related issuesMetacat startup error. Note that database name is "esa", not "metacat", although database.connectionURI=jdbc:postgresql://metacatesa-postgresql-hl/esa Next step - check debug output for correct props init Error:
This was because pg_hba.conf didn't have the right permissions (expected db name to be Metacat runs 2.19.0 -> 2.19.1 DB script, and the 2.19.1 -> 3.0.0 script successfully, but then failed on the 3.0.0 -> 3.1.0 script:
Discovered this is because ESA has the default value for esa=> \d db_version;
Table "public.db_version"
Column | Type | Collation | Nullable | Default
---------------+-----------------------------+-----------+----------+----------------------------------------------
db_version_id | bigint | | not null | nextval('db_version_id_seq'::text::regclass) (note the evos=> \d db_version;
Table "public.db_version"
Column | Type | Collation | Nullable | Default
---------------+-----------------------------+-----------+----------+----------------------------------------
db_version_id | bigint | | not null | nextval('db_version_id_seq'::regclass) (note Fixed this by doing: ALTER TABLE db_version
ALTER COLUMN db_version_id
SET DEFAULT nextval('db_version_id_seq'::regclass); and then the conversions ran as expected |
metacatui startup error - can't mount PVC due to permissions:
Solved. Incorrect |
Still need to look at and restore hashstore conversion errors |
Tracking progress for moving https://data.esa.org/ from mn-ucsb-2.dataone.org to k8s prod cluster.
Add any notes to this issue, and follow checklist in sub-issue #2063
The text was updated successfully, but these errors were encountered: