Tagged Questions

ZODB is an object database for Python. It is part of the ZOPE web application framework project, but can be used stand-alone also, and provides an easier persistance alternative to relational databases, for object oriented python software.

learn more… | top users | synonyms

9
votes
5answers
357 views

What is the suggested way to cron-automate ZODB packs for a production Plone instance?

Looking at plone.org to find a way to periodically pack my instance's ZODB I could only find http://plone.org/documentation/faq/how-do-i-pack-the-zodb that doesn't talk about automated packs, but just ...
6
votes
5answers
1k views

ZODB In Real Life

Writing an app in Python, and been playing with various ORM setups and straight SQL. All of which are ugly as sin. I have been looking at ZODB as an object store, and it looks a promising ...
5
votes
3answers
201 views

Is is necessary to keep data.fs.old after packing?

My data.fs was 500mb, I packed it then backed up data.fs (100mb). My hosting account is only 500mb, so I am wondering if it is safe to delete data.fs.old (500mb)?
5
votes
2answers
184 views

Algorithm in Python to store and search daily occurrance for thousands of numbered events?

I'm investigating solutions of storing and querying a historical record of event occurrences for a large number of items. This is the simplified scenario: I'm getting a daily log of 200 000 ...
5
votes
6answers
1k views

Understanding Zope internals, from Django eyes

Note: This is not a post regarding which is better, zope or django? Its about understanding zope internals/architecture, when compared to Django's I am a newbee to zope and I previously worked on ...
5
votes
4answers
1k views

What is the correct way to backup ZODB blobs?

I am using plone.app.blob to store large ZODB objects in a blobstorage directory. This reduces size pressure on Data.fs but I have not been able to find any advice on backing up this data. I am ...
4
votes
2answers
198 views

What is the difference between the various ZODB blobstorage layouts?

The ZODB blobstorage directory contains a .layout file with the string 'lawn', 'bushy'. What is the difference between the various blob storage directory formats?
4
votes
1answer
175 views

Python Packages Backward Compatibility

Is there an easy way to tell if a Python package will work if not matched to my Python release? For example, I cannot get PyGreSQL for Python 2.7 on Win (only 2.6) and I can't get ZODB for Win any ...
3
votes
1answer
108 views

Plone upgrade 3.3.5 to Plone 4.1.2

I am trying to upgrade a Plone site from 3.3.5 to Plone 4.1.2. I installed a clean copy of 4.1.2 and tried to copy the Data.fs to 4.1.2. I had to delete my members folder as it was of the type ...
3
votes
2answers
93 views

ZODB in-memory backend?

I'm currently working on a fairy large project (active members is about hundreds K) and was strongly lean to Plone solutions. I've asked some questions related to it like here and here. Got some ...
3
votes
2answers
96 views

Method for indexing an object database

I'm using an object database (ZODB) in order to store complex relationships between many objects but am running into performance issues. As a result I started to construct indexes in order to speed up ...
3
votes
1answer
142 views

Plone 4.0.4 and Postgresql Encoding

Im using Plone 4.0.4, Postgresql 9.0.3 and RelStorage 1.5.0b2. Currently Im using "da_DK.ISO8859-1" encoding in PostgreSQL - would "da_DK.UTF-8" be better since Plone is using UTF-8 internally? PS ...
3
votes
4answers
193 views

Is there something like a “symbolic link” (in *nixes terms) but for objects in ZODB in Plone?

Suppose I have an object in /school1/document-rules. Suppose in another context, /school2, I need to have the same document-rules that is available in /school1/document-rules. In ZODB, having ...
3
votes
1answer
79 views

Is it necessray to close ZODB after only reading data

I am using ZODB for my python object persistence. I am using web2py as a framework. The ZODB database I am using is accessed only for reads. I have written the code for opening the database inside my ...
3
votes
2answers
402 views

Zope Plone 3.1.2 - export all users with email addresses

I have been running zope / plone site for about a year now - it seemed to be a pretty fast way of getting a CMS up and running and it's a great job for this - it's running 3.1.2 of plone. I am in now ...
3
votes
1answer
203 views

