Courseiva

Splunk Enterprise Certified Architect (SPLK-2002) (SPLK-2002) (SPLK-2002) — Questions 151185

185 questions total · 3pages · All types, answers revealed

Page 2

Page 3 of 3

151
Multi-Selectmedium

Which THREE metrics are critical for monitoring indexer health in the Monitoring Console?

Select 3 answers
A.Memory usage
B.Number of active apps
C.Number of logged-in users
D.Disk I/O latency
E.CPU utilization
AnswersA, D, E

Critical for operational stability.

Why this answer

CPU, disk I/O, and memory usage are the fundamental hardware metrics for indexer health.

152
MCQeasy

Which type of bucket is used for the most recent data and is generally searchable?

A.Warm
B.Cold
C.Frozen
D.Thawed
E.Hot
AnswerE

Hot buckets are active and searchable.

Why this answer

Hot buckets are where data is currently being ingested and they are always searchable.

153
MCQeasy

Which feature ensures that Search Head Cluster members share knowledge objects like saved searches and reports?

A.Cluster Master
B.Index-time extraction
C.Search Head Cluster replication
D.Bucket replication
E.Deployment Server
AnswerC

SHC members replicate knowledge objects via their internal replication service.

Why this answer

Search Head Cluster members synchronize knowledge objects automatically using the replication service configured on the replication port.

154
Multi-Selecteasy

Which TWO items are stored in the index directory?

Select 2 answers
A.License master keys
B.TSIDX files
C.Raw data files (compressed)
D.Search logs
E.App configuration files
AnswersB, C

The index files for fast searching.

Why this answer

The index directory stores the TSIDX files (for searching) and the raw data (the actual events).

155
MCQmedium

An architect is tasked with enabling SmartStore for an indexer cluster. What is the primary requirement for the remote storage backend?

A.A local RAID 10 array
B.An S3-compatible object store
C.A network-attached storage (NAS) with NFS v4
D.A SAN with Fibre Channel connectivity
AnswerB

SmartStore relies on S3-compatible APIs for object storage interaction.

Why this answer

SmartStore requires S3-compatible object storage (AWS S3, Google Cloud Storage, or Azure Blob Storage).

156
MCQmedium

An architect is designing an index lifecycle for compliance. The requirement is to keep data for exactly 7 years. Which setting must be configured to prevent premature deletion?

A.frozenTimePeriodInSecs
B.maxTotalDataSizeMB
C.maxWarmDBCount
D.maxHotSpanSecs
AnswerA

This is the setting that enforces retention length.

Why this answer

frozenTimePeriodInSecs must be set to the equivalent of 7 years in seconds.

157
MCQhard

What happens to a search job if the Search Head Cluster captain goes down during an active search?

A.The search head cluster becomes read-only.
B.Indexers stop processing data.
C.A new captain is elected and search jobs are recovered.
D.The entire cluster must be restarted.
E.The search job is canceled immediately.
AnswerC

The RAFT algorithm handles captain election and job recovery.

Why this answer

The cluster will elect a new captain, and the search job will typically resume or be re-dispatched by the new captain depending on the state of the job.

158
MCQhard

You are troubleshooting a KV store issue in an Indexer Cluster. Which command allows you to verify the status of the KV store and its replication on a node?

A.mongostat
B.splunk show kvstore-status
C.check_kvstore.py
D.splunk status kvstore
AnswerB

This identifies if the KV store is running and the status of its replication.

Why this answer

The 'splunk show kvstore-status' command is used to display the health and replication state of the KV store.

159
MCQmedium

When managing indexer clustering, what is the impact of a high 'replication_factor' on indexing performance?

A.Allows for faster data ingestion without resource constraints
B.Improves search speed by reducing data density
C.Increases indexing latency due to synchronous replication requirements
D.Decreases indexer storage requirements
AnswerC

Writes must wait for acknowledgment from secondary nodes, increasing latency.

Why this answer

Increasing the replication factor increases the write overhead on indexers because each event must be replicated to multiple peers, increasing network and disk I/O.

