Skip to content

Commit

Permalink
Dumper now works in a single-threaded fashion.
Browse files Browse the repository at this point in the history
  • Loading branch information
ppanopticon committed Dec 21, 2023
1 parent 28a164a commit f14f7f0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ abstract class Dumper(protected val client: SimpleClient, protected val output:

/* Start dumping the entity in batches. */
val buffer = mutableListOf<Tuple>()
val results = this.client.query(Query(entity).txId(this.txId))
val results = this.client.query(Query(entity).txId(this.txId).disallowParallelism())
var dumped = 0L
var batch = 0L

Expand Down

0 comments on commit f14f7f0

Please sign in to comment.