Remove indexes and indexed data

You can remove indexed data or even entire indexes from the indexer. These are the main options:

  • Delete events from subsequent searches.
  • Remove all data from one or more indexes.
  • Remove or disable an entire index.
  • Remove older data, based on a retirement policy.
CAUTION: Removing data is irreversible. If you want to get your data back once you've removed data using any of the techniques described in this topic, you must re-index the applicable data sources.

Delete events from subsequent searches

The Splunk search language provides the delete command to delete event data from subsequent searches.

The delete command is available only with events indexes. You cannot use it with metrics indexes

You cannot run the delete command for a real-time search. If you try to use delete during a real-time search, Splunk Enterprise will display an error.

CAUTION: The delete command only deletes the events from subsequent searches. The data itself remains in the index.

Who can delete?

The delete command can only be run by a user with the "delete_by_keyword" capability. By default, Splunk Enterprise ships with a special role, "can_delete" that has this capability (and no others). The admin role does not have this capability by default. It's recommended that you create a special user that you log into when you intend to delete index data.

For more information, refer to Add and edit roles in Securing Splunk Enterprise.

How to delete

First run a search that returns the events you want deleted. Make sure that this search returns only the events you want to delete, and no other events. Once you're certain of that, you can pipe the results of the search to the delete command.

For example, if you want to remove the events you've indexed from a source called /fflanda/incoming/cheese.log so that they no longer appear in searches, do the following:

1. Disable or remove that source so that it no longer gets indexed.

2. Search for events from that source in your index:

source="/fflanda/incoming/cheese.log"

3. Look at the results to confirm that this is the data you want to delete.

4. Once you've confirmed that this is the data you want to delete, pipe the search to delete:

source="/fflanda/incoming/cheese.log" | delete

See the page about the delete command in the Search Reference Manual for more examples.

Note: When running Splunk on Windows, substitute the forward slashes (/) in the examples with backslashes (\).

Piping a search to the delete command marks all the events returned by that search so that subsequent searches do not return them. No user (even with admin permissions) will be able to see this data when searching.

Note: Piping to delete does not reclaim disk space. The data is not actually removed from the index; it is just invisible to searches.

The delete command does not update the metadata of the events, so any metadata searches will still include the events although they are not searchable. The main All indexed data dashboard will still show event counts for the deleted sources, hosts, or sourcetypes.

The delete operation and indexer clusters

In the normal course of index replication, the effects of a delete operation get quickly propagated across all bucket copies in the cluster, typically within a few seconds or minutes, depending on the cluster load and amount of data and buckets affected by the delete operation. During this propagation interval, a search can return results that have already been deleted.

Also, if a peer that had primary bucket copies at the time of the delete operation goes down before all the results have been propagated, some of the deletes will be lost. In that case, you must rerun the operation after the primary copies from the downed peer have been reassigned.

Remove all data from one or all indexes

To delete indexed data permanently from your disk, use the CLI clean command. This command completely deletes the data in one or all indexes, depending on whether you provide an <index_name> argument. Typically, you run clean before re-indexing all your data.

Note: The clean command does not work on clustered indexes.

How to use the clean command

Here are the main ways to use the clean command:

  • To access the help page for clean, type:
splunk help clean
  • To permanently remove data from all indexes, type:
splunk clean eventdata
  • To permanently remove data from a single index, type:
splunk clean eventdata -index <index_name>

where <index_name> is the name of the targeted index.

  • Add the -f parameter to force clean to skip its confirmation prompts.

Important: You must stop the indexer before you run the clean command.

Examples

This example removes data from all indexes:

splunk stop
splunk clean eventdata 

This example removes data from the _internal index and forces Splunk to skip the confirmation prompt:

splunk stop
splunk clean eventdata -index _internal -f

Remove an index entirely

To remove an index entirely (and not just the data contained in it) from a non-clustered indexer, you can use Splunk Web or the CLI. You can also edit indexes.conf directly

Before removing an index, look through all inputs.conf files on your indexer and on any forwarders sending data to the indexer and make sure that none of the stanzas are directing data to the index you plan to delete. For example, if you want to delete an index called "nogood", make sure the following attribute/value pair does not appear in any of your input stanzas: index=nogood. Once the index has been deleted, the indexer will discard any data still being sent to that index.

To remove an index in Splunk Web, navigate to Settings > Indexes and click Delete to the right of the index you want to remove. This action deletes the index's data directories and removes the index's stanza from indexes.conf.

To remove an index through the CLI, run the splunk remove index command:

splunk remove index <index_name>

This command deletes the index's data directories and removes the index's stanza from indexes.conf.

You can run splunk remove index while the indexer is running. You do not need to restart the indexer after the command completes.

The index deletion process is ordinarily fast, but the duration depends on several factors:

  • The amount of data being deleted.
  • Whether you are currently performing heavy writes to other indexes on the same disk.
  • Whether you have a large number of small .tsidx files in the index you're deleting.

You can also remove an index by editing indexes.conf directly and deleting the index's stanza. Restart the indexer and then remove the index's directories.

To remove an index from an indexer cluster, you must edit indexes.conf and delete the index's stanza. You cannot use Splunk Web or the CLI. As with all such changes on an indexer cluster, you first edit the file on the manager node and then apply the changes to the peer nodes. See Configure the peer indexes in an indexer cluster Once you've applied the indexes.conf changes and the peer nodes have restarted, remove the index's directories from each peer node.