160
MCQhard

You are configuring Data Model Acceleration on a heavy forwarder. Why is this not a recommended architectural practice?

A.Heavy forwarders do not support accelerated datamodels
B.The license will be consumed incorrectly
C.CPU resources on the forwarder are too high
D.Acceleration requires the indexer components for summary storage
AnswerD

Acceleration summaries are stored as buckets on indexers and managed by search heads.

Why this answer

Heavy forwarders lack the indexing and search head components required to manage and serve accelerated summaries efficiently.

161
MCQmedium

What is the effect of setting 'forwarder_site_failover=true' in the indexer discovery stanza?

A.It mandates the use of SSL.
B.It increases the replication factor.
C.Forwarders will stop sending data if the local site is down.
D.Forwarders can failover to indexers in another site.
E.The indexer discovery service is disabled.
AnswerD

This enables cross-site data ingestion during failure.

Why this answer

This setting allows forwarders to automatically switch to indexers in a different site if the local indexers are unavailable.

162
MCQmedium

In an indexer cluster, what happens if the cluster master is permanently lost and you do not have a backup of the 'master-apps' directory?

A.The data is permanently lost
B.The indexers continue to work normally indefinitely
C.You will be unable to distribute new configuration updates
D.You can restore the configuration from the peer nodes
AnswerC

The master-apps folder is the central repository for bundle distribution.

Why this answer

The master-apps directory contains the source of truth for the cluster configuration; without it, the cluster configuration cannot be easily managed or restored to a new master.

163
MCQmedium

A user claims that a search is not returning data from a specific time range. You suspect the data has been rolled to cold storage and the cold storage is not being searched. Which configuration file controls which cold paths are included in the search?

A.indexes.conf
B.distsearch.conf
C.server.conf
D.limits.conf
AnswerA

This file defines the pathing and retention policies for the index.

Why this answer

The 'indexes.conf' file defines the 'coldPath' and the indexer includes these paths in the search result set if configured correctly.

164
Multi-Selectmedium

You are tasked with reviewing the health of a Search Head Cluster. Which TWO of the following dashboard locations in the Monitoring Console would be most helpful for this?

Select 2 answers
A.Cluster Status
B.Deployment: Server Classes
C.Indexing Performance: Instance
D.Search Head Clustering: Status
E.Search: Activity
AnswersD, E

This dashboard shows member status and captaincy information.

Why this answer

The MC includes specific dashboards for 'Search Head Clustering' and 'Search: Activity' to monitor health and user load.

165
MCQhard

In an indexer cluster, why might you use the 'splunk list cluster-peers' command?

A.To remove a node from the cluster
B.To update the license configuration
C.To verify the synchronization status of all indexer peers
D.To force a cluster rebalance
AnswerC

It displays peer status and health.

Why this answer

This command provides a status summary of all peers in the cluster, helping you verify that the cluster is healthy and all nodes are synchronized.

166
MCQeasy

Which Splunk process is responsible for managing the indexer's disk I/O and bucket lifecycle?

A.splunkd
B.mongod
C.python
D.kvstore
AnswerA

The primary Splunk daemon manages everything.

Why this answer

The 'splunkd' process handles all core management, including bucket lifecycle and disk I/O.

167
MCQhard

A customer needs to decommission a single indexer peer from an Indexer Cluster without losing data. Which step is mandatory to ensure all data is safely migrated to other peers?

A.Force a cluster bundle update
B.Delete the indexer directory on the CM
C.Simply shut down the indexer service
D.Run 'splunk remove cluster-peers' on the CM
AnswerD

This command triggers the cluster to replicate data off the node.

Why this answer

Putting the indexer into 'maintenance_mode' or using the 'splunk remove cluster-peers' command allows the cluster to redistribute buckets.

168
MCQeasy

A user cannot log in to the Splunk instance. You suspect authentication is failing. Which log should you check to see the authentication attempt details?

