Clear filter
Announcement
Anastasia Dyubaylo · Sep 19, 2022
Hi Community,
We are super excited to announce the winners of the InterSystems Interoperability Contest: Building Sustainable Solutions!
Thank you all for participating in our coding competition! Without further ado, the winners are...
Experts Nomination
🥇 1st place and $5,000 go to the Sustainable Machine Learning app by @Lucas.Enard2487
🥈 2nd place and $3,000 go to the iris-energy-isodata app by @Muhammad.Waseem
🥉 3rd place and $1,500 go to the iris-megazord app by @José.Pereira
🏅 4th place and $750 go to the n8n-nodes-iris app by @Dmitry.Maslennikov
🏅 5th place and $500 go to the samba-iris-adapter app by @Yuri.Gomes
More winners:
🏅 $100 go to the Recycler app by @Oleh.Dontsov
🏅 $100 go to the interoperability-test app by @Oliver.Wilms
🏅 $100 go to the interoperability-soap app by @Oliver.Wilms
🏅 $100 go to the production-monitor app by @Oliver.Wilms
🏅 $100 go to the appmsw-banks-ru app by @MikhailenkoSergey
Community Nomination
🥇 1st place and $1,000 go to the iris-megazord app by @José.Pereira
🥈 2nd place and $750 go to the Sustainable Machine Learning app by @Lucas.Enard2487
🥉 3rd place and $500 go to the iris-energy-isodata app by @Muhammad.Waseem
Our sincerest congratulations to all the participants and winners!
Join the fun next time 😎 Thank you so much everyone for the feedback on my work and the kind comments.
Thank you for choosing my application as the winner and for the second place in the community vote !! Congrats @Lucas.Enard2487, it's honestly deserved !! You are proof that all it takes is an internship of a few months to become a real expert.Well done. Congratulation @Lucas.Enard2487 and all the winners Thank you so much Sylvain ! Thank you Muhammad, it was a pleasure to participate! Congratulations to all winners! Congratulations to all the winners!!
The InterSystems Interoperability Contest Winners video is available on InterSystems Developer's YouTube!
⏯ Winners of InterSystems Interoperability Programming Contest
Check it out!
Question
Ephraim Malane · Apr 25, 2022
Hi All,
When I log into Backup mirror member it becomes too slow to load and navigate, I tried to check message log and I saw the error message about Database mirror latency and database disk issue which when I check it looks fine to me. Please have a look at the below screenshots and advise what the issue could be.
When I run df -h through SSH :
200G is the volume size, 194G is used space, 6.5G is available space and 97% IS %Use
Datababase view from management portal for the same db volume
Disk space error message from message log:
The below error shows sometimes when the system tries to load
Hello Ephraim,
This seems like a better question for InterSystems Support / WRC who can look at the full log and system to try and determine what's happening.
From a file system disk space perspective, the database is almost filling the disk, but there is free space WITHIN the database from the IRIS perspective.
Regarding the performance side of things, what did you check such that it looks fine? CPU / memory / disk? When did the warnings start and are they ongoing? What's being done on the system, anything abnormal? Ephraim,
Does the top command show a large swap space. I have seen backup servers with a smaller physical memory get the programs into swap space which as you know is extremely slow to operate.
John Hello Ephraim,
your database is 193GB and has 141GB of free space (73% free). There is a 6.5GB space on the OS file system,
I recommend you to:- Compact globals in database- Compact free space ibn database- Return free space in database
All those can be done when you do the following:
USER>zn "%sys"%SYS>do ^DATABASE
Announcement
Anastasia Dyubaylo · Dec 6, 2022
Hi Community,
Let's meet together at the online meetup with the winners of the InterSystems IRIS for Health Contest – a great opportunity to have a discussion with the InterSystems Experts team as well as our contestants.
Winners' demo included!
Date & Time: Friday, December 9, 10:00 AM EDT
>> Register here <<
Join us to learn more about winners' applications and to have a talk with our experts.
➡️ REGISTER TODAY
See you all at our virtual meetup! Hey Developers,
Watch the recording of the meetup on InterSystems Developers YouTube:
⏯ Online Meetup with InterSystems IRIS for Health Contest Winners!
Announcement
Anastasia Dyubaylo · Jan 19, 2023
Hi Community,
Watch this video to review the present of InterSystems cloud services and use cases, as well as a roadmap for the future:
⏯ InterSystems IRIS Cloud On-Demand Services @ Global Summit 2022
Presenters:🗣 Todd Sylvester, Director, Cloud Strategy, Execution, and Alliances, InterSystems🗣 @Samuel.Ferguson, Systems Developer, InterSystems
Subscribe to InterSystems Developers YouTube to stay up to date!
Announcement
Emily Geary · Jul 28, 2023
InterSystems US Classroom Training is now issuing digital badges for successfully completing training, and we are retroactively distributing these badges to our classroom learners since May 2020. The badges are issued through Credly, a company that manages digital credentials, and will be delivered via email, asking you to accept your new training badge shortly. If this is your first time earning a badge through Credly, you will be prompted to make an account and whether you wish to automatically accept InterSystems badges.
Many learners received badges over the week - please check your emails to see if you have one waiting for you!
Some courses, including custom trainings and InterSystems Change Control, are still in the works. As this is an ongoing project to transition to the digital badges, we appreciate your patience with receiving the badges.
Share Your Accomplishment!
Sharing your badge on LinkedIn, other social media, or via email makes your training badge public and is a great way to let others know of your achievement.
Question
Parameshwaran Muthaiyan · Aug 7, 2023
Can you please any one assist me for How to connect with the InterSystems IRIS in Java(Quarkus) version 3.0. As far as I know, there is no extension to connect directly to IRIS using JDBC from Quarkus yet but you always have the option to connect using REST or TCP. Hi, you will find here an example of Quarkus + IRIS + Hibernete :
https://github.com/grongierisc/iris-orm-examples Thanks, Luis, for replying to me. In my queries, I am using Java JDK version 17 and Quarkus Platform version 3.1.0 (with the latest). Now, back to the point, which InterSystems jar version is suitable for this configuration? also we need to customise the Hibernate Dialect or no need for this version? Hello Guilaume, Thanks it's really helpful. Now I can able to connect the IRIS database. In theory you are all set. Just take for example the dockerfile.
You can also read the pom.xml file to take some insperation.
For example take a look how the jdbc driver is added to the project.
```xml
intersystems
jdbc
3.3.0
system
${pom.basedir}/lib/intersystems-jdbc-3.3.0.jar
```
To sum up, you need obviously the jdbc drive (you have one in the repo), the hibernate dialect, you also have one in the repo, for the hibernete dialet you can also have a look to the article of yuri : https://community.intersystems.com/post/using-new-intersystems-iris-hibernate-6-dialect-springboot-project.
Have fun with Iris and quarkus. Maybe this article can help you:
https://community.intersystems.com/post/using-new-intersystems-iris-hibernate-6-dialect-springboot-project Hello Guillaume Rongier, Can you confirm for me if the InterSystems JDBC driver is compatible with Panache Lock?
Have a look at this project https://github.com/daimor/realworld-api-quarkus-irisI've migrated Realworld application made on Quarkus, to work with IRIS, it even uses CI to test it, and all tests passed Hello Dmitry Maslennikov,
It's really helpful to learn how to connect IRIS with Quarkus, especially for real-world applications.
However, I encountered an issue while using your application and adding a new column. The data type for that column is Enumeration, and I annotated it with @Enumerated(EnumeratedType.STRING). Unfortunately, I'm unable to create the table due to a DDL issue. I have attached the code snippet and error image below:
Can you help me fix this problem and solve it?Thank you for your assistance. IRIS SQL does not have CHECK constraints, so, this syntax not available at all. Just try using a simple string, without enumeration. As a former Java developer, my suggestion is not to use Enumerations, at the end that field is a common String, if you want to restrict the value of that column do it from the code, not from the database. Yes, Dmitry Maslennikov
We don't use CHECK constraint, by default Hibernate will generate this query. I don't know it has some issues in dialect file. It has become a mandatory requirement for us to use Enums in our application. I'm unsure why this functionality isn't achievable in Quarkus versions 3 and above. We previously achieved this in Quarkus version 2, and it worked seamlessly with other databases like MySQL and PostgreSQL. However, I'm puzzled as to why I can't annotate Enum types in the IRIS database.Can you please tell us if is there any possible way to achieve it?
Thanks in advance. Fixed change the dependency for 1.1.1:
<dependency>
<groupId>io.github.yurimarx</groupId>
<artifactId>hibernateirisdialect</artifactId>
<version>1.1.1</version>
</dependency> Thanks yurimarx Marx,Now, I was able to successfully connect to the database also create a table using Enum data type. Thank you very much for your help in this crucial time.
Announcement
Bob Kuszewski · Aug 17, 2023
We often get questions about recent and upcoming changes to the list of platforms and frameworks that are supported by the InterSystems IRIS data platform. This update aims to share recent changes as well as our best current knowledge on upcoming changes, but predicting the future is tricky business and this shouldn’t be considered a committed roadmap.
With that said, on to the update…
IRIS Production Operating Systems and CPU Architectures
Red Hat Enterprise Linux
Recent Changes
RHEL 9.2 & RHEL 8.8 were released in May, 2023. Red Hat is planning to support these releases for 4 years. InterSystems has completed additional testing of IRIS on RHEL 9.2 & RHEL 8.8 through a new process we’re calling “Minor OS version certification” that is intended to provide additional security that a minor OS update didn’t break anything obvious. Both RHEL 8.8 and 9.2 successfully passed our tests.
With the release of RHEL 9.2, Red Hat has ended public support for RHEL 9.1. This is consistent with the “odd/even” support cycle that Red Hat has been using since RHEL 8.3.
Upcoming Changes
RHEL 9.3 is planned for later in the year. This will be a short-term-support release from Red Hat, so InterSystems won’t be performing Minor OS Certification or recommending it for production deployments.
Previous Updates
IRIS 2022.1.2 adds support for RHEL 9.0. 9.0 is a major OS release that updates the Linux Kernel to 5.14, OpenSSL to 3.0, and Python 3.9
IRIS 2022.2.0 removes support for RHEL 7.x. RHEL 7.9 is still supported in earlier versions of IRIS.
Further reading: RHEL Release Page
Ubuntu
Recent Changes
Ubuntu released 22.04.2 LTS & 20.04.6 LTS in February and March, respectively. InterSystems has completed performing additional testing of IRIS on 22.04.02 LTS through Minor OS version certification.
Upcoming Changes
The next major update of Ubuntu is 24.04 is on-schedule for April, 2024
Previous Updates
IRIS 2022.1.1 adds support for Ubuntu 22.04. 22.04 is a major OS release that updates the Linux Kernel to 5.15, OpenSSL to 3.0.2, and Python 3.10.6
IRIS 2022.2.0 removes support for Ubuntu 18.04. Ubuntu 18.04 is still supported in earlier versions of IRIS.
IRIS 2022.1.1 & up containers are based on Ubuntu 22.04.
Further Reading: Ubuntu Releases Page
SUSE Linux
Upcoming Changes
SUSE Linux Enterprise Server 15 SP5 was released June 20, 2023. SP5 includes Linux Kernel 5.14.21, OpenSSL 3.0.8, and Python 3.11. We’re currently working on Minor OS certification.
Previous Updates
IRIS 2022.3.0 adds support for SUSE Linux Enterprise Server 15 SP4. 15 SP4 is a major OS release that updates the Linux Kernel to 5.14, OpenSSL to 3.0, and Python 3.9
General Support from SUSE for Linux Enterprise Server 15 SP3 came to an end on 12/31/2022, but extended security support will continue until December, 2025.
Further Reading: SUSE lifecycle
Oracle Linux
Upcoming Changes
Oracle surprised us by releasing Oracle Linux 9.2 right around the same time as RHEL 9.2. We’re currently starting Minor OS certification.
Previous Updates
IRIS 2022.3.0 adds support for Oracle Linux 9. Oracle Linux 9 is a major OS release that tracks RHEL 9, so it, too, updates the Linux Kernel to 5.14, OpenSSL to 3.0, and Python 3.9
Further Reading: Oracle Linux Support Policy
Microsoft Windows
Upcoming Changes
Windows Server 2012 will reach its end of extended support in October, 2023. If you’re still running on the platform, now is the time to plan migration. IRIS 2023.2+ will not be available for Windows Server 2012.
Previous Updates
We haven’t made any changes to the list of supported Windows versions since Windows Server 2022 was added in IRIS 2022.1
Further Reading: Microsoft Lifecycle
AIX
Upcoming Changes
InterSystems is working closely with IBM to add support for OpenSSL 3.0. This will not be included in IRIS 2023.2.0 as IBM will need to target the feature in a further TL release. The good news is that IBM is looking to release OpenSSL 3.0 for both AIX 7.2 & 7.3 and the timing looks like it should align for IRIS 2023.3.
Previous Updates
We haven’t made any changes to the list of supported AIX versions since AIX 7.3 was added and 7.1 removed in IRIS 2022.1
Further Reading: AIX Lifecycle
Containers
Upcoming Changes
IRIS containers will only be tagged with the year and release, such as “2023.2” instead of the full build numbers we’ve been using in the past. This way, your application can, by default, pick up the latest maintenance build of your release.
We are also adding “latest-em” and “latest-cd” tags for the most recent extended maintenance and continuous distribution IRIS release. These will be good for demos, examples, and development environments.
We will also start to tag the preview containers with “-preview” so that it’s clear which container is the most recent GA release.
Previous Updates
We are now publishing multi-architecture manifests for IRIS containers. This means that pulling the IRIS container tagged 2022.3.0.606.0 will download the right container for your machine’s CPU architecture (Intel/AMD or ARM).
IRIS Development Operating Systems and CPU Architectures
MacOS
Recent Changes
We’ve added support for MacOS 13 in IRIS 2023.1
Upcoming Changes
Apple is anticipating MacOS 14 reaching GA in September with IRIS support to follow, likely in IRIS 2024.1
CentOS
We will be removing support for CentOS/CentOS Stream as of IRIS 2023.3.
Red Hat has been running a developer program for a few years now, which gives developers access to free licenses for non-production environments. Developers currently using CentOS are encouraged to switch to RHEL via this program.
CentOS Stream is now “upstream” of RHEL, meaning that it has bugs & features not yet included in RHEL. It also updates daily, which can cause problems for developers building on the platform (to say nothing of our own testing staff).
We haven’t made any changes to the list of supported CentOS versions since we added support for CentOS 8-Stream and removed support for CentOS 7.9 in IRIS 2022.1
InterSystems Components
InterSystems Kubernetes Operator (IKO)
IKO 3.6 was released last week.
Caché & Ensemble Production Operating Systems and CPU Architectures
Previous Updates
Cache 2018.1.7 adds support for Windows 11
InterSystems Supported Platforms Documentation
The InterSystems Supported Platforms documentation is the definitive source information on supported technologies.
IRIS 2023.1 Supported Server Platforms
IRIS 2022.1 Supported Server Platforms
IRIS 2021.1 Supported Server Platforms
Caché & Ensemble 2018.1.7 Supported Server Platforms
… and that’s all folks. Again, if there’s something more that you’d like to know about, please let us know. AIX 7.3 TL1 defaults to OpenSSL 3.x$oslevel -s ; openssl version ; uptime7300-01-02-2320OpenSSL 3.0.8 7 Feb 2023 (Library: OpenSSL 3.0.8 7 Feb 2023) 08:58AM up 72 days, 11:32, 16 users, load average: 7.04, 8.57, 9.52
IRIS containers will only be tagged with the year and release, such as “2023.2”
What about images on Docker Hub?
No latest-cd, no 2023.2, no multi-arch images?
In some cases, when I need speed of downloading images I preferer using this place
On AIX, the OpenSSL package that comes with AIX is structured differently than in other operating systems. The OpenSSL 3.x package comes with implementations of OpenSSL 1.0.2, 1.1.1, and 3.0. Sadly, the OpenSSL 3.0 implementation which is included in AIX 7.3 TL1 is missing a few features that are critical to correct operation with IRIS. So, currently versions of IRIS use the OpenSSL 1.0.2 implementation. IBM is readying their updated package with the fixes to the OpenSSL 3.0 implementation included. To add on to what Bob said, TL1 first release had the wrong SSL3 - it was not usable to compile some common open source packages because of some SSL configuration options. TL1 SP2 had a usable release. 02-2320 means week 20 so it was released in week 20 of the year.The 7.2 situation is more problematical. To me (just my opinion) it doesn't look like IBM plans to update the default SSL in 7.2 to 3. Instead they offer an optional download from the MRS web site with an up to date SSL3 and some other related components. Its not an ideal sys admin picture. It gets a little worse - lets say you want apache from their toolbox. The toolbox will make you get an SSL bundle from the MRS website.
Announcement
Evgeny Shvarov · Aug 29, 2023
Hi Developers!
Here're the technology bonuses for the InterSystems Python Contest 2023 that will give you extra points in the voting:
Embedded Python - 3
Python Native API - 3
Python Pex Interoperability - 4
Python libs: sqlalchemy and dbt - 2
LLM AI or LangChain usage: Chat GPT, Bard and others - 4
NoObjectScriptLine - 5
Questionnaire - 2
Docker container usage - 2
ZPM Package deployment - 2
Online Demo - 2
Implement InterSystems Community Idea - 4
Find a bug in Embedded Python - 2
First Article on Developer Community - 2
Second Article On DC - 1
First Time Contribution - 3
Video on YouTube - 3
See the details below.
Embedded Python - 3 points
Use Embedded Python in your application and collect 4 extra points. You'll need at least InterSystems IRIS 2021.2 for it.
Python Native API - 3 points
InterSystems IRIS introduces a Python Native API library that helps to interact with IRIS from python. Check the latest python community driver that gives the latest support for the majority of popular python libraries: sqlalchemy, dbt, etc. Use it and collect 3 extra points for your application.
Python Pex Interoperability - 4 points
InterSystems IRIS has Python Pex Interoperability module that provides the option to develop InterSystems Interoperability productions from Python. Use it and collect 3 extra points for your application. It's OK also to use alternative python.pex wheel introduced by Guillaume Ronguier in this proejct and template.
Python libs: sqlalchemy and dbt - 2
Use sqlachemy and dbt for IRIS community libs and collect 2 additional bonus points for each.
LLM AI or LangChain usage: Chat GPT, Bard and others - 4 points
Collect 6 bonus expert points for building a solution that uses LangChain libs or Large Language Models (LLM) such as ChatGPT, Bard and other AI engines like PaLM, LLaMA and more. AutoGPT usage counts too.
A few examples already could be found in Open Exchange: iris-openai, chatGPT telegram bot.
Here is an article with langchain usage example.
Pure Python(NoObjectScriptLine) - 5 points
We are introducing several python APIs in this contest! And the bonus is yet another challenge: build your python solution with InterSystems IRIS and try to avoid using even a line of ObjectScript! IRIS Classes with only Embedded Python methods are OK though. Do it and collect 5 bonus points more!
Here is a template that demonstrates how you can use IRIS without a line of ObjectScript. Yes, it contains ObjectScript classes for demo purpose but you can delete it in your app.
Questionnaire - 2
Share your feedback in this questionnaire and collect 2 extra points.
Docker container usage - 2 points
The application gets a 'Docker container' bonus if it uses InterSystems IRIS running in a docker container. Here is the simplest template to start from.
ZPM Package deployment - 2 points
You can collect the bonus if you build and publish the ZPM(InterSystems Package Manager) package for your Full-Stack application so it could be deployed with:
zpm "install your-multi-model-solution"
command on IRIS with ZPM client installed.
ZPM client. Documentation.
Online Demo of your project - 2 pointsCollect 2 more bonus points if you provision your project to the cloud as an online demo. You can do it on your own or you can use this template - here is an Example. Here is the video on how to use it.
Implement Community Opportunity Idea - 4 points
Implement any idea from the InterSystems Community Ideas portal which has the "Community Opportunity" status. This will give you 4 additional bonus points.
Find a bug in Embedded Python - 2 pointsWe want the broader adoption of InterSystems Embedded python, so we encourage you to report the bugs you will face during the development of your python application with IRIS in order to fix it. Please submit the bug here in a form of issue and how to reproduce it. You can collect 2 bonus points for the first reproducible bug.
Article on Developer Community - 2 points
Write a brand new article on Developer Community that describes the features of your project and how to work with it. Collect 2 points for the article.
The Second article on Developer Community - 1 point
You can collect one more bonus point for the second article or the translation regarding the application. The 3rd and more will not bring more points but the attention will all be yours.
First Time Contribution - 3 points
Collect 3 bonus points if you participate in InterSystems Open Exchange contests for the first time!
Video on YouTube - 3 points
Make the Youtube video that demonstrates your product in action and collect 3 bonus points per each.
The list of bonuses is subject to change. Stay tuned!
Good luck in the competition! Added a template release that demonstrates how you can use IRIS without a line of ObjectScript to let you collect 5 bonus points. Yes, the template contains ObjectScript classes but it is for demo purposes of using Python from ObjectScript only. We also added 2 points bonus option for Embedded Python bugs found - please report them here. And here is the related video how to use the template:
Thanks @Evgeny.Shvarov, nice template to start the embedded Python application Thanks @Muhammad.Waseem !
Announcement
Anastasia Dyubaylo · Sep 18, 2023
Hi Community,
It's voting time! Cast your votes for the best applications in our InterSystems Python Programming Contest 2023:
🔥 VOTE FOR THE BEST APPS 🔥
How to vote? Details below.
Experts nomination:
InterSystems experienced jury will choose the best apps to nominate the prizes in the Experts Nomination. Please welcome our experts:
⭐️ @Guillaume.Rongier7183, Sales Engineer⭐️ @Sylvain.Guilbaud, Sales Engineer⭐️ @akoblov, Senior Support Specialist⭐️ @Eduard.Lebedyuk, Senior Cloud Engineer⭐️ @Steve.Pisani, Senior Solution Architect⭐️ @Alex.Woodhead, Senior Systems Developer⭐️ @Andreas.Dieckow , Principal Product Manager⭐️ @Aya.Heshmat, Product Manager⭐️ @Benjamin.DeBoe, Product Manager⭐️ @Robert.Kuszewski, Product Manager⭐️ @Carmen.Logue , Product Manager⭐️ @Luca.Ravazzolo, Product Manager⭐️ @Raj.Singh5479, Product Manager⭐️ @Patrick.Jamieson3621, Product Manager⭐️ @Stefan.Wittmann, Product Manager⭐️ @tomd, Product Manager⭐️ @Daniel.Franco, Senior Manager - Interoperability Product Management⭐️ @Timothy.Leavitt, Development Manager⭐️ @Evgeny.Shvarov, Senior Manager of Developer and Startup Programs⭐️ @Dean.Andrews2971, Head of Developer Relations⭐️ @Jeffrey.Fried, Director of Product Management
Community nomination:
For each user, a higher score is selected from two categories below:
Conditions
Place
1st
2nd
3rd
If you have an article posted on DC and an app uploaded to Open Exchange (OEX)
9
6
3
If you have at least 1 article posted on DC or 1 app uploaded to OEX
6
4
2
If you make any valid contribution to DC (posted a comment/question, etc.)
3
2
1
Level
Place
1st
2nd
3rd
VIP Global Masters level or ISC Product Managers
15
10
5
Ambassador GM level
12
8
4
Expert GM level or DC Moderators
9
6
3
Specialist GM level
6
4
2
Advocate GM level or ISC Employees
3
2
1
Blind vote!
The number of votes for each app will be hidden from everyone. Once a day we will publish the leaderboard in the comments to this post.
The order of projects on the contest page will be as follows: the earlier an application was submitted to the competition, the higher it will be on the list.
P.S. Don't forget to subscribe to this post (click on the bell icon) to be notified of new comments.
To take part in the voting, you need:
Sign in to Open Exchange – DC credentials will work.
Make any valid contribution to the Developer Community – answer or ask questions, write an article, contribute applications on Open Exchange – and you'll be able to vote. Check this post on the options to make helpful contributions to the Developer Community.
If you changed your mind, cancel the choice and give your vote to another application!
Support the application you like!
Note: contest participants are allowed to fix the bugs and make improvements to their applications during the voting week, so don't miss and subscribe to application releases! So! After the first day of the voting, we have the following results:
Community Nomination, Top 5
iris-python-machinelearn by @André.DienesFriedrich
BardPythonSample by @@xuanyou.du
apptools-django by @MikhailenkoSergey
iris-GenLab by @Muhammad.Waseem
iris-vector by @Dmitry.Maslennikov
➡️ Voting is here.
Expert Nomination, Top 4
iris-vector by @Dmitry.Maslennikov
iris-recorder-helper by Alexey Nechaev
Face Login by @Yuri.Gomes
irisapitester by @Daniel.Aguilar
➡️ Voting is here.
Experts, we are waiting for your votes! 🔥 Devs!
Here are the results after two days of voting:
Community Nomination, Top 5
iris-python-machinelearn by @André Dienes Friedrich
BardPythonSample by @@xuanyou du
iris-vector by @Dmitry Maslennikov
native-api-py-demo by @shan.yue
iris-GenLab by @Muhammad Waseem
➡️ Voting is here.
Expert Nomination, Top 5
iris-vector by @Dmitry Maslennikov
iris-recorder-helper by Alexey Nechaev
Face Login by @yurimarx Marx
iris-GenLab by @Muhammad Waseem
irisapitester by @Daniel Aguilar
➡️ Voting is here.
So, the voting continues.
Please support the application you like! Hi, Dev's!
And here're the results at the moment:
Community Nomination, Top 5
iris-python-machinelearn by @André Dienes Friedrich
iris-vector by @Dmitry Maslennikov
BardPythonSample by @xuanyou du
iris-GenLab by @Muhammad Waseem
native-api-py-demo by @shan yue
➡️ Voting is here.
Expert Nomination, Top 5
iris-vector by @Dmitry Maslennikov
iris-recorder-helper by Alexey Nechaev
Face Login by @yurimarx Marx
iris-GenLab by @Muhammad Waseem
irisapitester by @Daniel Aguilar
➡️ Voting is here. Please check out today's voting results:
Community Nomination, Top 5
iris-vector by @Dmitry Maslennikov
iris-python-machinelearn by @André Dienes Friedrich
iris-GenLab by @Muhammad Waseem
BardPythonSample by @xuanyou d
native-api-py-demo by @shan yue
➡️ Voting is here.
Expert Nomination, Top 5
iris-GenLab by @Muhammad Waseem
iris-vector by @Dmitry Maslennikov
iris-recorder-helper by Alexey Nechaev
iris-python-machinelearn by @André Dienes Friedrich
native-api-command-line-py-client by @Robert.Cemper1003
➡️ Voting is here.
Keep voting!Our participants need your support! Last day of voting! ⌛
Our contestants need your votes! 📢
Voting is here!
Announcement
Olga Zavrazhnova · Sep 14, 2023
Hi Everyone,
Our next online Developer Roundtable will take place on September 28 at 9 am ET. Our experts will cover the topic:
"Running IRIS workloads in the cloud (AWS, GCP, Azure): VMs or Containers, networking setup, availability, mirrors, backups", presented by @Eduard.Lebedyuk , Senior Cloud Engineer, InterSystems
We will have time for Q&A and open discussion.
>> Watch the recording
Links mentioned in the call and chat:
🔗 Slide Deck "Running IRIS workloads in the cloud (AWS, GCP, Azure) by @Eduard.Lebedyuk , Senior Cloud Engineer, InterSystems
🔗 Article: Highly available IRIS deployment on Kubernetes without mirroring
🔗 Keep your docker iris images in shape - article by Guillaume Rongier
🔗 intersystems-iris-dev-template - basic template available on Open Exchange for a development environment to work with ObjectScript in InterSystems IRIS. It helps you edit, compile, commit/push, debug and test your ObjectScript code. It also aids in packaging your application as a module installable with IPM. The template is embedded python compatible.
🔗 Reference to Docs on Metrics: iris_cpu_usage Percent of CPU usage for all programs on the operating system
Not a Global Masters member yet? Log in using your InterSystems SSO credentials to join the program. Hi Community, roundtable starts in a few minutes. Join us using this link Hi Olga,Is the roundtable record available? Hi @Alexey.Maslov yes please see the recording hereWe discussed only 1 topic this time - Running IRIS workloads in the cloud;We will start the next roundtable with "Developing Python applications" demo by Evgeny Shvarov
Discussion
Sylvain Guilbaud · Sep 12, 2023
Hello Community,
Anyone who has (near or distant, with a preference for the 1st option) knowledge of the use of Amazon QuickSight with IRIS is invited to share his|her experience in this discussion.
Thanking you in advance.
Question
Ramil TK · Sep 18, 2023
I am planning upgrade my PC OS to windows 10 to Windows 11.
There is any compactibility issue is with windows 11 with JReport and Intersystes Studio.
Intersystems Studio Version: - InterSystems Studio Client 2021.1.0 Build 215Server IRIS for UNIX (Red Hat Enterprise Linux for x86-64) 2021.1 (Build 215_0_21953U)
JReport Designer Version :- JReport Designer 15.5
Anyone help to know there is any compactibility issue is there.
Thanks in Advance.
Announcement
Mihoko Iijima · Sep 20, 2023
Hello developers!
We are holding the first technical article contest on Japan's InterSystems Developer Community!
The first contest is a technical document writing contest, and you can submit any content related to the InterSystems IRIS/InterSystems IRIS for Health. (The article must be in Japanese.)
✍ InterSystems Japan Technical Document Writing Contest: Articles related to IRIS ✍
🎁 Participation prize: There will be a participation prize for everyone who submits an article for the contest.
🏆 Special prize: Authors of three selected works will receive special prizes.
Entering the contest is easy! Please post an article related to IRIS on the developer community during the period from Wednesday, September 6, 2023 to Monday, November 6, 2023.
➡️ Full details can be found in the original post.
Question
Brendan Blackford · Sep 14, 2023
Hi,
I am using the container image 2023.1 and am hitting a max total db size error. However, this post indicates that the issue should have been resolved in Community edition 2019.3
Avoid to exceed databases license limit in IRIS Community Edition | (intersystems.com)
The Community Edition license is limited to 10GB. Here's the full list of license restrictions:https://docs.intersystems.com/irislatest/csp/docbook/DocBook.UI.Page.cls?KEY=ACLOUD#ACLOUD_limits ok, good to know. Thanks Bob Thanks Bob - that's a great reference to be aware of (I hadn't seen it in the docs before)
Announcement
Raj Singh · Jan 10, 2023
We have just released a minor update to the package manager, which has been renamed from ZPM to IPM as I explained in November. It purely a bug fix release, properly interpreting ROBOCOPY return codes and fixing a regression that prevented installation of certain packages.
Get it here:
https://github.com/intersystems/ipm/releases/tag/v0.5.2