无法在Vespa中动态在文档中添加位置(纬度和经度)类型字段

时间:2018-09-20 10:15:03

标签: bigdata vespa

DocumentAccess access = DocumentAccess.createDefault();
        DocumentType type = access.getDocumentTypeManager().getDocumentType("location");
 DocumentId id = new DocumentId("id:location:location::4");
        Document document = new Document(type, id);
        document.setFieldValue(document.getDataType().getField("token"), "qwerty");
        **document.setFieldValue(document.getDataType().getField("latlong"),"N28.6273348;E77.4327459");**
        document.setFieldValue(document.getDataType().getField("data_timestamp"), "00:00:00 00:00:00");

在添加Position类型的latlong字段时,我在搜索API中收到此错误。

"message": "Invalid search request [/search/?query=dcnQ8ar52Y]: Type class com.yahoo.document.datatypes.StringFieldValue can not specify a class com.yahoo.document.datatypes.Struct instance"

1 个答案:

答案 0 :(得分:3)

使用com.yahoo.document.PositionDataType.fromString("N28.6273348;E77.4327459")