We are planning to host a new JIRA instance for one of our teams and we configured that by cloning data from existing dump, cleaned the existing data, users, groups, projects etc. without changing the configuration schemes. As we have removed all the projects from this instance, is it safe to delete SEARCHREQUEST and FILTERNOTIFICATIONS tables for removing the existing filters and subscriptions? If not what is the best way to flush out 16000 filters from this instance.
I had written a groovy script for deleting filters, subscriptions and users and it is working well. I searched the tables SEARCHREQUEST and FILTERNOTIFICATIONS and found no rows after the script gets executed.
if(!ldapInfo.isJiraAdmin(user.getName(), user.getDisplayName()) ){ boolean hasSubscriptions = false; Collection<SearchRequest> filters = searchRequestService.getOwnedFilters(user); log.info("Removing User ID: "+user.getName()+" NAME: "+user.getDisplayName()+" Directory ID: "+user.getDirectoryId()); if(filters != null && filters.size() >0){ filtersCount = filtersCount + filters.size(); Iterator<SearchRequest> srIterator = filters.iterator(); while(srIterator.hasNext()){ SearchRequest searchRequest = srIterator.next(); List<GenericValue> subscriptions = subscriptionManager.getAllSubscriptions(searchRequest.getId()); if(subscriptions != null && subscriptions.size() >0){ hasSubscriptions = true; log.info("Total Filters: "+filters.size()+" Filter Id: "+searchRequest.getId()+" Subscriptions : "+subscriptions.size()); } } if(hasSubscriptions){ try { subscriptionManager.deleteSubscriptionsForUser(user); } catch (Exception e) { log.error("Exception while removing Subscriptions for user: "+user.getDisplayName()); } } searchRequestService.deleteAllFiltersForUser(jsc, user); } userUtil.removeUser(ComponentManager.getInstance().getJiraAuthenticationContext().getLoggedInUser(), user); log.info("Removed subscriptions, filters and user..."); }
I don't think it picks up filters which aren't associated with a project. For example if you create project 'test' and have a filter 'filter1' which is the query project = "TEST" if you delete the project 'test' it will not delete the filter. Running integrity check will also not delete or even detect the filter.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Run integrity checked, it should be deleting those is no long associated with anything.
https://confluence.atlassian.com/display/JIRA/Using+the+Database+Integrity+Checker
Hope this helps :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Deletion of the filters and subscriptions will need to be done at the database level. There is no other ways.
Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.