Any good guides and/or advice for indexing my objects in zodb?

I'm going to be writing a general object class for use with zodb. These objects will add themselves to a btree index once they are persisted to the zodb object graph. I've never really worked with ...
3
votes
2answers
852 views

web2py or grok (zope) on a big portal,

I am planning to make some big project (1 000 000 users, approximately 500 request pre second - in hot time). For performance I'm going to use no relational dbms (each request could cost lot of ...
3
votes
2answers
384 views

PersistentSet in ZODB 3

ZODB provides a PersistentList and a PersistentMapping, but I'd like a PersistentSet. I wrote a quick class that mirrors the ancient PersistentList from ZODB 2. Because there's no UserSet in Python, ...
2
votes
1answer
138 views

How do I restore a zope database from a .fsz file?

I have a test environment which I am trying to restore my data into. I backed up my live site using repozo, but the zope documentation has disappeared on their new site. This is the command I am ...
2
votes
4answers
225 views

More interactive ZODB packing

Current ZMI management "Pack database" functionality is little rough. 1) Could it be possible to have some kind of progress indicator for web UI? E.g. one telling how many minutes/hours are left ...
2
votes
2answers
407 views

zc.lockfile.LockError in ZODB

I am trying to use ZODB 3.10.2 on my web server which is running Debian and Python 2.7.1. It seems like every time I try to access the same database from 2 different processes, I get a mysterious ...
2
votes
3answers
1k views

maintaining a large list in python

I need to maintain a large list of python pickleable objects. The list is too large to be all stored in the RAM, so some database\paging mechanism is required. I need that the mechanism will support ...
2
votes
1answer
110 views

Using ZODB directly from C++. Examples and design hints

I'd like to use ZODB directly from C++ and don't want to write Python code for that. Have you had any experience doing so? If I were to use C++ for GUI and quering/writing data from/to ZODB, how the ...
1
vote
1answer
23 views

Can I query Grok's ZODB instance outside the web application scope?

I have a grok-based webapp that persists data using ZODB. Can I query the object db offline i.e. from a python script that would be run on the webserver hosting the grok/paste webapp instance? And ...
1
vote
0answers
56 views

How to debug “TypeError: Can't pickle objects in acquisition wrappers.” in Plone

I have a handler that adds a Member to a Group. The last line in this handler causes an error: TypeError: Can't pickle objects in acquisition wrappers. > ...
1
vote
0answers
39 views

How to Use ClientStorage in ZEO?

Hello, I need Help on ZEO Server Using. first, ZEO is start with 'zeoctl -C /etc/zeo.conf start', start Successful. the content of /etc/zeo.conf : <zeo> address ip.ip.ip.ip:9000 read-only ...
1
vote
1answer
53 views

ZODB transaction commit calls __getstate__ multiple times

I'm creating a caching system using ZODB. The objects I am putting in the DB required me to use the __getstate__ and __setstate__ methods because they contain images that I convert to strings and ...
1
vote
1answer
414 views

“Unhandled exception in thread started by Error in sys.excepthook” during relstorage zodb pack

We have a reasonably large Plone instance running on its own mount point. The ZMI interface lists the size of the database as 7101.4M. We run a weekly pack of the database using the Relstorage ...
1
vote
2answers
279 views

collective.xsendfile, ZODB blobs and UNIX file permissions

I am currently trying to configure collective.xsendfile, Apache mod_xsendfile and Plone 4. Apparently the Apache process does not see blobstrage files on the file system because they contain ...
1
vote
2answers
108 views

ZODB not able to commit

I am using ZODB first time. Just trying to commit the data with FileStorage. But when I do the same script second time I am not able to commit the new object. Here is my script from ZODB import ...
1
vote
1answer
157 views

How and why to set the layout type for plone.app.blob (lawn v. bushy) [closed]

Possible Duplicate: What is the difference between the various ZODB blobstorage layouts? I have a Plone 3.3.5 site that I'm migrating to plone.app.blob. I just ran a test-migration and ...
1
vote
2answers
169 views

move plone site to subfolder without changing modification date

