During an SAP migration to AWS, the migration team faces a challenge with the Transport Management System (TMS). The SAP system landscape includes development, quality assurance, and production systems running on separate EC2 instances. The TMS is configured with transport routes between these systems. After migration, transports fail with errors related to missing files on the transport directory. What should the team do to ensure the TMS works correctly?
Amazon EFS provides a fully managed NFS file system that can be mounted on multiple EC2 instances, making it the ideal shared transport directory for TMS.
Why this answer
The Transport Management System (TMS) requires a shared transport directory accessible by all SAP instances (DEV, QAS, PRD). Option B is correct because Amazon EFS provides a scalable NFS file system that can be mounted on multiple EC2 instances simultaneously, satisfying the shared storage requirement. Option A is incorrect because EBS volumes are block storage that can only be attached to a single instance; manual file copying is not feasible for ongoing TMS operations.
Option C is incorrect because mounting an S3 bucket via S3FS introduces performance and consistency issues; S3 is object storage not designed for low-latency file sharing required by TMS. Option D is incorrect because AWS Storage Gateway with SMB file share adds unnecessary complexity; EFS with NFS is the standard and simpler solution for shared transport directories in SAP on AWS.