To complete my expertise in data storage, I joined the editor Oracle, before joining InterSystems in 2001.
My skills in data processing have therefore been extended, from multi-model storage, interoperability (and more particularly on health exchange standards), to real-time analysis and artificial intelligence (AI / ML), so as to cover a broad spectrum of the data lifecycle in all industries.
Pour compléter mon expertise en stockage de données, j'ai ensuite intégré l'éditeur Oracle, avant de rejoindre InterSystems France dès 2001.
Mes compétences en traitement de la donnée se sont dès lors étendues, depuis le stockage multi-modèles, l'interopérabilité (et plus particulièrement sur les standards d'échanges en santé), jusqu'à l'analyse en temps-réel et à l'intelligence artificielle (IA/ML), de manière à couvrir un large spectre du cycle de vie de la donnée.
I let you do the same for the French version
Very good !!
Thank you @Irène Mykhailova









Hi @TAZ.R
Environment variables set in the Docker container are only visible to processes that inherit the environment.
You can rapidly check it from a terminal session :
write $system.Util.GetEnviron("TZ") Europe/Paris write ##class(%SYS.Python).Import("os").getenv("TZ") Europe/Paris
Or from a simple Business Operation :
You could also store the content in a global at IRIS startup by creating the %ZSTART routine
ROUTINE %ZSTART QUIT ; Prevents direct execution without a label SYSTEM ; Subroutine called at system startup Set ^IRIS.Temp("Secrets", $System.Util.GetEnviron("API_CLIENT_ID")) = $System.Util.GetEnviron("API_CLIENT_SECRET") QUIT
That way, you can retrieve your secret by executing this code:
$Get(^IRIS.Temp("Secrets", "your-client-id"), "")