Skip to content

Commit

Permalink
Merge branch 'master' into feat/GPE-1115
Browse files Browse the repository at this point in the history
  • Loading branch information
EliseCastle23 authored Nov 18, 2024
2 parents 83749bd + 770e9e1 commit abb32d3
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions docs/dev.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,3 +172,12 @@ helm upgrade --install gen3/metadata
You can also store your images in a local registry. Kind and Minikube are popular for their local registries:
- https://kind.sigs.k8s.io/docs/user/local-registry/
- https://minikube.sigs.k8s.io/docs/handbook/registry/#enabling-insecure-registries


## Additional Notes

When using the Metadata Service as a backend to retrieve results for the Discovery Page, query response times can increase if the database contains a large number of records. To improve performance in such cases, one recommended approach is to manually add an index on the `data->>_guid_type` field in the PostgreSQL database.

```SQL
create index metadata_guid_type on public.metadata((data->>'_guid_type'));
```

0 comments on commit abb32d3

Please sign in to comment.