bugfix
This commit is contained in:
parent
792c0b03fd
commit
2582314c4d
|
@ -87,7 +87,7 @@ def _handle_kres_file_chunk(kres_file_chunk):
|
|||
kres_data_1 = [_db_preprocess(x) for x in kres_data]
|
||||
db_payload += kres_data_1
|
||||
|
||||
dbclient.valdb["kres"].insert_many(db_payload) # much much better (just make sure sid has a unique index)
|
||||
dbclient.valdb["kres"].insert_many(db_payload, ordered=False) # much much better (just make sure sid has a unique index)
|
||||
logger.info("Inserted kres files chunk ({}/{}) in {:.2f} s".format(
|
||||
kres_chunk_idx, n_chunks, time.time() - tstart))
|
||||
dbclient.close()
|
||||
|
@ -163,6 +163,7 @@ if __name__ == "__main__":
|
|||
)
|
||||
|
||||
kres_files = [x for x in Path(args.kres_folder).iterdir()]
|
||||
kres_files = sorted(kres_files, key=lambda x: x.name)
|
||||
kres_files_chunks = []
|
||||
i = 0
|
||||
while i < len(kres_files):
|
||||
|
|
Loading…
Reference in New Issue
Block a user