Closed evan95s closed 7 months ago
serde_json::to_writer will write one or two bytes each time until all data are writed succeed, which is unacceptable for file system like s3. So I use write_all to replace to write all data into file.
serde_json::to_writer will write one or two bytes each time until all data are writed succeed, which is unacceptable for file system like s3. So I use write_all to replace to write all data into file.