1

我需要将预生成的 CSV/JSON 文本文件作为一批导入到 predictionio eventservet 中,并使用带有 post 请求方法的 curl rest api 调用。是否存在与pio散装类似的操作ElasticSearch?如何找到批处理格式说明或有关此主题的更多信息?

在 python 中存在batch import,我需要通过 post curlcall 执行类似的过程。一个文件大小为 8MB,格式为.jsonor.csv文件。

4

2 回答 2

1

从 PredictionIO 0.9.5 开始,一次最多可以通过 REST 导入 50 个事件: https ://docs.prediction.io/datacollection/eventmodel/#3.-batch-events-to-the-eventserver

基本上:将事件组合成一个 JSON 数组并将它们发送到/batch/events.json.

于 2016-06-07T17:42:15.050 回答
0

这些一样创建 JSON 。每个换行一个事件,因此可以一次并行读取一行。任何类型的事件都可以通过这种方式导入,注意 eventTime 字段必须在每个中作为 ISO 8601 日期。

https://docs.prediction.io/datacollection/batchimport/

于 2015-10-29T21:52:58.853 回答