Courseiva

CCNA Sap Operations Questions

10 of 460 questions · Page 7/7 · Sap Operations topic · Answers revealed

451
MCQmedium

A company is running a critical web application on EC2 instances behind an Application Load Balancer. During a recent deployment, a new version of the application was released, and within minutes, the error rate spiked. The operations team rolled back the deployment, but the error rate remained high. The team suspects that the ALB is still routing traffic to unhealthy instances. Which step should the team take to immediately stop routing traffic to the problematic instances?

A.Modify the ALB listener rules to point to a different target group.
B.Modify the health check interval to 5 seconds and the unhealthy threshold to 2.
C.Stop the EC2 instances from the AWS Management Console.
D.Deregister the instances from the target group.
AnswerD

Deregistering immediately stops routing traffic to those instances.

Why this answer

Deregistering the problematic EC2 instances from the target group immediately stops the Application Load Balancer from routing any new traffic to them. The ALB performs health checks on registered targets, but if an instance is unhealthy, it still remains in the target group and can receive traffic if the health check logic is misconfigured or if the instance is in a 'draining' state. Deregistration forces the ALB to complete any in-flight requests and then remove the instance from the routing table, providing an immediate stop to traffic.

Exam trap

The trap here is that candidates often confuse 'health check failure' with 'immediate traffic removal,' not realizing that health checks only update the instance's status but do not stop traffic until the instance is explicitly deregistered or the health check threshold is met, which introduces a delay.

How to eliminate wrong answers

Option A is wrong because modifying the ALB listener rules to point to a different target group does not stop traffic to the problematic instances; it only changes the routing target for new requests, but the original target group and its unhealthy instances remain active and could still receive traffic if the listener rules are not fully replaced or if there are overlapping rules. Option B is wrong because modifying the health check interval to 5 seconds and the unhealthy threshold to 2 would only accelerate the detection of unhealthy instances, but it does not immediately stop traffic; the ALB would still route requests to instances until they are marked unhealthy, which could take up to 10 seconds (2 checks × 5 seconds), and during that time errors persist. Option C is wrong because stopping the EC2 instances from the AWS Management Console will terminate the instances, but this action is disruptive and does not leverage the ALB's built-in traffic control; it also does not gracefully drain connections, potentially causing dropped requests, and it is not the recommended method for removing instances from load balancing.

452
MCQhard

An SAP system administrator notices that an SAP HANA database on AWS is experiencing high memory usage and slow query performance. The administrator wants to identify the root cause. Which Amazon CloudWatch metric should be analyzed first?

A.SwapUsage
B.NetworkIn
C.CPUUtilization
D.DiskQueueDepth
AnswerA

SwapUsage is the correct metric. High swap usage indicates memory pressure, which can cause slow query performance.

Why this answer

SwapUsage is the correct metric to analyze first because high swap usage indicates that the system is running out of physical memory, causing it to use disk-based swap space. This can directly lead to slow query performance due to increased I/O and memory pressure. The other metrics are less directly related: CPUUtilization may not reflect memory issues, NetworkIn is unrelated to memory, and DiskQueueDepth relates to disk I/O, not memory.

453
MCQhard

A company runs SAP on AWS with a distributed system: an SAP Central Services (ASCS) instance, a primary application server (PAS), and additional dialog instances (DI). All instances are in a single Availability Zone. The company wants to implement high availability for the ASCS instance using a shared filesystem for the /sapmnt directory. The ASCS instance uses a single EBS volume for /sapmnt. The operations team plans to use a Network File System (NFS) solution to share /sapmnt between instances. Which approach should the team use to achieve a highly available shared filesystem?

A.Use Amazon FSx for Windows File Server to host the /sapmnt share.
B.Use an instance store volume on the ASCS instance and share it via NFS.
C.Create a secondary EBS volume and attach it to both the ASCS and PAS instances, then use a cluster-aware filesystem like OCFS2.
D.Deploy Amazon EFS and mount it on all instances as /sapmnt.
AnswerD

EFS is a managed NFS service that is highly available and persistent.

Why this answer

Amazon EFS provides a managed NFS filesystem that is highly available and durable across multiple Availability Zones, eliminating the single point of failure. It can be mounted on multiple EC2 instances simultaneously, making it suitable for sharing /sapmnt. Option A is incorrect because Amazon FSx for Windows File Server is designed for Windows-based workloads, not Linux-based SAP systems.