A.splunkd.log
B.web_access.log
C.audit.log
D.introspection.log
AnswerC

The audit.log specifically records authentication events and user access.

Why this answer

The 'audit.log' tracks login and logout attempts, including success and failure status.

169
MCQeasy

Which configuration file is used to specify the disk path where index buckets are stored?

A.server.conf
B.outputs.conf
C.inputs.conf
D.indexes.conf
AnswerD

Correct, this defines the storage paths.

Why this answer

The 'homePath' and 'coldPath' in indexes.conf define where the bucket data is physically stored on disk.

170
MCQmedium

You are troubleshooting a clustered indexer environment where buckets are stuck in a 'streaming' state. Which log file on the indexer peer should you examine to determine why the replication is failing?

A.metrics.log
B.replication_data.log
C.cluster_master.log
D.splunkd.log
AnswerB

This log specifically captures the replication stream traffic and potential failures.

Why this answer

The replication_data.log tracks the replication stream between indexers, making it the primary resource for debugging replication issues.

171
Multi-Selectmedium

Which THREE of the following are valid states for a bucket in an Indexer Cluster?

Select 3 answers
A.Cold
B.Hot
C.Warm
D.Active
E.Pending
AnswersA, B, C

Buckets roll to cold.

Why this answer

Buckets transition through hot, warm, and cold states during their lifecycle in an indexer cluster.

172
Multi-Selecteasy

Which TWO of the following are valid bucket states in the Splunk index lifecycle?

Select 2 answers
A.Active
B.Pending
C.Hot
D.System
E.Warm
AnswersC, E

Hot buckets are the current write target.

Why this answer

Hot, Warm, Cold, and Frozen are the standard lifecycle states.

173
Multi-Selecthard

Which THREE of the following are reasons to use Maintenance Mode in an Indexer Cluster?

Select 3 answers
A.To modify cluster configuration settings.
B.To perform a rolling upgrade of the indexers.
C.To clear the cache of the CM.
D.To prevent re-replication during a peer restart.
E.To speed up search performance.
AnswersA, B, D

Prevents the CM from acting on temporary state changes.

Why this answer

Maintenance mode is used for rolling upgrades, changing cluster configurations, and preventing unnecessary bucket re-replication during planned outages.

174
Multi-Selecthard

Which THREE features are provided by Splunk's multisite Indexer Clustering?

Select 3 answers
A.Site-specific bucket replication policies
B.Automatic load balancing across sites
C.Site-aware search affinity
D.Automatic user role migration between sites
E.Data availability in the event of site failure
AnswersA, C, E

Allows customized policies per site.

Why this answer

Multisite clusters provide site-aware search affinity, disaster recovery through site-specific replication, and high data availability.

175
Multi-Selecteasy

Which TWO of the following are prerequisites for a functional Search Head Cluster?

Select 2 answers
A.A shared network file system.
B.A dedicated license master.
C.A Cluster Master node.
D.Open replication port between all members.
E.Identical security keys on all members.
AnswersD, E

Replication requires network connectivity.

Why this answer

SHC nodes must be able to communicate via the replication port, and they must share the same security keys.

176
MCQhard

A Search Head Cluster (SHC) is experiencing frequent 'captain election' issues during high-load periods. Upon reviewing the logs, you notice network latency spikes between nodes. Which parameter in the SHC configuration should be adjusted to allow for more tolerance in node communication?

A.heartbeat_timeout
B.election_timeout
C.replication_factor
D.search_timeout
AnswerA

This is the primary setting to handle transient network issues in SHC.

Why this answer

The heartbeat_timeout setting in the SHC configuration controls how long a node can go without a heartbeat before it is considered down, which can be increased to mitigate network latency issues.

177
Multi-Selecthard

Which THREE conditions must be met for an indexer to be successfully added to an Indexer Cluster?

Select 3 answers
A.The indexer must have network connectivity to the CM
B.The indexer must have the same security key (pass4SymmKey) as the CM
C.The indexer must be running on the same OS version as the CM
D.The indexer must be designated as a search head
E.The indexer must have zero existing buckets
AnswersA, B, E

