Asks for recommendations.

cancel
Showing results for 
Search instead for 
Did you mean: 
ALfreSara
Active Member

Asks for recommendations.

Jump to solution

Hello,

I want to know what are the impacts of these properties:

In alfresco-global.properties
search.solrTrackingSupport.ignorePathsForSpecificAspects = true
search.solrTrackingSupport.ignorePathsForSpecificTypes = true
In solrcore.properties
alfresco.metadata.skipDescendantDocsForSpecificTypes = true
alfresco.metadata.skipDescendantDocsForSpecificAspects = true
alfresco.metadata.ignore.datatype.0 = cm: person
alfresco.metadata.ignore.datatype.1 = cm: authorityContainer
alfresco.metadata.ignore.datatype.2 = app: configurations
alfresco.metadata.ignore.datatype.3 = cm: authority
alfresco.metadata.ignore.datatype.4 = bpm: package
alfresco.metadata.ignore.aspect.0 = cm: taggable

also I want to know if I can visualize the transactions made from console solar or other way?

 

Best regard

1 Solution

Accepted Solutions
angelborroy
Alfresco Employee
4 Replies
angelborroy
Alfresco Employee

Re: Asks for recommendations.

Jump to solution

You can find information related to the properties in

https://docs.alfresco.com/search-community/concepts/solr-shared-properties.html

https://docs.alfresco.com/search-community/concepts/solrcore-properties-file.html

To check the progress of the indexing process, use summary or report actions:

https://docs.alfresco.com/search-community/concepts/solr-admin-generic-reports.html

 

Hyland Developer Evangelist
maghber
Customer

Re: Asks for recommendations.

Jump to solution

all the links above says Page Not Found....please advice another resource.

dedahi
Member II

Re: Asks for recommendations.

Jump to solution

hello , I have a problem i have some my metadata in my java class like name of document and the object and title the date where the company share it like this json format 

{
"origine": "Autorité de Protection des Données à Caractère Personnel (APD)",
"objet": "Appel à candidature",
"pdfLien": "avis2023ardpr.pdf",
"date": "23 mai 2023",
"titre": "Avis pour la sélection du Président de la CPMP-APD"
}
i want to store the document and there metadata but i can store only name and the document and the title i use the title like the description i'm using alfresco community 5.2 and i use CMIS APi like this in SpringBoot code :

Map<String, Object> properties = new HashMap<>();
properties.put(PropertyIds.OBJECT_TYPE_ID, "cmis:document");
properties.put(PropertyIds.NAME, name);
properties.put(PropertyIds.DESCRIPTION, Title);
properties.put(PropertyIds.OBJECT_ID, objet);
properties.put( PropertyIds.CREATION_DATE, date);
properties.put(PropertyIds.CREATED_BY,origine);i want help Please