This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Act as a Senior Capital Markets Solution Architect. | |
| Design an enterprise-grade, cloud-native Security Master platform for a financial institution consuming reference and market data from S&P Global Market Intelligence. | |
| The solution must be deployed on Microsoft Azure, use event-driven principles, and expose data to downstream systems via REST APIs. | |
| 1️⃣ Ingestion Layer | |
| API-based ingestion implemented using Spring Boot. | |
| File-based ingestion via AutoSys jobs running on Linux VM over SFTP. | |
| Secure credential storage using Azure Key Vault. | |
| Idempotent ingestion with retry, rate-limit handling, and delta processing. | |
| Support both full loads and incremental updates. | |
| 2️⃣ Data Processing & Storage |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class CustomRentrantLock { | |
| public static void main(String[] args) { | |
| LockCustom LockCustom=new ReentrantLockCustom(); | |
| MyRunnable myRunnable=new MyRunnable(LockCustom); | |
| new Thread(myRunnable,"Thread-1").start(); | |
| new Thread(myRunnable,"Thread-2").start(); | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class Main { | |
| public static void main(String[] args) { | |
| ThreadPool pool = new ThreadPool(7); | |
| for (int i = 0; i < 5; i++) { | |
| Task task = new Task(i); | |
| pool.execute(task); | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Enable component-scanning and auto-configuration with @SpringBootApplication Annotation | |
| // It combines @Configuration + @ComponentScan + @EnableAutoConfiguration | |
| @SpringBootApplication | |
| public class FooApplication { | |
| public static void main(String[] args) { | |
| // Bootstrap the application | |
| SpringApplication.run(FooApplication.class, args); | |
| } | |
| } |