Open IT Experts for Enterprise

Zylk empresa de desarrollo de ecommerce

solr

Docker banner

Updated Docker image for Alfresco monitoring with Alfresco Search Services

Nagios Icinga setup for Alfresco Content Services updated  During last days of summer, I took some time to update the Docker and Vagrant images for Alfresco monitoring setup with Nagios / Icinga, adding support for Alfresco Search Services and also PNP4Nagios for having some visualizations. In the provided configuration, I created a new host for Alfresco Search …

Updated Docker image for Alfresco monitoring with Alfresco Search Services Leer más »

Solr banner

SOLR client APIs

Using python API for SOLR In SOLR, you may find different client APIs for your favourite programming language such as Java, Python, Ruby, Perl or Javascript. Basically, client apps can reach Solr by creating HTTP requests and parsing the corresponding HTTP responses, encapsulating much of the work of sending requests and parsing responses, and making …

SOLR client APIs Leer más »

More on monitoring dashboards for Alfresco using SOLR, Banana and Apache Zeppelin

Using an Apache stack for indexing your logs and metrics In the previous posts I talked about ELK stack for monitoring Alfresco. But another possibility for loading metrics or logs information, extracted by logstash, is a SOLR index server (instead of Elastic Search), which is part of Alfresco architecture by default, and in principle, it would seem more natural …

More on monitoring dashboards for Alfresco using SOLR, Banana and Apache Zeppelin Leer más »

elastic

Kibana dashboard for monitoring Alfresco Community via OOTB Support Tools

Monitoring Alfresco CE with ELK stack Some weeks ago I wrote a post about how to set up a basic Kibana dashboard representing System Performance and Active Sessions in Alfresco Enterprise via JMX metrics from a logstash JMX input. As you probably know, no such Alfresco JMX objects are available in Alfresco Community, such as active …

Kibana dashboard for monitoring Alfresco Community via OOTB Support Tools Leer más »

Performing a full reindex with Solr for Alfresco ECM

For Alfresco 4.x and Solr 1.4: #! /bin/bash export ALF_HOME=/opt/alfresco4 export SOLR_HOME=/opt/alfresco4/alf_data/solr $ALF_HOME/alfresco.sh stop sleep 10 rm -rf $SOLR_HOME/workspace/SpacesStore/* rm -rf $SOLR_HOME/archive/SpacesStore/* rm -f $SOLR_HOME/workspace-SpacesStore/alfrescoModels/* rm -f $SOLR_HOME/archive-SpacesStore/alfrescoModels/* $ALF_HOME/alfresco.sh start   https://docs.alfresco.com/4.1/tasks/solr-reindex.html For Alfresco 5.x and Solr 4: #! /bin/bash export ALF_HOME=/opt/alfresco50c export SOLR_HOME=/opt/alfresco50c/alf_data/solr4 $ALF_HOME/alfresco.sh stop sleep 10 rm -rf $SOLR_HOME/index/workspace/SpacesStore/* rm -rf $SOLR_HOME/index/archive/SpacesStore/* rm …

Performing a full reindex with Solr for Alfresco ECM Leer más »

Backing up Alfresco indices

In a previous post we talk about search subsystems in Alfresco. There exists for each subsystem some quartz jobs related to backup indices. In the case of Lucene subsystem, Lucene backups are done at 3AM and their parameters are configurable via alfresco-global.properties (or extending the corresponding search subsystem).   index.backup.cronExpression=0 0 3 * * ? …

Backing up Alfresco indices Leer más »

Notes about Search Subsystem in Alfresco

Search subsystem in Alfresco can be Lucene or SOLR type. In the default configuration for Alfresco 4, the search subsystem is SOLR. This can be set up in alfresco-global.properties   index.subsystem.name=solr solr.port.ssl=8443 solr.host=localhost dir.keystore=${dir.root}/keystore     where the SOLR application is deployed by default on the same Tomcat container, and it works with the 8443 …

Notes about Search Subsystem in Alfresco Leer más »

How to track SOLR indexation process in Alfresco

For tracking indexation in SOLR, we have the Alfresco Administration Console, which gives us the indexation status, the indices in disk, and an estimation of the remaining time of transactions to be indexed. This is available in Enterprise edition in Admin Console:   http://localhost:8080/alfresco/service/enterprise/admin/admin-searchservice   This information is directly taken from SOLR Summary XML Report …

How to track SOLR indexation process in Alfresco Leer más »

How to avoid indexing full content in Alfresco

To avoid indexing full content in Alfresco, we have different aproximations:   1. From SOLR point of view (tested in SOLR 1.4 and Alfresco 4.2.5):    In solrcore.properties (for workspace and archive store) set:    alfresco.index.transformContent=false alfresco.ignore.datatype.1=d:content   This is a general setup (for all content types).   2. From Filesystem Bulk Import and/or CMIS …

How to avoid indexing full content in Alfresco Leer más »