<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Alfresco Search Services transformers in Alfresco Forum</title>
    <link>https://connect.hyland.com/t5/alfresco-forum/alfresco-search-services-transformers/m-p/102517#M29286</link>
    <description>&lt;P&gt;Hi all !&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm working with ACS 6.2.x (the label is missing).&lt;/P&gt;&lt;P&gt;I'd like to reserve a server to indexing and searching. That is why I only want to deploy to it, using docker-compose :&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;alfresco-content-repository&lt;/LI&gt;&lt;LI&gt;alfresco-search-services&lt;/LI&gt;&lt;LI&gt;alfresco-activemq&lt;/LI&gt;&lt;LI&gt;alfresco-transform-router&lt;/LI&gt;&lt;LI&gt;transform-core-aio&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;But I think that transform-core-aio is not toally necessary. Can I use&amp;nbsp;alfresco-tika instead? Does ASS need others transformers ? What are your&amp;nbsp;preconizations ?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
    <pubDate>Thu, 05 Nov 2020 09:14:20 GMT</pubDate>
    <dc:creator>didiere</dc:creator>
    <dc:date>2020-11-05T09:14:20Z</dc:date>
    <item>
      <title>Alfresco Search Services transformers</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/alfresco-search-services-transformers/m-p/102517#M29286</link>
      <description>&lt;P&gt;Hi all !&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm working with ACS 6.2.x (the label is missing).&lt;/P&gt;&lt;P&gt;I'd like to reserve a server to indexing and searching. That is why I only want to deploy to it, using docker-compose :&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;alfresco-content-repository&lt;/LI&gt;&lt;LI&gt;alfresco-search-services&lt;/LI&gt;&lt;LI&gt;alfresco-activemq&lt;/LI&gt;&lt;LI&gt;alfresco-transform-router&lt;/LI&gt;&lt;LI&gt;transform-core-aio&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;But I think that transform-core-aio is not toally necessary. Can I use&amp;nbsp;alfresco-tika instead? Does ASS need others transformers ? What are your&amp;nbsp;preconizations ?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 05 Nov 2020 09:14:20 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/alfresco-search-services-transformers/m-p/102517#M29286</guid>
      <dc:creator>didiere</dc:creator>
      <dc:date>2020-11-05T09:14:20Z</dc:date>
    </item>
    <item>
      <title>Re: Alfresco Search Services transformers</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/alfresco-search-services-transformers/m-p/102518#M29287</link>
      <description>&lt;P&gt;I don't think it is required for search unless you have dependency on metadata extraction (wanted to search on extracted metadata) and search for transformed content.&lt;/P&gt;
&lt;P&gt;This should do the job for having acs with search only, all these services are mandatory together:&lt;/P&gt;
&lt;PRE&gt;version: "2"

services:
    alfresco:
        image: alfresco/alfresco-content-repository-community:6.2.1-A8
        mem_limit: 1500m
        environment:
            JAVA_OPTS: "
                -Ddb.driver=org.postgresql.Driver
                -Ddb.username=alfresco
                -Ddb.password=alfresco
                -Ddb.url=jdbc:postgresql://postgres:5432/alfresco
                -Dsolr.host=solr6
                -Dsolr.port=8983
                -Dsolr.secureComms=none
                -Dsolr.base.url=/solr
                -Dindex.subsystem.name=solr6
                -Dshare.host=127.0.0.1
                -Dshare.port=8080
                -Dalfresco.host=localhost
                -Dalfresco.port=8080
                -Daos.baseUrlOverwrite=http://localhost:8080/alfresco/aos
                -Dmessaging.broker.url=\"failover:(nio://activemq:61616)?timeout=3000&amp;amp;jms.useCompression=true\"
                -Ddeployment.method=DOCKER_COMPOSE
                -Dcsrf.filter.enabled=false
                -Xms1500m -Xmx1500m
                "
        ports:
            - 8080:8080
        
            
    postgres:
        image: postgres:11.7
        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:
            - 5432:5432
      

    solr6:
        image: alfresco/alfresco-search-services:2.0.0
        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"
        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&lt;/PRE&gt;</description>
      <pubDate>Thu, 05 Nov 2020 16:41:45 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/alfresco-search-services-transformers/m-p/102518#M29287</guid>
      <dc:creator>abhinavmishra14</dc:creator>
      <dc:date>2020-11-05T16:41:45Z</dc:date>
    </item>
  </channel>
</rss>

