Skip to content

Commit

Permalink
Update join-juliads.jl (#55)
Browse files Browse the repository at this point in the history
Julia ds no longer uses disk for 50GB joins
  • Loading branch information
sl-solution authored Nov 6, 2023
1 parent b44ee48 commit d0a11e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion juliads/join-juliads.jl
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ solution = "juliads";
fun = "join";
cache = true;
on_disk = false;
isondisk(indata) = parse(Float64, split(indata, "_")[2])>=10^9
isondisk(indata) = false # It seems that the new machine has enough memory - parse(Float64, split(indata, "_")[2])>=10^9

data_name = ENV["SRC_DATANAME"];
src_jn_x = string("data/", data_name, ".csv");
Expand Down

0 comments on commit d0a11e0

Please sign in to comment.