RST currently uses the first row of the data frame to estimate total object size for the file split count. eg
number_of_rows * object.size(df[1, ]). This calculation drastically over-estimates the total size of the data frame to upload.
My first approach will be to use the object size averaged over all rows. This will minimize how much code needs to change before a larger refactor.
RST currently uses the first row of the data frame to estimate total object size for the file split count. eg
number_of_rows * object.size(df[1, ]). This calculation drastically over-estimates the total size of the data frame to upload.My first approach will be to use the object size averaged over all rows. This will minimize how much code needs to change before a larger refactor.