- Log in to post comments
Not with POP3.
- Log in to post comments
Thanks!
- Log in to post comments
For this type of data, you can make your own indexes for different parts and/or combinations of them: a separate date, a separate time, a separate year, a separate year and month, etc.
Could you elaborate on that, please?
- Log in to post comments
Divide by 365.25 to account for leap years.
- Log in to post comments
That's a different connection (connection to remote gateway server), rather that a license/csp connection.
Check that %Java Server External Language Server can start. In your case it does not start.
We wait for 60 seconds because it can take a while for External Language Server to start - it can be on another server for example.
Calling @Benjamin De Boe.
- Log in to post comments
Do you have Dall-E access? I'm still on a waitlist.
- Log in to post comments
How do you identify a run?
- Log in to post comments
Yes? Cubes need space to store thier copy of the facts and CPU is needed to build it all.
As I said above, using async reporting mirror for cubes would completely remove the impact on the patient index.
- Log in to post comments
Great article.
Here's some of my ideas on how to pass large strings/streams to InterSystems IRIS from Native API.
- Log in to post comments
Yeah, the process had 64,5 Gb of virtual memory allocated and 40Gb actually used.
Not surprised OOM killed that.
- Log in to post comments
That's InterSystems IRIS logs. You need OS logs, namely syslog (check /var/log/syslog or /var/log/messages). Search for log entries about the "killed process" around the time your process was killed.
To be extra sure run write $job before calling the query to get process id. It should match the id of a killed process.
After you establish that your process was killed by OOM you need to report that to WRC, as a fix probably requires if not access, then at least overview of the production configuration which causes it.
- Log in to post comments
Do you have related OOM entries in OS logs?
- Log in to post comments
Let's see how much time does it take to run in a non web context. There would be no timeouts in that case.
Could you please run this in your interoperability namespace:
set start=$h,rs=##class(Ens.InterfaceMaps.Utils).EnumeratePathsFunc(),end=$h
write "Time in seconds: ", $p(end, ",", 2)-$p(start, ",", 2)If you run the query in SMP with parameters set them here too. EnumeratePaths query docs.
Also after you obtain the result set, you can output it to a terminal using %Display method, or to a file using %DisplayFormatted method.
- Log in to post comments
It's a windows box issue, not InterSystems IRIS issue. I've seen a few, easiest solution is to delete localised DLLs, which would make all text English. Not perfect, but better than the gibberish.
- Log in to post comments
In your Business Service settings set ClassName to pacIPM.reqICNARC and ElementName to ADMISSION.
I think you set only ClassName and did not set ElementName. In that case interoperability tries to match root object - ICNARC in your case to pacIPM.reqICNARC, and it fails because pacIPM.reqICNARC class does not have ADMISSION property.
- Log in to post comments
It looks like an encoding problem, Win-1251 to Win-1252 specifically.
- Log in to post comments
Calling @Andreas.Dieckow.
- Log in to post comments
Obvious stuff!
- Log in to post comments
Key Questions
Value Answers next?
- Log in to post comments
Check this article series.
- Log in to post comments
Is there a solution for latest?
Spent like half an hour on this puzzle with no results.
- Log in to post comments
What particular question do you have? Please consider providing more information.
You get a callresponse from a BO, copy it (or copy id as you'd leave the stream immutable) and create a new callrequest to another BO.
Alternatively use ResponseClass to save results into persistent objects.
- Log in to post comments
Completely agreed.
- Log in to post comments
Yes. Cube builds don't modify source data.
Cubes copy all source data into an entirely separate set of tables.
- Log in to post comments
Absolutely not.
During SYNC or REBUILD events Data Quality Manager cubes would only read patient index linkage definition data.
There's no way for cubes to modify patient index linkage definition data.
That said, reads, cube data writes, and additional cpu load during SYNC or REBUILD events might impact the running system, since there's a limited amount of resources available. You might want to schedule SYNCs and especially REBUILDs for low-load times (at nights or weekends depending on your usage patterns).
Using async reporting mirror for cubes would completely remove the impact on the patient index.
- Log in to post comments