I am trying to do the simplest indexing of an ff
vector in R v3.1.0, on a Windows 2008 server. The following basic code:
x = ff(1:10)
x[ff(2:3)]
Returns the error:
Error in ffindexget(x, i) :
cannot allocate memory block of size 67108864 Tb
In addition: Warning message:
In bbatch(length, BATCHBYTES/(recvalbytes + 2 * recindbytes)) :
NAs introduced by coercion
Any insights as per how/why could that possibly happen? The code runs perfectly on my local Windows 7 machine, hence am I right to assume the issue is with the operating system? Many thanks in advance.