在Vespa中使用Document API动态添加文档

时间:2018-09-19 13:09:47

标签: bigdata vespa

我在应用程序中创建了一个Searcher类,该类具有多个文档。在Searcher类中,我想将文档写入特定类型的文档中。但这并没有反映在Vespa中。我的代码如下:

    public Result search(Query query, Execution execution) {

        Result result = execution.search(query);

        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("token", "qwerty");
        document.setFieldValue("latlong", "12.343,12.4343");
        document.setFieldValue("data_timestamp", "00:00:00 00:00:00");

        // return the result up the chain
        return result;
    }

在这里,我正在将文档写入位置类型。我的Location.sd类:

search location 
{
    document location {
        field token type string {
            indexing: index
        }
        field latlong type string {
            indexing: attribute
        }
        field data_timestamp type string {
            indexing: attribute
        }
    }
    fieldset default {
        fields: token
    }
}

当我想使用以下方法获取文档时: http://localhost:8080/document/v1/location/location/docid/4

I got the result:
{
    "id": "id:location:location::4",
    "pathId": "/document/v1/location/location/docid/4"
}

我应该得到以下输出:

{
    "fields": {
        "token": "qwerty",
        "latlong": "12.343,12.4343",
        "data_timestamp": "00:00:00 00:00:00"
    },
    "id": "id:location:location::4",
    "pathId": "/document/v1/location/location/docid/4"
}

请帮助我,我做错了什么或缺少什么。

1 个答案:

答案 0 :(得分:3)

如果要从搜索器中添加文档,则应将DocumentAccess实例的创建移到搜索器的构造函数中,以避免在每个搜索请求的基础上创建新实例。

创建Document实例不会将数据持久保存在Vespa中,然后需要通过从DocumentAccess实例创建Session来发送数据。在此处查看完整的示例https://docs.vespa.ai/documentation/document-api-guide.html