Skip to content

Append directly on/to disk #91

Open
@xiaodaigh

Description

@xiaodaigh

I wonder if it's possible to row append a dataset directly to a dataset stored on disk?

currenlty to append two dataframes together I need to do

a <- read.fst(file1, as.data.table=T)
b <- read.fst(file2, as.data.table=T)
write.fst(file3,rbindlist(list(a,b)))

If both a and b are large then R may run out memory. So it would prefer to have a function to append.fst e.g.

append.fst(out_file, c(infile1, infile2))

Metadata

Metadata

Assignees

Projects

No projects

Relationships

None yet

Development

No branches or pull requests

Issue actions