Option B is incorrect because instance store volumes are ephemeral and data is lost on instance stop/termination. Option C is incorrect because a single EBS volume cannot be attached to multiple instances simultaneously (except with a cluster filesystem like OCFS2, which is complex and not recommended for this use case).

Exam trap

Candidates may think that a shared EBS volume with a cluster filesystem is the way to go, but Amazon EFS is a fully managed NFS solution that provides high availability without requiring manual clustering.

454
MCQeasy

Your company runs an SAP ERP system on AWS. The SAP application servers are in an Auto Scaling group across two Availability Zones. The SAP HANA database runs on a single EC2 instance with multiple EBS volumes. Recently, the database instance experienced a failure due to an underlying hardware issue, and you had to recover from an EBS snapshot. The recovery took longer than expected, and management wants to reduce the recovery time objective (RTO). What should you do to achieve a lower RTO for the HANA database?

A.Create more frequent EBS snapshots and store them in Amazon S3
B.Increase the size of the EBS volumes and use Provisioned IOPS
C.Use an Auto Scaling group for the database instance
D.Set up SAP HANA System Replication to a secondary instance in a different Availability Zone
AnswerD

System replication provides a hot standby that can be failed over quickly.

Why this answer

SAP HANA System Replication to a secondary instance in a different Availability Zone provides near-synchronous replication, enabling automatic failover in minutes. This significantly reduces RTO compared to recovering from EBS snapshots, which can take hours depending on volume size. Option D is correct because it directly addresses the need for faster recovery.

455
Multi-Selecthard

An SAP administrator is troubleshooting a performance issue where the SAP application is slow. The administrator suspects that the EBS volumes are not meeting performance requirements. Which THREE metrics should be examined in Amazon CloudWatch to confirm this? (Choose THREE.)

Select 3 answers
A.VolumeQueueLength
B.VolumeReadBytes
C.VolumeWriteBytes
D.CPUCreditBalance
E.BurstBalance
AnswersA, B, C

Indicates pending I/O requests.

Why this answer

Options A, B, and C are correct. VolumeQueueLength indicates the number of pending I/O requests, which can point to performance bottlenecks. VolumeReadBytes and VolumeWriteBytes measure the throughput of read and write operations, respectively.

Option D (CPUCreditBalance) is related to CPU credits for burstable instances, not EBS performance. Option E (BurstBalance) tracks EBS burst credits but is not among the primary metrics to confirm EBS volume performance issues; the three chosen metrics directly address I/O queue depth and throughput.

Exam trap

While BurstBalance is an EBS metric for volumes with burst capability (gp2, st1, sc1), it is not one of the three metrics that directly confirm a performance bottleneck. A low BurstBalance indicates that burst credits are depleted, but the primary indicators of a performance issue are I/O queue depth (VolumeQueueLength) and throughput (VolumeReadBytes/VolumeWriteBytes). Candidates may mistakenly think BurstBalance is a primary metric, but it is not among the top three for troubleshooting performance.

456
Multi-Selecthard

A company runs SAP HANA on EC2 with a Multi-AZ deployment. The database uses EBS volumes for /hana/data and /hana/log. The operations team needs to implement a disaster recovery strategy with a Recovery Point Objective (RPO) of 15 minutes and Recovery Time Objective (RTO) of 2 hours. Which THREE actions should be taken? (Choose THREE.)

Select 3 answers
A.Take periodic EBS snapshots of the data and log volumes
B.Use AWS CloudFormation to automate the creation of DR infrastructure
C.Migrate the database to Amazon RDS for SAP HANA
D.Configure SAP HANA system replication to a secondary instance in a different AWS Region
E.Use AWS Database Migration Service (DMS) for continuous replication
AnswersA, B, D

Snapshots provide additional recovery points.

Why this answer

Options A, B, and D are correct. A: EBS snapshots provide a backup mechanism for data and log volumes, contributing to the RPO. B: AWS CloudFormation automates the creation of DR infrastructure in another region, helping to achieve the RTO.

D: SAP HANA system replication provides near-synchronous replication to a secondary instance, meeting the RPO of 15 minutes. C is incorrect because Amazon RDS for SAP HANA is not suitable for DR of an existing EC2-based HANA system; it would require migration and does not align with the given architecture. E is incorrect because AWS DMS is designed for database migrations, not for continuous replication of SAP HANA.

457
Multi-Selecteasy

