Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZODB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kirill Smelkov
ZODB
Commits
dd0998d8
Commit
dd0998d8
authored
Apr 01, 2005
by
Tim Peters
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
News about ZEO protocol changes.
parent
7f76d660
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
37 additions
and
8 deletions
+37
-8
branches/3.3/NEWS.txt
branches/3.3/NEWS.txt
+11
-0
branches/3.3/README.txt
branches/3.3/README.txt
+26
-8
No files found.
branches/3.3/NEWS.txt
View file @
dd0998d8
...
...
@@ -43,6 +43,17 @@ make a connection. The ZEO reconnection tests may run much faster now,
depending on platform, and should suffer far fewer (if any) intermittent
"timed out waiting for storage to connect" failures.
ZEO protocol and compatibility
------------------------------
ZODB 3.3 introduced multiversion concurrency control (MVCC), which required
changes to the ZEO protocol. The first 3.3 release should have increased
the internal ZEO protocol version number (used by ZEO protocol negotiation
when a client connects), but neglected to. This has been repaired.
Compatibility between pre-3.3 and post-3.3 ZEO clients and servers remains
very limited. See the newly updated ``Compatibility`` section in
``README.txt`` for details.
FileStorage
-----------
...
...
branches/3.3/README.txt
View file @
dd0998d8
...
...
@@ -19,7 +19,7 @@ The components you get with the ZODB3 release are as follows:
- ZConfig -- a Zope configuration language
- documentation
Our primary development platforms are Linux and Windows
2000
. The
Our primary development platforms are Linux and Windows
XP
. The
test suite should pass without error on all of these platforms,
although it can take a long time on Windows -- longer if you use
ZoneAlarm. Many particularly slow tests are skipped unless you pass
...
...
@@ -30,14 +30,32 @@ Compatibility
ZODB 3.3.1 requires Python 2.3.4 or later.
The Zope 2.8 and X3 releases should be compatible with this version of ZODB.
Note that Zope 2.7 and higher includes ZEO, so this package should only be
needed to run a ZEO server.
The Zope X3 release should be compatible with this version of ZODB. Zope 3
and Zope 2.8 have moved to ZODB 3.4. Note that Zope 2.7 and higher includes
ZEO, so this package should only be needed to run a ZEO server.
The ZEO in ZODB 3.3 is only partly compatible with earlier versions of ZODB.
ZODB 3.3 uses multiversion concurrency control (MVCC), which is new in 3.3,
and earlier ZEO servers do not support MVCC: a 3.3 ZEO client cannot talk
with an older ZEO server. In the other direction, a 3.3 ZEO server can talk
with older ZEO clients, but because the names of some basic classes have
changed, if any 3.3 clients commit modifications to the database it's likely
that the database will contain instances of classes that don't exist in
(can't be loaded by) older ZEO clients. For example, the database root
object was an instance of ``ZODB.PersistentMapping.PersistentMapping`` before
ZODB 3.3, but is an instance of ``persistent.mapping.PersistentMapping`` in
ZODB 3.3. A 3.3.1 client can still load a
``ZODB.PersistentMapping.PersistentMapping`` object, but is this just an alias
for ``persistent.mapping.PersistentMapping``, and an object of the latter
type will be stored if a 3.3 client commits a change to the root object. An
older ZEO client cannot load the root object so changed.
This limits migration possibilities: a 3.3 ZEO server can be used with
older ZEO clients and serve an older database, so long as no 3.3 ZEO
clients commit changes to the database. The most practical upgrade path
is to bring up both servers and clients using 3.3.1, not trying to mix
pre-3.3 and post-3.3 ZEO clients and servers.
The ZEO server in ZODB 3.3.1 is currently incompatible with earlier
versions of ZODB. If you want to test the software, you must be
running this release for both client and server. A backwards
compatibility mechanism will be provided in a later release.
Prerequisites
-------------
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment