Skip to content

Commit 86d205f

Browse files
committed
slurm2sql: Don't use WAL mode by default
- Has problems when it's not run on one node, which is often on clusters
1 parent c972f3c commit 86d205f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

slurm2sql.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -895,7 +895,7 @@ def infer_type(cd):
895895
'sum(TotDiskRead) as TotDiskRead, '
896896
'sum(TotDiskWrite) as TotDiskWrite '
897897
'FROM slurm GROUP BY JobIDnostep')
898-
db.execute('PRAGMA journal_mode = WAL;')
898+
#db.execute('PRAGMA journal_mode = WAL;')
899899
db.commit()
900900
c = db.cursor()
901901

0 commit comments

Comments
 (0)