An SAP Basis administrator needs to apply security patches to the operating system of SAP EC2 instances. The administrator wants to use AWS Systems Manager Patch Manager. Which THREE steps are required to set up patching? (Choose THREE.)

Select 3 answers
A.Create a patch baseline in AWS Systems Manager.
B.Create an AWS Lambda function to invoke the patching process.
C.Install the AWS Systems Manager Agent (SSM Agent) on each EC2 instance.
D.Configure Amazon CloudWatch Logs to store patch logs.
E.Associate the instances with a maintenance window.
AnswersA, C, E

The patch baseline defines approved and rejected patches.

Why this answer

To set up patching with AWS Systems Manager Patch Manager, you need three steps: Create a patch baseline (A) to define which patches to apply. Install the SSM Agent on each EC2 instance (C) to allow Systems Manager to communicate with the instances. Associate the instances with a maintenance window (E) to schedule when patching occurs.

Options B and D are not required: Lambda is not needed because Patch Manager handles the patching process, and CloudWatch Logs are not mandatory for patching operations.

458
MCQeasy

An administrator needs to restore an SAP HANA database from a backup stored in Amazon S3. The backup was created using AWS Backup. Which AWS service should be used to perform the restore?

A.AWS Backup
B.AWS Systems Manager
C.Amazon S3
D.AWS Database Migration Service
AnswerA

AWS Backup can restore HANA backups to EC2 instances.

Why this answer

AWS Backup is the correct service because the backup was created using AWS Backup, and AWS Backup provides native restore capabilities for SAP HANA databases. It automates the restore process by directly interacting with the underlying Amazon S3 storage where the backup resides, ensuring consistency with the backup metadata and recovery point objectives (RPOs).

Exam trap

The trap here is that candidates mistakenly think Amazon S3 itself can perform the restore, overlooking that AWS Backup is the service that manages the backup lifecycle and restore orchestration for SAP HANA databases.

How to eliminate wrong answers

Option B (AWS Systems Manager) is wrong because it is an operations management service for patching, automation, and configuration, not a backup restore tool for SAP HANA databases. Option C (Amazon S3) is wrong because while S3 stores the backup data, it does not provide the orchestration or SAP HANA-specific restore logic required to recover the database; AWS Backup handles the restore workflow. Option D (AWS Database Migration Service) is wrong because it is designed for migrating databases to AWS or between database engines, not for restoring from a backup created by AWS Backup.

459
MCQhard

An SAP Basis team is troubleshooting a performance issue on an SAP HANA database running on AWS. The HANA index server is consuming high CPU. The team suspects that the underlying EC2 instance is throttled. Which CloudWatch metric should be checked to confirm CPU throttling?

A.CPUUtilization
B.NetworkIn
C.CPUCreditBalance
D.DiskReadOps
AnswerC

Indicates CPU throttling for T2/T3 instances.

Why this answer

CPUCreditBalance indicates the number of CPU credits available for burstable performance instances. If the credit balance is depleted, the instance is throttled, which can cause high CPU usage with limited performance. Option A (CPUUtilization) shows CPU usage but does not directly indicate throttling.

Option B (NetworkIn) and Option D (DiskReadOps) are unrelated to CPU throttling.

460
Multi-Selectmedium

Which TWO of the following are best practices for monitoring SAP on AWS? (Choose 2)

Select 2 answers
A.Set up Amazon CloudWatch alarms for HANA database metrics
B.Use SAP EarlyWatch Alert to monitor the SAP system
C.Disable detailed monitoring on EC2 instances to reduce costs
D.Manually review system logs weekly
E.Take daily EBS snapshots of the HANA data volume
AnswersA, B

CloudWatch alarms provide automated notification of metric thresholds.

Why this answer

Options A and B are correct. A: Amazon CloudWatch alarms for HANA database metrics enable proactive detection of performance issues, such as high memory or CPU usage, which is critical for SAP systems. B: SAP EarlyWatch Alert (EWA) provides periodic health checks and recommendations, making it a standard best practice for monitoring.

Option C is incorrect because disabling detailed monitoring reduces visibility into EC2 instance performance, harming monitoring capabilities. Option D is incorrect because manual log reviews are not scalable or timely for production systems. Option E is incorrect because EBS snapshots are for backup and disaster recovery, not real-time monitoring.

← PreviousPage 7 of 7 · 460 questions total

Ready to test yourself?

Try a timed practice session using only Sap Operations questions.