Details
Details
- Reviewers
ardumont - Group Reviewers
Reviewers - Maniphest Tasks
- T2876: metadata indexation : ES' dynamic mapping creation fails for field values that are of varying types
- Commits
- rDSEA407a00e8aa5a: Normalize Codemeta documents by expanding them.
Diff Detail
Diff Detail
- Repository
- rDSEA Archive search
- Lint
Automatic diff as part of commit; lint not applicable. - Unit
Automatic diff as part of commit; unit tests not applicable.
Event Timeline
Comment Actions
Build is green
Patch application report for D4722 (id=16724)
Rebasing onto c7cd341796...
Current branch diff-target is up to date.
Changes applied before test
commit 4390bea8dbd89016ba87010d785ed55e16d6038c Author: Valentin Lorentz <vlorentz@softwareheritage.org> Date: Fri Dec 11 13:43:20 2020 +0100 Normalize Codemeta documents by expanding them. This causes all fields to be an array of objects, instead of being a mix of concrete values, arrays, and objects. ElasticSearch requires this consistency to be able to dynamically create mappings.
See https://jenkins.softwareheritage.org/job/DSEA/job/tests-on-diff/56/ for more details.
swh/search/elasticsearch.py | ||
---|---|---|
19 | what about: from swh.indexer.codemeta import expand as normalize_intrinsic_metadata ? |
swh/search/elasticsearch.py | ||
---|---|---|
27 | I kinda found the following nicer to the eyes. intrinsic_metadata = res.get("intrinsic_metadata") if intrinsic_metadata: res["intrinsic_metadata"] = normalize_intrinsic_metadata(intrinsic_metadata) What do you think? |
Comment Actions
Build is green
Patch application report for D4722 (id=16726)
Rebasing onto c7cd341796...
Current branch diff-target is up to date.
Changes applied before test
commit 407a00e8aa5a69350689a4a02609bf79a0e75ff3 Author: Valentin Lorentz <vlorentz@softwareheritage.org> Date: Fri Dec 11 13:43:20 2020 +0100 Normalize Codemeta documents by expanding them. This causes all fields to be an array of objects, instead of being a mix of concrete values, arrays, and objects. ElasticSearch requires this consistency to be able to dynamically create mappings.
See https://jenkins.softwareheritage.org/job/DSEA/job/tests-on-diff/58/ for more details.