I have multiple plone sites in one zope instance (ZODB). Now I'd like to move some of the sites to a subfolder. The problem is that when I move the site the modification date of all the pages inside ...
1
vote
1answer
155 views

In Zope/ZODB, how to delete objects from a BTreeFolder2

I'm a Zope newb. I need to delete a bunch of objects from a BTreeFolder2 from say, id 1 to id 15000. When going to the admin web interface, the objects are not ordered correctly so I can't just select ...
1
vote
1answer
128 views

How to save a whole project in python

Hello I have developed a small game in python using ZODB as backend for DB processing.I have never done game programming before.I was hoping if someone can tell me as to how I can save my current game ...
1
vote
2answers
204 views

Get User Information from ZODB

I am trying to get information out of my Plone site regarding Users. It is relatively easy to get info out of the portal_catalog. However, user info isn't in the portal_catalog. Can somebody tell me ...
1
vote
3answers
296 views

Using Zope object unique id ( _p_oid ) to access object itself

Every Zope object has it's own unique id ( _p_oid ). To convert it into integer value: from Shared.DC.xml.ppml import u64 as decodeObjectId oid = decodeObjectId(getattr(<Object instance>, ...
1
vote
2answers
192 views

Python: ZODB file size growing - not updating?

I am using ZODB to store some data that exists in memory for the sake of persistence. If the service with the data in memory every crashes, restarting will load the data from ZODB rather than ...
0
votes
0answers
15 views

are ZODB PersistentLists lazily loaded?

If I load an object which has several PersistentList attributes - are the lists automatically loaded in their entirety? Or does ZODB wait until I access an element of the list to load it? If the ...
0
votes
1answer
28 views

Zeo/ZODB lock file location, possible to change?

We recently moved a Zeo instance over to a new server environment and one of the changes was the file system now has the database files stored on an NFS share. When trying to start zeo, we've been ...
0
votes
0answers
72 views

Zope ZODB FileStorage: Data.fs doesn't pack enough

I've been dealing with a problem on my Data.fs. It went from 5Gb 6 months ago to almost 10Gb now so I've tried to purge Data.fs. First, I've put portal_purgepolicy in the ZMI from 20 to 3. I've ...
0
votes
1answer
18 views

Sequentially Accessed Records in an Hierarchical (Object) DB

I am creating an app that doesn't do any searching (or many other random-access activities). It's built on an object DB (ZODB if you're interested) and will store many instances of a identical type. ...
0
votes
4answers
83 views

Cleaning up the attic in Plone

I have some old site with a Data.fs which has travelled thru aeons and accumulated cruft enough to be comparable with a yard of an average used cars dealer. Even after removing manually folders and ...
0
votes
1answer
213 views

Plone ZODB Database records in the future

I have a problem with a plone-instance. On startup i get this CRITICAL Message 2011-03-25 10:23:06 CRITICAL ZODB.FileStorage /srv/plone/var/filestorage/Data.fs Database records 1258954454 seconds ...
0
votes
1answer
299 views

Zope ZODB Pack error

When trying to pack my zope instance's ZODB, I get this error: 2011-02-28 10:47:21 ERROR ZODB.DB packing Traceback (most recent call last): File ...
0
votes
3answers
130 views

Can I use ZODB with Hibernate/JPA?

I'm writing an application that uses JPA for persistence. Currently I'm testing with Hibernate and a MySQL database. The server it's going to be deployed on already has ZODB running though. To avoid ...
0
votes
1answer
283 views

How to implement Persistent List or Persistent Mapping in ZODB

One to many relationships not working in ZODB as list is mutable.They say solution is Persistent Mapping or Persistent List or BTree.Can someone please tell me how is it exactly done
0
votes
1answer
191 views

Is there a primary key concept in ZODB for objects

I wanted to know if we can have a unique identifier for all objects that are stored in ZODB
0
votes
1answer
582 views

Migrating data from Plone to Liferay, or how could I retrieve information from Plone's Data.fs

I need to migrate data from a Plone-based portal to Liferay. Has anyone some idea on how to do it? Anyway, I am trying to retrieve data from Data.fs and store it in a representation easier to work, ...