eland.DataFrame.to_json#

DataFrame.to_json(path_or_buf=None, orient=None, date_format=None, double_precision=10, force_ascii=True, date_unit='ms', default_handler=None, lines=False, compression='infer', index=True, indent=None, storage_options=None)#

将 Elasticsearch 数据写入 json 文件。

通过将 lines 参数设置为 True,并将 orient 设置为 'records',可以以流式方式写入整个 DataFrame。这样做避免了将整个 DataFrame 保存在内存中的需要。这种格式被称为 JSON 行,可以使用文件扩展名 .jsonl

另请参见#

pandas.DataFrame.to_json