Its a replace of an existing document
numDocs+DeletedDocs = MaxDocs
(821+1160=1981)
numDocs represents the number of searchable documents in the index
maxDoc may be larger as the numDoc count as it includes logically deleted documents that have not yet been removed from the index.
If you reindex/repost numDocs will never increase, because the new documents will constantly be replacing the old...try optimizing the index, it might remove the logically deleted documents/indexs.
The Unique Key Field
<uniqueKey></uniqueKey>
The <uniqueKey>
declaration can be used to inform Solr that there is a field in your index which should be unique for all documents. If a document is added that contains the same value for this field as an existing document, the old document will be deleted.