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
  • Updates & Insights
  • Questions
  • Learning
    • E-learning Courses
    • Empower Replay: Limited Edition
    • Tutorials
    • Open Classroom Training
    • Agility
      • Kanban workshop
      • Agile Fundamentals
    • Certification
      • DataMiner Fundamentals
      • DataMiner Configurator
      • DataMiner Automation
      • Scripts & Connectors Developer: HTTP Basics
      • Scripts & Connectors Developer: SNMP Basics
      • Visual Overview – Level 1
      • Verify a certificate
    • 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
    • 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
      • About the DevOps Program
      • DataMiner DevOps Support
  • Downloads
  • More
    • DataMiner Releases & Updates
    • Feature Suggestions
    • Climb the leaderboard!
    • Swag Shop
    • Contact
    • Global Feedback Survey
  • Support
  • 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.57K views8th December 2020DCF protocol QAction
2
Jens Vandewalle [SLC] [DevOps Enabler]9.50K 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.65K 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.21K 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
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
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