Split indexed data

The split-buckets command allows you to select events from a source index using search criteria and move them to a destination index, effectively splitting the original buckets.

The split-buckets command is a command-line tool used to reorganize indexes by moving or permanently deleting events based on a search filter. It allows you to select events from a source index using search criteria and move them to a destination index, effectively splitting the original buckets. This is useful for reclaiming storage or isolating sensitive data.

Always use the --dryrun parameter to preview your changes on the console before running a split operation in production.

Prerequisites

  • The Splunk Enterprise service (splunkd) must be stopped before using the split-buckets command.
  • The command is available in Splunk Enterprise version 10.0 and later.
  • This functionality is supported on standalone indexers only. It does not support clustered indexers or Splunk Cloud Platform.
  • The indexes.conf file must have bucketMerging = true set in the global stanza.
  • The user running the command must have permissions to access and modify the index data directories.
  • This release supports moving event data only. Summary and metric data types are not supported.
  • In addition to console messages, the procedure is logged in $SPLUNK_HOME/var/log/splunk/splunkd-utility.log.
Note: This command permanently moves data from the source index. When the operation is complete, the original events that match the filter will no longer exist in the source index. To save the original source buckets, you must use the --backup-to parameter.

Syntax

splunk split-buckets [parameters...]

Required parameters

Parameter Description
--search-filter=<spl_query_string> Specifies the search criteria for the events you want to move. Filtering is limited to host, source, and sourcetype.
--source-index-name=<index_name>The name of the index containing the data to be moved.
--dest-index-name=<index_name>The name of the index where the filtered data will be moved.

Optional parameters

Parameter Description
--backup-to=<path to destination folder>Creates a backup archive of the original source buckets in the specified folder before they are modified.
--dryrunPreviews the command's actions without moving any data. Use this to test your search filter and parameters.
--enddate=<yyyy/mm/dd> or <unix-time> Limits the split to buckets whose earliest event time is before the specified date/time.
--json-outFormats the command's output as JSON, which is useful for automation and parsing.
--max-total-runtime=<seconds>Sets a maximum runtime in seconds for the entire split process.
--startdate=<yyyy/mm/dd> or <unix-time> Limits the split to buckets whose earliest event time is after the specified date/time.
--verbose / -vIncreases the verbosity of the output for detailed logging. Use -vv for even more detail.

Examples

Example 1: Move events of a specific sourcetype to an archive index

You want to move all events with sourcetype=cisco:asa_0 from the ciscoasa index to a new dest-idx index.

  1. Stop Splunk Enterprise services.
  2. On the command line, run the command with the --dryrun parameter to preview the operation: ./splunk split-buckets --source-index-name=ciscoasa --dest-index-name=dest-idx --search-filter="sourcetype=cisco:asa_0" --dryrun --verbose
  3. Review the process summary on the console to ensure the correct buckets and events are selected.
  4. Once you are satisfied, run the command again without the --dryrun parameter to perform the data move. Using --json-out will provide a detailed, machine-readable summary of the results. ./splunk split-buckets --source-index-name=ciscoasa --dest-index-name=dest-idx --search-filter="sourcetype=cisco:asa_0" --json-out
  5. Start Splunk Enterprise services.
  6. Verify the move by searching both indexes. Events with sourcetype=cisco:asa_0 should now be in the dest-idx index and removed from the ciscoasa index.

Example 2: Archive old data and create a backup

You want to move all events with sourcetype=cisco:asa_0 from the ciscoasa index to the archive_cisco index. You also want to create a backup of the original buckets before they are modified.

  1. Stop Splunk Enterprise services.
  2. On the command line, run: ./splunk split-buckets --source-index-name=ciscoasa --dest-index-name=archive_cisco --search-filter="sourcetype=cisco:asa_0" --backup-to=/mnt/backup/ciscoasa_archive
  3. This command moves all matching events from the source to the destination index.
  4. A complete backup of the original source buckets involved in the operation is created in the /mnt/backup/ciscoasa_archive directory.
  5. Start Splunk Enterprise services.

Disable an index without removing it

Once an index is disabled, the indexer no longer accepts data targeted at it. However, disabling an index does not delete index data, and the operation is reversible.

You can disable an index in Splunk Web. To do this, navigate to Settings > Indexes and click Disable to the right of the index you want to disable. To re-enable the index, click Enable to the right of the index.

You can also disable an index with the CLI command splunk disable index:

splunk disable index <index_name>

To re-enable the index, use the splunk enable index command.

To disable an index for an indexer cluster, you must edit indexes.conf and set disabled=true in the index's stanza. You cannot use Splunk Web or the CLI. As with all such changes on an indexer cluster, you first edit the file on the manager node and then apply the changes to the peer nodes. See Configure the peer indexes in an indexer cluster

Remove older data based on retirement policy

When a bucket in an index reaches a specified age or when the index grows to a specified size, the bucket rolls to the "frozen" state, at which point the indexer removes it from the index. Just before removing the bucket, the indexer can save it to an archive, depending on how you configure your retirement policy.

For more information, see Set a retirement and archiving policy.