cancel
Showing results for 
Search instead for 
Did you mean: 

Syndicating the right record

Former Member
0 Kudos

hi All

we are working on Central master data mgmt scenario in MDM. portal is used for creating new records and upon Approval they shud b syndicated to remote system. We are using Java API AddSyndicationrecord ID from portal to syndicate and passing the record ID(which has been newly created and modified via Portal), Port code and remote system details to API.

In the port we have assigned the syndication map with suppress unchanged records propety.

We have observed that syndication from Portal fails at some times but at the same time if we try from Syndication Manager its working. we have not done any changes in code. Also we are destroying all connections via Destroysession command API.

When we resatrt the MDM server syndication has started working from Portal. Any ideas why MDM is behaving like this?

Please help.

Thanks

Ravi Kumar

Accepted Solutions (1)

Accepted Solutions (1)

sunil_singh13
Active Contributor
0 Kudos

Hello Ravi,

You can set the max number of connection in your code.

In other words the no of connection is upto you.

To achive the above you can use Interface ConnectionPool.

This interface defines the methods and properties for the connection pool. It allows for pooling connections to the server for optimal efficiency. A connection is the medium used to communicate with the MDM server.

The connection pool implementation maintains a minimum number of connections. In the process of reserving a connection, if a connection is available, the connection is immediately returned. If a connection is not available, a new connection is created if the maximum number of connections is not reached, otherwise the request is blocked until a connection is available.

The connection pool implementation also start up a background thread that checks the connections at a fix internal. A connection that is in a bad state, perhaps the MDM server was restarted, is removed.

All connection pools are associated with a connection source. A connection source is simply an identifier for grouping logically related connection pools. Connection source is mainly use for server notifications.

Thanks,

Sunil Singh

Former Member
0 Kudos

Thanks Sunil

How do we control this:The max number of connections allowed.

regards

Ravi

Answers (2)

Answers (2)

Former Member
0 Kudos

Thanks-Ravi

Former Member
0 Kudos

Hi everyone

Still looking for answers. we have also observed that if even 2/3 open connections are there syndication from Portal fails. what is the limitation for number of open connections in MDM for not affecting other services. We are on Sp06.

Any help/inputs will be higly appreciated.

regards

Ravi