ZODB is an object database for Python. Originally part of the ZOPE web application framework project, it can be used stand-alone, and provides an easier persistance alternative to relational databases for object oriented python software.
-1
votes
0answers
23 views
How would I add any text data in zodb using pyramid framework?
I am new to the Pyramid framework. How to add data from pagetemplate pages to the ZODB using a simple request?
0
votes
3answers
76 views
Looping through broken objects in Plone
I have a couple of broken objects that I wish to loop through in python script. My use case is as follows: I have renamed my custom product from my.oldproduct to my.newproduct. This has caused the ...
0
votes
1answer
26 views
Reasonable settings for ZODB pool_size
What's a reasonable default for pool_size in a ZODB.DB call in a multi-threaded web application?
Leaving the actual default value 7 gives me some connection WARNINGs even when I'm the only one ...
1
vote
1answer
30 views
ZODB with Tornado
I've got a small web-app built with Tornado where I'd like to use ZODB for some data storage. According to the ZODB docs, multi-threaded programs are supported, but they should start up a new ...
0
votes
1answer
22 views
Is there a ZODB hook for object changes post-commit?
How can I setup hooks that fire on ZODB object changes post-commit? I can setup handlers for IObjectWillBeMovedEvent and IObjectWillBeAddedEvent, but these fire immediately on object creation. Is ...
1
vote
0answers
52 views
pyramid + ZODB and pagination
I've images stored in my pyramid ZODB app. And I've a view that lists all the images, but that makes rendering the page way too long/slow when I've a lot of images, therefore I want them to paginate ...
0
votes
0answers
18 views
How to lock a file in zodb for first time [duplicate]
Am writing an web app in flask using zodb even when i try to write data into flaskr.fs filw first time also it shows error.
The code am using is
from __future__ import with_statement
from flask ...
1
vote
1answer
86 views
How to access with Pyramid the data generated by Plone and persisted on ZODB?
I have a file Data.fs that contains data persisted by Plone on ZODB. Only the standard content types of Plone were used (eg. ATNewsItem, ATLink, ATFile, ...). I would like to use Pyramid ...
0
votes
1answer
59 views
How can I get object from ZODB by url?
How can I get object from ZODB database in Zope3 project by url 'http://ecample.com/folder1/object1'?
obj1 = someMethod('http://ecample.com/folder1/object1')
Is there any tools of methods for ...
0
votes
1answer
134 views
Pyramid + ZODB Image storing
I have an upload form that accepts a zip file and has a method that unzips it and get each file from it. Make a unique id from the md5 hash of it and stores them in a dictionary;
dict[uid] = ...
0
votes
1answer
34 views
ZEO deadlocks on uWSGI in master mode
Good day!
I am migrating to uWSGI deployment. The project is half on ZOPE3 and uses ZODB with ZEO for multiple access. If I start the uwsgi daemon like this:
uwsgi_python27 --http :9090 --wsgi-file ...
1
vote
1answer
75 views
Accessing portal content with custom workflow and no 'View' permissions
I have a problem where I need to be able to make custom content accessible for search and retrieval via portal_catalog by anonymous users but not viewable by them.
I used custom content types and a ...
0
votes
1answer
55 views
unique key/attribute/property in zodb
Very simple senario:
class User(Persistent):
def __init__(self, username, email):
self.username = username
self.email = email
I want to store the User instances in zodb by its username ...
1
vote
1answer
93 views
Cleanup unused blobs in filestorage in Plone
Is there a way to find and remove unused blob storage space in a Plone site?
I'm looking for something like bin/zeopack, but that detects unused blobs in the blobstorage directory.
0
votes
1answer
50 views
Business Application with Grok and ZODB
DISCLAIMER: I'm new to Grok.
I've been thinking about writing a business application (like accounting/sales/payroll) with Grok and ZODB.As you know, a business application
does a lot of INSERT.
...
3
votes
1answer
67 views
How to do proper memory management with ZODB?
I read several ZODB tutorials but here is one thing I still don't get: How do you free memory that is already serialized (and committed) to the (say) FileStorage?
More specifically, I want the ...
0
votes
1answer
58 views
Zodb prevent a field to be saved automatically
I'm having an issue that is kind of worrying me. I have an app almost only working with traversal.
In order to get my admin paths, I have a node that gets attached to the root. on __getitem__, it ...
2
votes
2answers
97 views
Accessing ZODB from two processes
I have a site where every time I try to open the database while the server was running, it displays an error that the database is already open by a different process.
The problem is that I have some ...
1
vote
1answer
94 views
ZODB / repoze.catalog - saving objects and catalog in same database?
I thought I understood this but I'm beginning to wonder !
If you consider the repoze.catalog doco example :
from repoze.catalog.catalog import FileStorageCatalogFactory
from repoze.catalog.catalog ...
1
vote
1answer
33 views
How do you exclude a basic type property of a persistent object from being persistent?
For example if the type is an int or a str property of an object, how would you exclude it in the object's class. Is it like you have to declare a decorator before the property, what is it then?
2
votes
2answers
155 views
ZODB 3 for 64 bit windows
I tried to install ZODB3 for 64 bit Python 2.7 with pip. This installation requires a local compiler to compile the BTrees extension. As I do not have the needed MS compiler installed:
Is there a ...
1
vote
0answers
116 views
Managing / combining pandas dataframes with ZODB [closed]
I'm currently maintaining timeseries data and background information for the timeseries in a ZODB. The background data is quite interconnected and contains lots of constraints between each other, ...
2
votes
1answer
70 views
Consistent indexing for objects with variable attributes in ZODB
I have a ZODB installation where I have to organize several million objects of about a handful of different types. I have a generic container class Table, which contains BTrees to index objects by ...
0
votes
0answers
66 views
Can I rerun a Django request?
I'm using a key-value store for Django. To manage conflict errors for concurrent processes accessing the same objects, I need to rerun whole Django requests if the final commit fails.
How do I do ...
4
votes
3answers
90 views
pickle/zodb: how to handle moving .py files with class definitions?
I'm using ZODB which, as I understand it, uses pickle to store class instances. I'm doing a bit of refactoring where I want to split my models.py file into several files. However, if I do this, I ...
2
votes
1answer
101 views
Conflict resolution in ZODB
I do run parallel write requests on my ZODB. I do have multiple BTree instances inside my ZODB. Once the server accesses the same objects inside such a BTree, I get a ConflictError for the IOBucket ...
3
votes
1answer
167 views
Weekly ZODB packing for Plone site
What are the best practices of packing Plone ZODB database regularly (e.g. weekly)?
Plone ZEO cluster and a single process Zope instance differ?
Using zeopack + cron
Using wget + some URL + cron + ...
1
vote
1answer
109 views
Feasibility of rsyncing the whole Plone production server running Ubuntu once in a day
Has anyone experience of doing full VM snapshot or rsync back-ups with Plone? We have a server running several separate Zope application server worth of around 10-20 GB ZODB data and blobs.
Would it ...
2
votes
1answer
121 views
modifying data in ZODB
Following the suggestions given here, I have stored my data using ZODB, created by the following piece of code:
# structure of the data [around 3.5 GB on disk]
bTree_container = {key1:[ [2,.44,0], ...
1
vote
2answers
882 views
Python: How to find all the items greater than some number in an unsorted list (large data set)
Although, similar type of questions have been asked by others, for ex. here, but they differed slightly and didn't really get solve my problem, so here I go again.
I have N lists (N>20,000) and each ...
6
votes
2answers
455 views
when to commit data in ZODB
I am trying to handel the data generated by the following piece of code:
for Gnodes in G.nodes() # Gnodes iterates over 10000 values
Gvalue = someoperation(Gnodes)
for Hnodes in ...
1
vote
1answer
64 views
python: is it possible to detect whether I am in the paster shell?
I'm using Python + ZOPE/ZODB/Repoze BFG (the acronyms all get quite confusing) + paster.
I have a paster shell that I can run by doing:
paster --plugin repoze.bfg bfgshell site.ini zodb
...
2
votes
1answer
148 views
LockError using flask-zodb
I have a problem using flask-zodb in a simple Flask app deployed with mod_wsgi.
Every time I try to use the DB for example setting defaults:
from flaskext.zodb import zodb, List
db = ZODB(app)
...
1
vote
1answer
102 views
Huge PersistentMapping persisted on every content object save in Plone
every time I save an object, I get this warning in the instance log:
[..]deployment/eggs/ZODB3-3.10.5-py2.6-linux-i686.egg/ZODB/Connection.py:660: UserWarning: The <class ...
1
vote
1answer
115 views
Less Conflicting Session Manager for Zope 2
Zope2 Sessioning documentation:
"Conflict errors will be retried automatically by Zope, and the end user should never see one."
However, although I think I have the best setup for a high traffic ...
0
votes
2answers
131 views
How to install specific .egg pieces with easy_install
I am trying to install ZODB on a new machine. I would like to match the same installation I have on another machine (the newest ZODB does not install correctly with easy_install). I have the ...
2
votes
4answers
230 views
ZODB equivalent of ordered dict (odict?)
I am doing some PloneFormGen work. Currently PloneFormGen stores entered form entries internally as tuples without associated column information. If new columns (form fields) are added then the ...
1
vote
1answer
168 views
zodb: database conflict fail
I have a server, and a client.
A client sends a request. The request has a certain key associated with it, e.g. a-1, a-2, b-1, b-4.
If two requests for the same key come in at once, there will be a ...
4
votes
1answer
133 views
Renaming my.packages to my.package
my.packages is a custom archetypes package in the src directory. Thousands of items in the Plone instance are added with its types. I want to rename the package as my.package. By simply uninstalling ...
4
votes
2answers
254 views
zodb: when PersistentDict, when Folder?
When should I use a PersistentDict, and when should I use a Folder? What is the difference between them in terms of updates, internal structure, performance, etc?
3
votes
1answer
119 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
100 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 ...
1
vote
0answers
258 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 ...
1
vote
1answer
126 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. ...
1
vote
1answer
110 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 ...
3
votes
1answer
519 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 ...
1
vote
1answer
348 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
167 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 ...
4
votes
2answers
264 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 ...
0
votes
4answers
149 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 ...
