Re: ReplaceText - Out of memory - Requested array size exceeds VM limit

2020-08-11 Thread Joe Witt
Asmath

ReplaceText either loads full lines at a time or loads the entire file into
memory.  So keep that in mind.

If you need something that only loads at worst 1-2x the length of the
replacement string you're interested in then I'd recommend just using a
scripted processor that does precisely what you need for now.  You can
stream from the input and stream to the output and result in an extremely
efficient memory usage for arbitrarily large inputs.

Thanks

On Tue, Aug 11, 2020 at 1:01 PM KhajaAsmath Mohammed <
mdkhajaasm...@gmail.com> wrote:

> Hi ,
>
> I have a file that is throwing an error when looking for particular string
> and replace it with other string.
>
> Requested array size exceeds VM limit
>
> Any suggestions for this? File is around 800 MB.
>
> Thanks,
> Asmath
>


ReplaceText - Out of memory - Requested array size exceeds VM limit

2020-08-11 Thread KhajaAsmath Mohammed
Hi ,

I have a file that is throwing an error when looking for particular string
and replace it with other string.

Requested array size exceeds VM limit

Any suggestions for this? File is around 800 MB.

Thanks,
Asmath