From dev-return-18372-archive-asf-public=cust-asf.ponee.io@manifoldcf.apache.org Tue Aug 28 14:04:04 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id DBD92180621 for ; Tue, 28 Aug 2018 14:04:03 +0200 (CEST) Received: (qmail 11340 invoked by uid 500); 28 Aug 2018 12:04:03 -0000 Mailing-List: contact dev-help@manifoldcf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@manifoldcf.apache.org Delivered-To: mailing list dev@manifoldcf.apache.org Received: (qmail 11328 invoked by uid 99); 28 Aug 2018 12:04:03 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd4-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Aug 2018 12:04:03 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd4-us-west.apache.org (ASF Mail Server at spamd4-us-west.apache.org) with ESMTP id 88B64C0730 for ; Tue, 28 Aug 2018 12:04:02 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd4-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -109.501 X-Spam-Level: X-Spam-Status: No, score=-109.501 tagged_above=-999 required=6.31 tests=[ENV_AND_HDR_SPF_MATCH=-0.5, KAM_ASCII_DIVIDERS=0.8, RCVD_IN_DNSWL_MED=-2.3, SPF_PASS=-0.001, USER_IN_DEF_SPF_WL=-7.5, USER_IN_WHITELIST=-100] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd4-us-west.apache.org [10.40.0.11]) (amavisd-new, port 10024) with ESMTP id hf_cQWDTxG-r for ; Tue, 28 Aug 2018 12:04:01 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with ESMTP id 2ADF25F16A for ; Tue, 28 Aug 2018 12:04:01 +0000 (UTC) Received: from jira-lw-us.apache.org (unknown [207.244.88.139]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id 69A14E00CB for ; Tue, 28 Aug 2018 12:04:00 +0000 (UTC) Received: from jira-lw-us.apache.org (localhost [127.0.0.1]) by jira-lw-us.apache.org (ASF Mail Server at jira-lw-us.apache.org) with ESMTP id 27D902183F for ; Tue, 28 Aug 2018 12:04:00 +0000 (UTC) Date: Tue, 28 Aug 2018 12:04:00 +0000 (UTC) From: "Karl Wright (JIRA)" To: dev@manifoldcf.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (CONNECTORS-1526) Empty contents are skipped completely/ignored in documentum connector MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/CONNECTORS-1526?page=3Dcom.atla= ssian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId= =3D16594877#comment-16594877 ]=20 Karl Wright commented on CONNECTORS-1526: ----------------------------------------- Can you please look at the Simple History Report and find an empty document= that was "skipped". Please tell me what the status was for it. There is no limitation currently in the documentum connector that prohibits= indexing of empty documents.=20 But if the content cannot be fetched at all, empty or not, we skip it. Th= e code in question is as follows: {code} String strFilePath =3D null; try { strFilePath =3D object.getFile(objFileTemp.getCanonicalPath()); } catch (DocumentumException dfe) { // Fetch failed, so log it activityMessage =3D dfe.getMessage(); if (dfe.getType() =3D=3D DocumentumException.TYPE_NOTALLOWED) { activityStatus =3D "NOTALLOWED"; return; } else if (dfe.getType() =3D=3D DocumentumException.TYPE_CORRUPTE= DDOCUMENT) { activityStatus =3D "CORRUPTEDDOCUMENT"; return; } throw dfe; } long fileLength =3D objFileTemp.length(); activityFileLength =3D new Long(fileLength); if (strFilePath =3D=3D null) { activityStatus =3D "CONTENTDIDNOTFETCH"; activityMessage =3D "Content could not be fetched"; // We don't know why it won't fetch, but skip it and keep going= . return; } {code} > Empty contents are skipped completely/ignored in documentum connector > ---------------------------------------------------------------------- > > Key: CONNECTORS-1526 > URL: https://issues.apache.org/jira/browse/CONNECTORS-152= 6 > Project: ManifoldCF > Issue Type: Bug > Components: Documentum connector > Affects Versions: ManifoldCF 2.9.1 > Reporter: Divya Thejaswini > Assignee: Karl Wright > Priority: Major > > While fetching data from Documentum respository, empty documents are skip= ped completely instead of indexing its meta data. > We need someone's help on fixing this in any of the upcoming version or p= atch for MCF 2.9.1 version. > =C2=A0 -- This message was sent by Atlassian JIRA (v7.6.3#76005)