Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The first time the script runs, it is going to request all the data for each configured poller. Next time, it is going to request only the modified data since the last synchronisation. 

3.0.3 Beta

  • Support for node deletion on the pollers. When a node was deleted on the poller, all this data wasn’t remove on the master. Now the pull process is going to remove nodes and associated data that was removed on the poller.
  • Retry policy on pull failures: If there was a failure during the poller update, the pull finished. Now it is possible to specify a retry policy:
    • retry number: How many times retry a request before finish the process unsuccessfully. 3 is the default value.
    • delay: How many seconds is going to wait between retries (5 seconds by default).
  • It is possible to modify this params in opCommon.nmis:


Code Block
'opha_transfer_chunks' => { 
      'inventory' => 500, 
      'nodes' => 500, 
      'events' => 500, 
      'status' => 500, 
      'latest_data' => 500,
      'retry_number' => 3,
      'delay' => 5
    },


Note that if no option is specified, there is not going to do any retry. 

Also, note that if a poller is down, the process is going to take retry_number * delay seconds to finish. 

  • Show the registry synchronised data on the GUI. 
  • Small improvements on the GUI. 

3.0.2-1 Beta

Hot fix to solve the problem of visualise the nodes graphics of the poller from the master. 

...