Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6693987
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T06:02:59+00:00 2026-05-26T06:02:59+00:00

I have a python program that accesses a couchDB database, creates new documents and

  • 0

I have a python program that accesses a couchDB database, creates new documents and updates existing ones.
For a given database, db, and document, Doc, I try to take care and reload the document before each modification:

somedoc = Doc.load(db,id)

before updating via

doc.store(db)

As far as I am aware this shouldn’t be necessary, as doc.rev should be updated each time store is called. BUT … I am getting conflict messages:

couchdb.http.ResourceConflict: (u'conflict', u'Document update conflict.')

Is there any way of just forcing no update and a warning message rather than having a fatal error upon these conflicts. Or, better, is there some way of quickly checking the document revision number – the db is being accessed by two scripts that both update, but both are careful to load each doc, make modifications quickly and update the db in as little time as possible to minimise the chance of a conflict….

Cheers

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T06:03:00+00:00Added an answer on May 26, 2026 at 6:03 am

    I still haven’t worked out where the resource conflict is coming from, given that just before storing a doc I check that the revision is correct:

    latestRev = CouchDoc.load(db,doc.id)
    if latestRev.rev != doc.rev:
        print 'revision mismatch ' + doc.rev + '\t' + revs.rev
    else:
        doc.store(db)
    

    However, there is an easy way round the conflict causing a fatal error (new to python, so didn’t think of doing this before):

    try:
        doc.store(db)
    except couchdb.http.ResourceConflict:
        latestDoc = ConflictDoc.load(db,doc.id)
    

    This does require that any updates to doc before the try command are redone before storing again when couchDB throws a ResourceConflict.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am developing a program in Python that accesses a MySQL database using MySQLdb.
I have a Python program that consists of several modules. The main module creates
I have a python program that calls a stored procedure from db2 database. I
I have a Python program that uses the threading module. Once every second, my
I have a python program that reads floating point values using the following regular
I have a python program that opens several urls in seperate tabs in a
I have a python program that is going to eat a lot of memory,
I have a simple python program that I'd like to daemonize. Since the point
I have a python program/file that I want to run repeatedly and calculate the
I have a Python program (with Django - does this matter?) that I want

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.