Reputation: 91
I have recently deployed WSO2 API Manager (2.0.0) as 2 instance all-in-one clustered (using Hazelcast AWS scheme) with mysql datasource as specified in this link
Since, not able to find a complete step by step installation guide for this setup. I would like to clarify few areas that I am not too sure of.
<AutoCommit>true</AutoCommit>
. Should we have any concern on this?published
(even if the new API appears almost immediate on other publisher as created
)Thank you.
Upvotes: 2
Views: 523
Reputation: 12512
1) If you enable <AutoCommit>true</AutoCommit>
in both nodes, it can cause svn conflicts if there are parallel publishing from 2 nodes. Instead, you can publish to multiple gateways from the publisher. For that, you can configure multiple environments in <Environments>
section in api-manager.xml
2) Yes, DAS writes summarized data to that DB, and APIM dashboards read data from the same DB.
3) All publisher/store nodes should be in the same cluster. Then only they can communicate about API state changes etc. To be on the same cluster, all these nodes should have the same clustering domain. You can configure that in clustering
section of axis2.xml
.
Upvotes: 1