Jira Project Import fails with "There was an unexpected problem processing the backup XML"

Platform Notice: Data Center Only - This article only applies to Atlassian products on the Data Center platform.

Note that this KB was created for the Data Center version of the product. Data Center KBs for non-Data-Center-specific features may also work for Server versions of the product, however they have not been tested. Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.

*Except Fisheye and Crucible

Summary

Fix Jira Data Center Project Import failure due to the error "There was an unexpected problem processing the backup XML"

Environment

Jira Data Center.

Diagnosis

When analyzing the logs, we can see that Jira failed to parse the XML backup with a NullPointer exception (NPE):

1 2 3 2021-06-15 23:37:56,652+0200 JiraTaskExecutionThread-27 ERROR <USER> 1417x45904x1 80fepu <IP-ADDRESS> /secure/admin/ProjectImportSelectProject.jspa [c.a.j.imports.xml.DefaultBackupXmlParser] Unexpected import failure java.lang.NullPointerException at com.atlassian.jira.imports.project.customfield.TextLengthValidatingCustomFieldImporter.canMapImportValue(TextLengthValidatingCustomFieldImporter.java:24)

You might also see entries such as the one below, however, these are non-blocker errors. Jira will just skip that specific custom field value for a specific issue and proceed with the import accordingly:

1 2021-06-15 23:37:55,777+0200 JiraTaskExecutionThread-27 WARN <USER> 1417x45904x1 80fepu <IP-ADDRESS> /secure/admin/ProjectImportSelectProject.jspa [c.a.j.i.project.mapper.AutomaticDataMapperImpl] The backup data has a custom field value in use for custom field with id: '<ID>' but the backup data contains no reference to this field. The data will be not be imported.

One might believe that this is actually the custom field with problems when in fact it's not.

Cause

Verifying the product's source code, we can see that the NPE happened because Jira tried to find any of the following entries in the CustomFieldValue section of the XML file but failed:

  • textvalue

  • stringvalue

  • numbervalue

This indicates an inconsistency in the source instance database. There are issues with reference to the customfieldvalue table in the database as if they had an entry for this custom field, however, they have a null value.

Solution

We can identify the problematic entries by using grep, which is available by default in Mac and Linux operating systems.

  1. Extract the backup file using unzip, for example: unzip JiraBackup.xml

  2. Run the following command to identify the entries causing the NPE: 

    1 cat entities.xml|egrep '<CustomFieldValue id="[0-9]*" issue="[0-9]*" customfield="[0-9]*"/>'
  3. You should receive an output similar to: 

    1 2 3 <CustomFieldValue id="11077" issue="12269" customfield="10600"/> <CustomFieldValue id="11078" issue="13269" customfield="10600"/> <CustomFieldValue id="11079" issue="15187" customfield="10603"/>

This indicates that we have three issues with empty custom field values in the database. There are two ways to resolve this, the first of which is ideal as we will fix the data on the source and prevent this from impacting any future imports. 

Solution #1 (recommended)

  1. On the source instance database, identify the custom field name that has a null value in the database:

    1 SELECT * FROM customfield WHERE id in (10600,10603);
  2. Identify the problematic issues, e.g: issue="12269" (do this for all three issues with different ID):

    1 2 3 4 5 SELECT project.pkey, jiraissue.issuenum FROM jiraissue INNER JOIN project ON (jiraissue.project = project.id) WHERE jiraissue.id='12269'
  3. Populate the custom field in the issue and re-generate the XML backup for project import in the destination instance

Solution #2 

Update the problematic entries in the existing XML backup and re-do the project import.

  1. Open the entities.xml backup file, search for the problematic entries identified earlier in the KB

  2. Add textvalue="" to these entries, so their outcome should be similar to:

    1 2 3 <CustomFieldValue id="11077" issue="12269" customfield="10600" textvalue=""/> <CustomFieldValue id="11078" issue="13269" customfield="10600" textvalue=""/> <CustomFieldValue id="11079" issue="15187" customfield="10603" textvalue=""/>
  3. Zip the contents in .ZIP format and retry the project import.

If the problem persists after the steps above, please get in touch with Atlassian Support.

Updated on March 5, 2025

Still need help?

The Atlassian Community is here for you.