FHIR Chat · Memrory · implementers

Stream: implementers

Topic: Memrory


view this post on Zulip Somnath (Apr 10 2018 at 09:19):

I am trying to read a document document size may change from 50-100 MB. for 75 MB document presently it goes 100 mb to 1.9 GB. i have also faced out of memory exception. please advice var searchParameters = new SearchParams();
searchParameters.Add("_id", "17180000000000058171_97_172");
searchParameters.Include("DocumentReference:content");
searchParameters.LimitTo(1);
var documentBundle = client.Search<DocumentReference>(searchParameters);
var bundleInstance = documentBundle.Entry.FirstOrDefault();

view this post on Zulip Lloyd McKenzie (Apr 10 2018 at 13:35):

The memory issue isn't the size of your document, it's the size of the base specification and associated terminology which has to be loaded if you're wanting to validate. And for that, you're definitely looking at a couple of GB.

view this post on Zulip Somnath (Apr 16 2018 at 09:21):

Hi @Lloyd McKenzie since it is document only can I skip the validation for this FHIR Request. or any other solution.

view this post on Zulip Somnath (Apr 16 2018 at 09:36):

@Lloyd McKenzie and this issue only happen when I call document . I have lot of other calls but they are working fine. its my .net web api and I am using single instance of fhir client.

view this post on Zulip Lloyd McKenzie (Apr 16 2018 at 14:35):

@Brian Postlethwaite ?


Last updated: Apr 12 2022 at 19:14 UTC