Skip to content

Commit

Permalink
remove memory limit of 200GB for duckdb (#85)
Browse files Browse the repository at this point in the history
* remove memory limit of 200GB for duckdb

* also remove duckdb-latest
  • Loading branch information
Tmonster authored Jul 2, 2024
1 parent 4e6e1ad commit 1b6e39d
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion duckdb-latest/join-duckdb-latest.R
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ if (less_cores) {
ncores = min(ncores, 40)
}
invisible(dbExecute(con, sprintf("PRAGMA THREADS=%d", ncores)))
invisible(dbExecute(con, "SET memory_limit='200GB'"))
git = dbGetQuery(con, "SELECT source_id FROM pragma_version()")[[1L]]

invisible({
Expand Down
1 change: 0 additions & 1 deletion duckdb/join-duckdb.R
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ if (less_cores) {
}

invisible(dbExecute(con, sprintf("PRAGMA THREADS=%d", ncores)))
invisible(dbExecute(con, "SET memory_limit='200GB'"))
git = dbGetQuery(con, "SELECT source_id FROM pragma_version()")[[1L]]

invisible({
Expand Down

0 comments on commit 1b6e39d

Please sign in to comment.