Posts

Showing posts from January, 2018

REST VS SOAP VS THRIFT

Features REST SOAP Thrift Extensibility ☆☆☆☆☆ ☆☆☆ ☆ Neutrality ☆☆ ☆☆☆☆ ☆☆☆ Independence ☆ ☆☆☆ ☆☆☆☆ Large Data Handling ☆ ☆☆☆☆☆ ☆☆☆ Scalability ☆☆☆☆ ☆☆ ☆☆☆☆☆ Portability ☆☆☆ ☆ ☆☆☆☆ Simplicity ☆☆☆ ☆☆ ☆☆☆☆☆ Speed ☆☆☆ ☆ ☆☆☆☆☆ Evolution ☆☆ ☆ ☆☆☆☆☆

API GW - Features

Image

Handling Partial Failure - API GW

Handling Failure through API GW: We have the following ways to handling the Failure(s) . 1) Partial Response to the Consumers : Consumer invoke the GW's Endpoints which will aggregate more than one endpoints internally , one of the Endpoint will fail due to some reason . In the ideal world client will receive the error in the response . But in GW with MSA world , client will receive the partial response from those active services 2) Response from cache: Instead of receiving the Error in the response , Client will receive the response from Cache if any service(s) are in inactive mode. In the API GW world , We can restricted to reach the request to the Service when the services are in inactive mode through Circuit breaker Pattern. It will not allow to reach the client to server if the service(s) are down Ref https://www.nginx.com/resources/webinars/mra-ama-part-7-circuit-breaker-pattern/?mkt_tok=eyJpIjoiTlRnd1ptWTJPR0U1TUdKbCIsInQiOiJtTmc5Yzcra3pRSWZqRFVQekpmenFzW...

Sample Maturity Model -Exercise

EA Interview Questions

Hello all ,  What is Enterprise Architecture?  2. Typically, what stakeholders would be involved in the Enterprise Architecture lifecycle?  3. What is an architectural pattern?  4. How do you manage changes to the Enterprise Architecture in  a turbulent environment?  5. What recent technology trends are important to Enterprise Architecture?  6. What are the most important artifacts of an Enterprise Architecture?  7. Walk me through a time when you led Enterprise change.  8. What personal qualities make a good Enterprise Architect out?  9. How do you sell the benefits of SOA to executives?  10. How does Enterprise Architecture support business goals and strategy?  11. How can you tell if an Enterprise Architecture is comprehensive?  12. Is it possible to calculate ROI for SOA?  13. How do you go about identifying the key business activities in an organization’s value-chain?  14. C...