Return-Path: X-Original-To: apmail-chemistry-dev-archive@www.apache.org Delivered-To: apmail-chemistry-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 01AD617AB0 for ; Wed, 4 Mar 2015 16:50:05 +0000 (UTC) Received: (qmail 52946 invoked by uid 500); 4 Mar 2015 16:50:04 -0000 Delivered-To: apmail-chemistry-dev-archive@chemistry.apache.org Received: (qmail 52881 invoked by uid 500); 4 Mar 2015 16:50:04 -0000 Mailing-List: contact dev-help@chemistry.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@chemistry.apache.org Delivered-To: mailing list dev@chemistry.apache.org Received: (qmail 52862 invoked by uid 99); 4 Mar 2015 16:50:04 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Mar 2015 16:50:04 +0000 Date: Wed, 4 Mar 2015 16:50:04 +0000 (UTC) From: "Nicolas Brandt (JIRA)" To: dev@chemistry.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (CMIS-896) Improve how JSON response of CMIS query function is built MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 Nicolas Brandt created CMIS-896: ----------------------------------- Summary: Improve how JSON response of CMIS query function is built Key: CMIS-896 URL: https://issues.apache.org/jira/browse/CMIS-896 Project: Chemistry Issue Type: Improvement Components: opencmis-server Affects Versions: OpenCMIS 0.12.0 Reporter: Nicolas Brandt Priority: Minor JSON responses of CMIS queries seems to be built in an inefficient way. {code:java|title=org.apache.chemistry.opencmis.commons.impl.JSONConverter.java} /** * Converts a bag of properties. */ public static JSONObject convert(final Properties properties, final String objectId, final TypeCache typeCache, final PropertyMode propertyMode, final boolean succinct, final DateTimeFormat dateTimeFormat) { if (properties == null) { return null; } // get the type TypeDefinition type = null; if (typeCache != null) { PropertyData typeProp = properties.getProperties().get(PropertyIds.OBJECT_TYPE_ID); if (typeProp instanceof PropertyId) { String typeId = ((PropertyId) typeProp).getFirstValue(); if (typeId != null) { type = typeCache.getTypeDefinition(typeId); } } if (type == null && objectId != null && propertyMode != PropertyMode.CHANGE) { type = typeCache.getTypeDefinitionForObject(objectId); } } JSONObject result = new JSONObject(); for (PropertyData property : properties.getPropertyList()) { assert property != null; assert property.getId() != null; PropertyDefinition propDef = null; if (typeCache != null) { propDef = typeCache.getPropertyDefinition(property.getId()); } if (propDef == null && type != null) { propDef = type.getPropertyDefinitions().get(property.getId()); } if (propDef == null && typeCache != null && objectId != null && propertyMode != PropertyMode.CHANGE) { typeCache.getTypeDefinitionForObject(objectId); propDef = typeCache.getPropertyDefinition(property.getId()); } String propId = (propertyMode == PropertyMode.QUERY ? property.getQueryName() : property.getId()); if (propId == null) { throw new CmisRuntimeException("No query name or alias for property '" + property.getId() + "'!"); } result.put(propId, convert(property, propDef, succinct, dateTimeFormat)); } return result; } {code} According to the quoted source code, building the JSON response of query {{select cmis:objectId, cmis:name from cmis:document}} requires to call the function ObjectService.getObjectById per each row returned. When the query returns 1000 rows and the CMIS server is backed with a database it causes a significant performance slowdown. For example with the two following queries (each of them returns 1000 rows): bq. select * from cmis:document bq. select cmis:objectId, cmis:name from cmis:document The second one is more than 5x slower than the first one. A solution may be to add PropertyType and Cardinality informations into PropertyData objects, so it's no longer necessary to retrieve properties definitions. I have attached a svn diff file with the changes. -- This message was sent by Atlassian JIRA (v6.3.4#6332)