geonetwork / core-geonetwork

GeoNetwork is a catalog application to manage spatially referenced resources. It provides powerful metadata editing and search functions as well as an interactive web map viewer. It is currently used in numerous Spatial Data Infrastructure initiatives across the world.
http://geonetwork-opensource.org/
GNU General Public License v2.0
411 stars 487 forks source link

OGC CSW 2.0.2 Harvesting / Indexing Performance / Bulk-Request #7981

Open rime1014 opened 4 months ago

rime1014 commented 4 months ago

Is your feature request related to a problem? Please describe.

Background:

After the GeoNetwork upgrade to version 4.2.5, initial harvesting of all metadata was performed. We were harvesting from a node with much metadata (> 280000). The initial harvesting runtime was very long, which resulted in failed harvesting runs several times in succession. Therefore, multiple harvesting runs over several days were required until all metadata was available in the database and in the index.

The question arises: Why does the initial harvesting take so much time?

We used the profiling tool VisualVM to analyze which methods require the most time during the initial harvesting process. The exact process of indexing during harvesting is described further down in the ticket.

The following harvesting times were asserted:

[!IMPORTANT] Indexing of new metadata takes about 37% of the total harvesting time. Therefore, performance enhancement in indexing has a high potential to decrease harvesting time.

Describe the solution you'd like

[!TIP] Suggestion: The performance of indexing during harvesting can possibly be improved by indexing several metadata uuids at once using bulk requests.

Geonetwork already uses the bulk API, but with CSW harvesting, the bulk request performs with only one metadata set at a time. The addMetadata method is called individually for each metadata set. In the code, the parameter forceRefreshReaders is set to true which causes this behavior.

The performance could be increased by indexing multiple documents at the same time instead of each document individually through bulk requests. image

Additional context Analyzed process of indexing during harvesting with VisualVM

vietnguyengit commented 3 months ago

I just came here to say this is an excellent finding @rime1014; hope it will be addressed in future updates (I'm not GeoNetwork's members).

Not related to harvesting performance, I'm curious if you have the CSW harvester's search filter working properly? Thank you.

rime1014 commented 3 months ago

I just came here to say this is an excellent finding @rime1014; hope it will be addressed in future updates (I'm not GeoNetwork's members).

Not related to harvesting performance, I'm curious if you have the CSW harvester's search filter working properly? Thank you.

Thank you very much. Yes, we partly use search filters to harvest the metadata of a CSW interface in parts with the help of various harvesters (e.g. according to the editing date of the metadata (RevisionDate). This works well.