我需要将预生成的 CSV/JSON 文本文件作为一批导入到 predictionio eventservet 中,并使用带有 post 请求方法的 curl rest api 调用。是否存在与pio
散装类似的操作ElasticSearch
?如何找到批处理格式说明或有关此主题的更多信息?
在 python 中存在batch import
,我需要通过 post curl
call 执行类似的过程。一个文件大小为 8MB,格式为.json
or.csv
文件。
我需要将预生成的 CSV/JSON 文本文件作为一批导入到 predictionio eventservet 中,并使用带有 post 请求方法的 curl rest api 调用。是否存在与pio
散装类似的操作ElasticSearch
?如何找到批处理格式说明或有关此主题的更多信息?
在 python 中存在batch import
,我需要通过 post curl
call 执行类似的过程。一个文件大小为 8MB,格式为.json
or.csv
文件。
从 PredictionIO 0.9.5 开始,一次最多可以通过 REST 导入 50 个事件: https ://docs.prediction.io/datacollection/eventmodel/#3.-batch-events-to-the-eventserver
基本上:将事件组合成一个 JSON 数组并将它们发送到/batch/events.json
.
像这些一样创建 JSON 。每个换行一个事件,因此可以一次并行读取一行。任何类型的事件都可以通过这种方式导入,注意 eventTime 字段必须在每个中作为 ISO 8601 日期。