Skip to content
DataMiner DoJo

More results...

Generic selectors
Exact matches only
Search in title
Search in content
Post Type Selectors
Search in posts
Search in pages
Search in posts
Search in pages
Log in
Menu
  • Blog
  • Questions
  • Learning
    • E-learning Courses
    • Open Classroom Training
    • Certification
      • DataMiner Fundamentals
      • DataMiner Configurator
      • DataMiner Automation
      • Scripts & Connectors Developer: HTTP Basics
      • Scripts & Connectors Developer: SNMP Basics
      • Visual Overview – Level 1
      • Verify a certificate
    • Tutorials
    • Video Library
    • Books We Like
    • >> Go to DataMiner Docs
  • Expert Center
    • Solutions & Use Cases
      • Solutions
      • Use Case Library
    • Markets & Industries
      • Media production
      • Government & defense
      • Content distribution
      • Service providers
      • Partners
      • OSS/BSS
    • DataMiner Insights
      • Security
      • Integration Studio
      • System Architecture
      • DataMiner Releases & Updates
      • DataMiner Apps
    • Agile
      • Agile Webspace
      • Everything Agile
        • The Agile Manifesto
        • Best Practices
        • Retro Recipes
      • Methodologies
        • The Scrum Framework
        • Kanban
        • Extreme Programming
      • Roles
        • The Product Owner
        • The Agile Coach
        • The Quality & UX Coach (QX)
    • DataMiner DevOps Professional Program
  • Downloads
  • More
    • Feature Suggestions
    • Climb the leaderboard!
    • Swag Shop
    • Contact
      • General Inquiries
      • DataMiner DevOps Support
      • Commercial Requests
    • Global Feedback Survey
  • PARTNERS
    • All Partners
    • Technology Partners
    • Strategic Partner Program
    • Deal Registration
  • >> Go to dataminer.services

DCF – How to remove all internal connections after element startup

Solved1.48K views8th December 2020DCF protocol QAction
2
Jens Vandewalle [SLC] [DevOps Enabler]9.44K 5th December 2020 0 Comments

I have a dummy matrix driver with no data source connected. There is no matrix component used in the protocol, only source and destination tables. The crosspoints aren't saved, so after a restart a need to remove all my internal DCF connections.

The problem is that in below code the interfaces doesn't get loaded in the after startup QAction although the startupCheck boolean is set to true. Can someone explain me why?

Jens Vandewalle [SLC] [DevOps Enabler] Selected answer as best 8th December 2020

3 Answers

  • Active
  • Voted
  • Newest
  • Oldest
2
Mieke Dryepondt [SLC] [DevOps Advocate]3.58K Posted 8th December 2020 0 Comments

Hi Jens,
As I understand this is for simulation / demo purpose.
In that case I understand you want to delete all the Connections at startup.
Would it be possible to test by retrieving all of the interfaces instead of already filtering on ParameterGroup

For example:
using (dcfhelper dcf = new dcfhelper(protocol, true, new dcfmappingoptions { pidcurrentconnections = parameter.map_connections, pidcurrentconnectionproperties = parameter.map_connectionproperties, helpertype = syncoption.custom }))
{
foreach (connectivityinterface itf in dcf.getinterfaces(new dcfdynamiclink(string.format("{0}/{1}", protocol.dataminerid, protocol.elementid), null))[0].allinterfaces)
{
protocol.log("interface name: " + itf.interfacename + " | " + itf.dynamiclink);
}
}

Jens Vandewalle [SLC] [DevOps Enabler] Selected answer as best 8th December 2020
3
Thijs Vanovenacker [SLC] [DevOps Advocate]2.08K Posted 7th December 2020 0 Comments

Hi Jens,
I'm not convinced it makes sense to remove all the internal connections after element startup. As you mentioned the current crosspoint info (in tables) are not saved, I imagine that as soon as possible after startup this content will be requested (polled) and updated into the element card. (offloaded in the tables)

I think it's a lot of overkill to after startup clean ALL connections, and after a couple of seconds when you receive the current connection scheme to then (re)create all those connections. In most cases the amount of matrix switches that will happen while an element or DataMiner restarts will be rather low.

Instead, what you probably should do is:

  1. After element startup: guarantee the latest matrix info is requested asap and pushed into the respective tables.
  2. Sync your internal DCF Connections: new connections should be added, disconnects should be removed, and changes should be updated. By using the DCF Helperclasses most of that logic is already available to be used.

That way you don't necessarily remove all your internal DCF connections (!! with possible DCF connection properties on) over and over with each element restart.

This solution will bring less load, and should have functionally a better result.

Good luck! If you have doubts or more questions: please share

Thijs Vanovenacker [SLC] [DevOps Advocate] Answered question 7th December 2020
2
Avatar photo
Jan Staelens [SLC] [DevOps Advocate]889 Posted 7th December 2020 0 Comments

Hello,

When using the DcfHelper class there is a safety built into the removal so that it only removes items that were created by that element in the past.

If you want to remove connections that may have been created from a different location you have to set the 'force' boolean in the RemoveConnections method to true. That could be the reason for the behaviour you're seeing.

If the Startup check boolean is set to true, you should be guaranteed all connections & interfaces are present after startup, unless you're trying to manipulate an interface that was added at runtime.

Though as indicated bij Thijs in another answer. Always removing all information at startup is a bad idea. Manipulating DCF can be heavy so you should avoid a lot of removal & creation where it's not necessary. Better to leave the information and then remove/create/update as required.

Jan Staelens [SLC] [DevOps Advocate] Answered question 7th December 2020
Please login to be able to comment or post an answer.

My DevOps rank

DevOps Members get more insights on their profile page.

My user earnings

0 Dojo credits

Spend your credits in our swag shop.

0 Reputation points

Boost your reputation, climb the leaderboard.

Promo banner DataMiner DevOps Professiona Program
DataMiner Integration Studio (DIS)
Empower Katas

Recent questions

DOM Definition relations returned in Definition query 0 Answers | 0 Votes
Alarm Dashboard PDF/CSV Export 1 Answer | 0 Votes
Is the Microsoft SharePoint Connector Still Usable 0 Answers | 0 Votes

Question Tags

adl2099 (115) alarm (62) Alarm Console (82) alarms (100) alarm template (83) Automation (223) automation scipt (111) Automation script (167) backup (71) Cassandra (180) Connector (108) Correlation (68) Cube (150) Dashboard (194) Dashboards (188) database (83) DataMiner Cube (57) DIS (81) DMS (71) DOM (140) driver (65) DVE (55) Elastic (83) Elasticsearch (115) elements (80) Failover (104) GQI (159) HTTP (76) IDP (74) LCA (152) low code app (166) low code apps (93) lowcodeapps (75) MySQL (53) protocol (203) QAction (83) security (88) services (51) SNMP (86) SRM (337) table (54) trending (87) upgrade (62) Visio (539) Visual Overview (345)
Privacy Policy • Terms & Conditions • Contact

© 2025 Skyline Communications. All rights reserved.

DOJO Q&A widget

Can't find what you need?

? Explore the Q&A DataMiner Docs

[ Placeholder content for popup link ] WordPress Download Manager - Best Download Management Plugin