Required for registration.

Why this answer

The indexer needs the same pass4SymmKey, network access to the CM, and to be in an uninitialized state.

178
MCQeasy

Which tool is best for monitoring the health and performance of the entire Splunk environment?

A.Splunk CLI
B.Deployment Server
C.Monitoring Console
D.Splunk Web UI
AnswerC

Correct, it is the standard tool for environment health.

Why this answer

The Monitoring Console (MC) is the built-in tool for health and performance monitoring.

179
MCQhard

An indexer is running out of disk space. Which setting in indexes.conf prevents the indexer from crashing by stopping ingestion?

A.frozenTimePeriodInSecs
B.minFreeSpaceMB
C.maxHotBuckets
D.maxTotalDataSizeMB
AnswerD

Correct, this is the limit for total index size.

Why this answer

'maxTotalDataSizeMB' defines the maximum size of an index, and the indexer stops accepting data if it hits the limit.

180
Multi-Selectmedium

Which THREE items should be included in an index sizing capacity plan?

Select 3 answers
A.Search head version
B.Number of alerts configured
C.Retention period (days)
D.Daily ingestion rate (GB/day)
E.Compression ratio
AnswersC, D, E

Retention determines the total volume stored.

Why this answer

Capacity planning requires knowing the ingestion rate, retention requirements, and compression ratios to estimate space.

181
MCQmedium

A cluster master is reporting that an indexer is out of disk space. After you add more disk space, what is the best way to force the indexer to re-check its storage and clear the error?

A.Run 'splunk cluster-master-refresh'
B.Wait for the hourly heartbeat
C.Restart the splunkd service
D.Run 'splunk reload deploy-server'
AnswerC

A restart triggers a service-level check of the environment, including disk space reporting.

Why this answer

Restarting the splunkd service on the peer forces a re-evaluation of local resources and re-reporting to the master.

182
MCQhard

When using a load balancer in front of a search head cluster, why is session affinity (sticky sessions) recommended?

A.To increase the replication speed.
B.To prevent unauthorized access.
C.To improve indexing performance.
D.To maintain session persistence and search job state.
E.To reduce the number of license tokens.
AnswerD

SHC members have local state for search jobs; jumping between them causes issues.

Why this answer

Sticky sessions ensure that a user remains connected to the same SHC member, preventing issues with search job state and UI session consistency.

183
MCQhard

You want to perform a rolling restart of an Indexer Cluster without stopping ingestion. What configuration ensures that indexers remain available?

A.Set 'restart_mode=rolling'.
B.Disable the indexer peers.
C.Stop the Cluster Master first.
D.Restart all indexers at once.
E.Set 'replication_factor=1'.
AnswerA

Rolling restart allows the cluster to restart peers one by one.

Why this answer

The rolling restart mechanism automatically manages peer availability, but you should also ensure your forwarders are configured with indexing-side load balancing.

184
MCQhard

When configuring search affinity for a multi-site cluster, what is the behavior if no indexers are available in the local site?

A.The search fails immediately.
B.The search head queries indexers in other sites.
C.The search head waits for the local indexer to return.
D.The search head only returns partial results.
E.The search head reports an error to the user.
AnswerB

Cross-site search is the standard fallback behavior.

Why this answer

By default, the search head will fallback to searching indexers in other sites if the local site is unavailable, ensuring search results are still retrieved.

185
Multi-Selecthard

Which THREE factors should be considered when planning the hardware requirements for a multisite indexer cluster?

Select 3 answers
A.Disk I/O throughput
B.The color of the server chassis
C.Inter-site network latency and bandwidth
D.The total number of indexer peers
E.The number of concurrent web users
AnswersA, C, D

Essential for high-volume indexing.

Why this answer

Disk I/O, network bandwidth between sites, and CPU capacity for concurrent indexing/searching are all critical for cluster stability.

Page 2

Page 3 of 3

All pages