Open GoogleCodeExporter opened 9 years ago
for $ind in dataset Metadata.Index
where $ind.DatasetName = "closedStudents" and $ind.IndexName = "cStudentsIdx"
return $ind;
Output: { "DataverseName": "metatestcase", "DatasetName": "closedStudents",
"IndexName": "cStudentsIdx", "IndexStructure":
"LENGTH_PARTITIONED_NGRAM_INVIX", "SearchKey": [ "name" ], "IsPrimary": false,
"Timestamp": "Mon Aug 11 17:04:36 PDT 2014", "PendingOp": 0, "GramLength": 3 }
for $ind in dataset Metadata.Index
where $ind.DatasetName = "closedOpStrings" and $ind.IndexName = "cOpStringsIdx"
return $ind;
{ "DataverseName": "metatestcase", "DatasetName": "closedOpStrings",
"IndexName": "cOpStringsIdx", "IndexStructure":
"LENGTH_PARTITIONED_WORD_INVIX", "SearchKey": [ "str" ], "IsPrimary": false,
"Timestamp": "Mon Aug 11 17:04:37 PDT 2014", "PendingOp": 0 }
Original comment by franc...@uci.edu
on 17 Aug 2014 at 9:08
SO - the metadata is there afterall - the test queries need to be updated - but
we do have a documentation issue here. (We need to explain in the manual what
the IndexStructure types are.)
Original comment by dtab...@gmail.com
on 19 Aug 2014 at 12:47
The inverted index types should be one of the followings:
SINGLE_PARTITION_WORD_INVIX, SINGLE_PARTITION_NGRAM_INVIX,
LENGTH_PARTITIONED_WORD_INVIX, LENGTH_PARTITIONED_NGRAM_INVIX. We indicate if
the index is partitioned or not via this type info in the Metadata. Currently
we removed the support for single partition index; but it may be added back
when Taewoo implements fulltext search. I'm tagging this issue as invalid.
Do we have a place in the documentation that we explain the internals of
Metadata?
Original comment by icetin...@gmail.com
on 19 Aug 2014 at 12:58
Original comment by icetin...@gmail.com
on 19 Aug 2014 at 1:43
Original issue reported on code.google.com by
khfaraaz82
on 17 Aug 2014 at 8:48