cancel
Showing results for 
Search instead for 
Did you mean: 

Community 6.2 / Versioning did not update Solr Index

ibaxx
Champ in-the-making
Champ in-the-making

I have some trouble. when I upload a new Version of the PDF file. The added words did not added to the solr index.

Tried with many files... no luck.

2 REPLIES 2

afaust
Legendary Innovator
Legendary Innovator

Do you have any errors in alfresco.log / solr.log? Does the size of the PDF file exceed the transformation limits for conversion into plain text? Without any more details, you will not get any meaningful replies on this issue you are having...

ibaxx
Champ in-the-making
Champ in-the-making

how can i access the logs with docker? should i add paths? to the containers?

the pdf files are about 1mb and also 100kb

tried also different share, rep and solr tags in the compose.

here is my compose:

version: "2"

services:
alfresco:
image: alfresco/alfresco-content-repository-community:6.2.2-A1
mem_limit: 1500m
environment:
JAVA_OPTS: "
-Ddb.driver=org.postgresql.Driver
-Ddb.username=alfresco
-Ddb.password=alfresco
-Ddb.url=jdbcSmiley Tongueostgresql://postgres:5432/alfresco
-Dsolr.host=solr6
-Dsolr.port=8983
-Dsolr.secureComms=none
-Dsolr.base.url=/solr
-Dindex.subsystem.name=solr6
-Dshare.host=xxx.de
-Dshare.port=8080
-Dalfresco.host=localhost
-Dalfresco.port=8080
-Daos.baseUrlOverwrite=http://localhost:8080/alfresco/aos
-Dmessaging.broker.url=\"failoverSmiley Sadnio://activemq:61616)?timeout=3000&jms.useCompression=true\"
-Ddeployment.method=DOCKER_COMPOSE
-DlocalTransform.core-aio.url=http://transform-core-aio:8090/
-Dalfresco-pdf-renderer.url=http://transform-core-aio:8090/
-Djodconverter.url=http://transform-core-aio:8090/
-Dimg.url=http://transform-core-aio:8090/
-Dtika.url=http://transform-core-aio:8090/
-Dtransform.misc.url=http://transform-core-aio:8090/
-Dcsrf.filter.enabled=false
-Xms1500m -Xmx1500m
"
volumes:
- /volume1/docker/alfresco/repo-data:/usr/local/tomcat/alf_data

transform-core-aio:
image: alfresco/alfresco-transform-core-aio:2.3.0
mem_limit: 1536m
environment:
JAVA_OPTS: " -Xms256m -Xmx1536m"
ports:
- 8090:8090

share:
image: alfresco/alfresco-share:6.2.2-RC3
mem_limit: 1g
environment:
REPO_HOST: "alfresco"
REPO_PORT: "8080"
JAVA_OPTS: "
-Xms500m
-Xmx500m
-Dalfresco.host=localhost
-Dalfresco.port=8080
-Dalfresco.context=alfresco
-Dalfresco.protocol=http
"

postgres:
image: postgres:11.4
mem_limit: 512m
environment:
- POSTGRES_PASSWORD=alfresco
- POSTGRES_USER=alfresco
- POSTGRES_DB=alfresco
command: postgres -c max_connections=300 -c log_min_messages=LOG
ports:
- 5433:5432
volumes:
- /volume1/docker/alfresco/postgres:/var/lib/postgresql/data

solr6:
image: alfresco/alfresco-search-services:1.4.2
mem_limit: 2g
environment:
#Solr needs to know how to register itself with Alfresco
- SOLR_ALFRESCO_HOST=alfresco
- SOLR_ALFRESCO_PORT=8080
#Alfresco needs to know how to call solr
- SOLR_SOLR_HOST=solr6
- SOLR_SOLR_PORT=8983
#Create the default alfresco and archive cores
- SOLR_CREATE_ALFRESCO_DEFAULTS=alfresco,archive
#HTTP by default
- ALFRESCO_SECURE_COMMS=none
- "SOLR_JAVA_MEM=-Xms2g -Xmx2g"
volumes:
- /volume1/docker/alfresco/solr-data:/opt/alfresco-search-services/data
ports:
- 8083:8983 #Browser port

activemq:
image: alfresco/alfresco-activemq:5.15.8
mem_limit: 1g
ports:
- 8161:8161 # Web Console
- 5672:5672 # AMQP
- 61616:61616 # OpenWire
- 61613:61613 # STOMP

proxy:
image: alfresco/acs-community-ngnix:1.0.0
mem_limit: 128m
depends_on:
- alfresco
ports:
- 8080:8080
links:
- alfresco
- share