Nouvelle publication

検索

Annonce
· Avr 11

[Video] Integrating DBT and Apache Airflow with InterSystems IRIS

Hi Community,

Enjoy the new video on InterSystems Developers YouTube:

⏯ Integrating DBT and Apache Airflow with InterSystems IRIS @ Global Summit 2024

This session is your guide to setting up efficient, manageable data pipelines that save time and boost reliability. We'll show you how to bring together the processing power of dbt, the scheduling strength of Apache Airflow, and the robust data management capabilities of InterSystems IRIS. By the end of this session, you'll have a clear understanding of how to implement these tools in harmony, making your data workflows smoother and more effective. This is perfect for those looking to enhance their data operations with straightforward, effective solutions.

Presenters:
🗣 @Reven Singh, Sales Engineer, InterSystems  
🗣 @Herman Bruwer, Sales Engineer, InterSystems  

Want to learn something new? Watch the video and subscribe for more!

Discussion (0)1
Connectez-vous ou inscrivez-vous pour continuer
Annonce
· Avr 11

Les inscriptions sont ouvertes pour l'InterSystems READY 2025 !

Bonjour à tous,

Nous sommes heureux d'annoncer que les inscriptions pour l'événement de l'année — InterSystems Ready 2025 — sont désormais ouvertes. C'est le Global Summit que nous connaissons et apprécions tous, mais avec un nouveau nom !

➡️ InterSystems Ready 2025

🗓 Dates : 22-25 juin 2025

📍 Lieu : Signia Hilton Bonnet Creek, Orlando, Floride, États-Unis

  

InterSystems READY 2025 est un espace convivial et informatif pour la communauté InterSystems, propice aux rencontres, aux échanges et à l'échange de connaissances.

L'événement READY 2025 comprend :

  • Sessions : 3 jours et demi de sessions adaptées aux besoins des développeurs et des responsables logiciels. Les sessions sont répétées pour que vous puissiez les suivre et planifier votre emploi du temps.
  • Conférences inspirantes : Des présentations qui remettent en question vos hypothèses et mettent en lumière de nouvelles possibilités.
  • Prochaines étapes : Lors des conférences et des ateliers, vous découvrirez le programme d'InterSystems et serez prêt à affronter les nouvelles technologies.
  • Réseautage : Rencontrez les dirigeants d'InterSystems, les membres de nos équipes mondiales produit et innovation, ainsi que vos pairs du monde entier pour discuter de vos priorités.
  • Ateliers et formations personnalisées : Plongez au cœur de vos besoins avec un expert InterSystems, y compris lors d'entretiens individuels.
  • Programme pour startups : Présentez votre technologie, entrez en contact avec des acheteurs potentiels et découvrez comment InterSystems peut vous aider à accélérer la croissance de votre entreprise.
  • Pavillon des partenaires : Vous recherchez un consultant, un intégrateur de systèmes ou des outils pour simplifier votre travail ? Tout est dans le pavillon.
  • Animations : Démos et boissons, Tech Exchange et autres événements.

Découvrez les tarifs sur le site officiel et n'oubliez pas que la réduction pour les inscriptions anticipées expire le 16 avril !

Nous avons hâte de vous retrouver à InterSystems Ready 2025 !

Discussion (0)1
Connectez-vous ou inscrivez-vous pour continuer
Question
· Avr 11

Does deleting a StreamContainer delete the contained Stream Object?

Hey everyone.

I'm currently looking at a process where we're utilising the Class Ens.StreamContainer, and was looking to do some deletions outside of any purge routines.

Having been burned before, I wanted to make sure that deleting the container also deletes the contents within.

From looking in the class, the  %OnDelete ClassMethod appears to be removing an index from a search table and nothing more.

Am I looking in the right place, or is there a extended class for Ens.StreamContainer that does in fact delete the %Stream.Object
contained within the Ens.StreamContainer?

2 Comments
Discussion (2)1
Connectez-vous ou inscrivez-vous pour continuer
Annonce
· Avr 11

Registration is open for the InterSystems READY 2025!

Hi Community,

We're happy to announce that registration for the event of the year — InterSystems Ready 2025 — is now open. This is the Global Summit we all know and love, but with a new name!

➡️ InterSystems Ready 2025

🗓 Dates: June 22-25, 2025

📍 Location: Signia Hilton Bonnet Creek, Orlando, FL, USA

  

InterSystems READY 2025 is a friendly and informative environment for the InterSystems community to meet, interact, and exchange knowledge. 

READY 2025 event includes:

  • Sessions: 3 and a half days of sessions geared to the needs of software developers and managers. Sessions repeat so you don’t have to miss out as you build your schedule.
  • Inspiring keynotes: Presentations that challenge your assumptions and highlight new possibilities.
  • What’s next: In the keynotes and breakout sessions you’ll learn what’s on the InterSystems roadmap, so you’ll be ready to go when new tech is released.
  • Networking: Meet InterSystems executives, members of our global product and innovation teams, and peers from around the world to discuss what matters most to you.
  • Workshops and personal training: Dive into exactly what you need with an InterSystems expert, including one-on-ones.
  • Startup program: Demonstrate your tech, connect with potential buyers, and learn how InterSystems can help you accelerate growth of your business.
  • Partner Pavilion: Looking for a consultant, systems integrator, tools to simplify your work? It’s all in the pavilion.
  • Fun: Demos and Drinks, Tech Exchange, and other venues.

Learn more about the prices on the official website and don't forget that the super early bird discount lapses on April 16th

We look forward to seeing you at the InterSystems Ready 2025!

Discussion (0)3
Connectez-vous ou inscrivez-vous pour continuer
Question
· Avr 11

Subroutine execution issues in WorkMgr

Hello Community,

The subroutine ^routine is not executed while the queue is being processed in WorkMgr. However, it works when defined as a function. Is it mandatory to define subroutine^routine as a function for it to execute properly?

testwqm.mac
 set wqm = ##class(%SYSTEM.WorkMgr).%New()
 set sc=wqm.Queue("subr1^testwqm")  ; not executing the subr1 
 set sc=wqm.Queue("subr2^testwqm") ; executing the subr2 properly
 set sc=wqm.Queue("subr1") ; executing the subr1 properly
 quit
subr1
 set ^test("subr1",$NOW())=$LB($USERNAME,$ROLES)
 quit
 ;
subr2()
 set ^test("subr2",$NOW())=$LB($USERNAME,$ROLES)
 quit

Thanks!

3 Comments
Discussion (3)2
Connectez-vous ou inscrivez-vous pour continuer