summaryrefslogtreecommitdiffstats
path: root/config-model
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #21723 from vespa-engine/arnej/apply-field-rank-normalArne H Juul2022-03-172-6/+10
|\ | | | | add conversion of "isNormal"
| * add conversion of "isNormal"Arne H Juul2022-03-172-6/+10
| |
* | switch to NewDocumentReferenceDataTypeArne H Juul2022-03-1723-86/+87
| |
* | more compatibleArne H Juul2022-03-171-8/+42
| |
* | add new datatype modelArne H Juul2022-03-171-0/+78
|/
* tighten importsArne H Juul2022-03-162-31/+0
|
* check some more details for sanityArne H Juul2022-03-161-1/+13
|
* fix annotation struct handlingArne H Juul2022-03-164-5/+22
| | | | | | * put structProxy for the struct inside an annotation into the SDAnnotation instead of into the SDDocumentType * fixes test case from last commit
* validate no annotation references in documentArne H Juul2022-03-161-0/+62
| | | | | * similar to check in SearchDataTypeValidator * fails with experimental parsing for now
* simplify after refactoringArne H Juul2022-03-161-4/+3
|
* simplify annotation handling hereArne H Juul2022-03-161-37/+26
|
* only SDAnnotationTypeArne H Juul2022-03-161-7/+6
|
* pre-resolve struct and annotation inheritanceArne H Juul2022-03-161-0/+95
|
* move two find methodsArne H Juul2022-03-162-36/+36
|
* split resolvedInherits and resolvedReferencesArne H Juul2022-03-163-7/+18
|
* add more resolveInherit APIsArne H Juul2022-03-162-0/+31
|
* consistent tagOwner()Arne H Juul2022-03-164-6/+7
|
* split per-Schema conversion into its own fileArne H Juul2022-03-162-140/+241
|
* Revert "one step back for experimental parsing for now"Arne H Juul2022-03-161-2/+0
| | | | This reverts commit a32c40305e4642f1b4c8c3e0c0a655ed473b6acd.
* get ReferenceDataType from NewDocumentType instance (again)Arne H Juul2022-03-163-9/+22
|
* Merge pull request #21688 from ↵Harald Musum2022-03-155-32/+74
|\ | | | | | | | | vespa-engine/hmusum/add-feature-flag-for-node-architecture-for-admin-clusters Add feature flag for node architecture for admin clusters [run-systemtest]
| * Add feature flag for node architecture for admin clustersHarald Musum2022-03-154-2/+60
| | | | | | | | | | Flag value will be used for implicitly created nodes in admin clusters (cluster controllers only for now)
| * Less hardcoding of cluster nameHarald Musum2022-03-151-9/+14
| |
| * Remove useless test (filedistributor service removed a long time ago)Harald Musum2022-03-151-21/+0
| |
* | Add grouping_time metricsYngve Aasheim2022-03-151-0/+3
|/
* simpler with IdentityHashMapArne H Juul2022-03-141-12/+9
|
* update expected resultsArne H Juul2022-03-1411-232/+5
| | | | * drop lots of duplicate data types
* fix multi struct unit testArne H Juul2022-03-141-13/+31
| | | | | * avoid making new DataType instances when we can avoid it * keep all replacements (use object identity not equals)
* unit test disappearing struct-fieldsArne H Juul2022-03-147-0/+373
|
* Merge pull request #21676 from vespa-engine/arnej/fix-duplicate-reference-typesHenning Baldersheim2022-03-149-22/+160
|\ | | | | Arnej/fix duplicate reference types
| * one step back for experimental parsing for nowArne H Juul2022-03-141-0/+2
| |
| * Revert "convert DocumentType to NewDocumentType inside reference"Arne H Juul2022-03-141-10/+2
| | | | | | | | This reverts commit 6e89431976e24a64878b2db5728c91b84160b150.
| * Revert "ensure unique ReferenceDataType instances"Arne H Juul2022-03-143-21/+16
| | | | | | | | This reverts commit 994196c5354c02f40c223cf4fe3388aba09ea020.
| * add unit test (fails now)Arne H Juul2022-03-145-0/+149
| |
* | Let RankProfileRegistry be GCed, dod not keep alive!Jon Marius Venstad2022-03-142-6/+2
|/
* test new-style config similar to inheritdiamondArne H Juul2022-03-136-0/+135
|
* obey the documentsOnly flagArne H Juul2022-03-121-0/+3
| | | | * documentgen expects that schemas can reference non-existing files
* Merge pull request #21659 from vespa-engine/arnej/on-demand-struct-fieldsJon Bratseth2022-03-1234-209/+184
|\ | | | | Arnej/on demand struct fields
| * on-demand struct fields solves two problems seen hereArne H Juul2022-03-111-7/+0
| |
| * cleanup constructorsArne H Juul2022-03-114-42/+27
| |
| * remove old fixups no longer neededArne H Juul2022-03-112-39/+0
| |
| * removing some useless stuffArne H Juul2022-03-113-30/+20
| |
| * populate struct fields on demandArne H Juul2022-03-1114-70/+99
| | | | | | | | | | | | | | * most SDField instances should know their "repo" * populate with struct fields in a lazy manner * just remember what we were told in the old API * note: old API will be renamed so it makes a bit more sense
| * even TemporarySDField should be connected to a "repo"Arne H Juul2022-03-1110-38/+43
| |
| * connect SDField to "repo"Arne H Juul2022-03-112-6/+6
| | | | | | | | | | | | * when creating SDField inside a struct, it needs connection to the "repo" (SDDocument) for lookup of other types. The StructProxy would be the "owner" here, and is not necessary.
| * inherit directlyArne H Juul2022-03-112-3/+10
| | | | | | | | | | | | * instead of indirect (temporary) inherit from name, inherit the already-converted document directly. * keep schema order.
| * ensure unique ReferenceDataType instancesArne H Juul2022-03-113-16/+21
| |
* | Merge pull request #21661 from vespa-engine/jonmv/check-wanted-version-insteadJon Marius Venstad2022-03-111-0/+7
|\ \ | | | | | | Check wanted version instead of newest built model
| * | Add wantedNodeVersion to ModelJon Marius Venstad2022-03-111-0/+7
| |/
* / Revert "Lesters/java probe onnx model 2"Lester Solbakken2022-03-115-279/+6
|/