If your list items increased beyond the threshold limit, then we can disable the list throttling using PowerShell.
You can also check: SharePoint 2013 In place Record Management
Below is the PowerShell command to disable list throttling using PowerShell.
Add-PSSnapin Microsoft.SharePoint.PowerShell
$web = Get-SPWeb http://OnlySharePoint2013:2334/
$list = $web.Lists["ListName"]
$list.EnableThrottling = $false
$list.Update()
I hope this will be helpful.
You can also check: SharePoint 2013 In place Record Management
Below is the PowerShell command to disable list throttling using PowerShell.
Add-PSSnapin Microsoft.SharePoint.PowerShell
$web = Get-SPWeb http://OnlySharePoint2013:2334/
$list = $web.Lists["ListName"]
$list.EnableThrottling = $false
$list.Update()
I hope this will be helpful.