From owner-freebsd-questions@FreeBSD.ORG Thu Feb 7 22:39:28 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CE31116A419 for ; Thu, 7 Feb 2008 22:39:28 +0000 (UTC) (envelope-from fbsd.questions@rachie.is-a-geek.net) Received: from snoogles.rachie.is-a-geek.net (rachie.is-a-geek.net [66.230.99.27]) by mx1.freebsd.org (Postfix) with ESMTP id 9D9E513C458 for ; Thu, 7 Feb 2008 22:39:28 +0000 (UTC) (envelope-from fbsd.questions@rachie.is-a-geek.net) Received: from localhost (localhost [127.0.0.1]) by snoogles.rachie.is-a-geek.net (Postfix) with ESMTP id 33B041CC8B; Thu, 7 Feb 2008 13:39:18 -0900 (AKST) From: Mel To: freebsd-questions@freebsd.org Date: Thu, 7 Feb 2008 23:39:25 +0100 User-Agent: KMail/1.9.7 References: <200802050127.m151Ro3r087662@banyan.cs.ait.ac.th> In-Reply-To: <200802050127.m151Ro3r087662@banyan.cs.ait.ac.th> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200802072339.25702.fbsd.questions@rachie.is-a-geek.net> Cc: Olivier Nicole Subject: Re: Problem with makemap and hash tables X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Feb 2008 22:39:28 -0000 On Tuesday 05 February 2008 02:27:50 Olivier Nicole wrote: > Hi, > > I am having problem with /usr/sbin/makemap hash on huge databases > under FreeBSD 5.5 and 6.3 while it is working on 4.11. > > By huge I mean around 380,000 lines in the /etc/mail/access file. > > After approximately 375,000 lines added into access.db I get: > > makemap: access.db: line 375135: key abcd.efgh: put error: Operation > not permitted Operation not permitted hints at a limit being hit, looking at when write(2) can fail, I'd guess: [EDQUOT] The user's quota of disk blocks on the file system containing the file has been exhausted. [EFBIG] An attempt was made to write a file that exceeds the process's file size limit or the maximum file size. But then again this can be a translated error by the makemap utility that has a totally different cause. -- Mel