django.db连接从psycopg2返回不同的值

时间:2014-08-06 15:22:55

标签: python django psycopg2

背景:我正在使用Process转换python脚本,该脚本将django-db中的值转换为多线程。 我可能会错过一些东西(django中很新)但得到了#34; DatabaseError:SSL错误:解密失败或错误记录mac" 所以我已经关闭了连接(根据this)...但是得到了#34; DatabaseError:SSL连接意外关闭了#34;。

我决定尝试连接psycopg2&关闭django版本位置的连接。 一切都运作良好。

问题:当我测试了解决方案时,我发现相同的查询会返回不同的值!

我的查询非常简单: " SELECT DISTINCT" someId"从aTable WHERE" date" < ' date_in_the_past&#39 ;;"

请建议..

更新: 我无法显示完整的代码..我已经更改了名称等等'但流量是100%相同。 lanchAll方法为每个t_id启动进程,当我使用django.db连接搜索时,我得到3个不同的值,当使用psycopg2时,我得到1个值。 在运行时,使用in_sim调用它,这是过去的日期。 在lanchAll中,django.db连接在psycopg2旁边标记为注释......

from multiprocessing import Process
import sys
from numpy import *
from itertools import izip_longest
from datetime import * 
import psycopg2
from appName import settings
from django.core.management import setup_environ
from django.core.exceptions import ObjectDoesNotExist

import argparse
import pdb
setup_environ(settings)

from appName.models import *
from appName.aClass import *
from django.db import connection

def lanchAll(in_sim):
    p = 0
    try:
        con = psycopg2.connect(database=DB_NAME, user=DB_USER, password=DB_PASS,
                        host=DB_IP)
        cursor = con.cursor()
        # cursor = connection.cursor()
        if in_simolationDate is None:
            query = 'SELECT DISTINCT "t_id" FROM appName_tableNAme '\
                'WHERE "date" > now() - interval \'%s seconds\';'        
            cursor.execute(query, [TIME_WINDOW])    
        else:
            query = 'SELECT DISTINCT "t_id" FROM appName_tableNAme '\
                'WHERE "date" < %s ;'        
            cursor.execute(query, [in_sim])    

    except ObjectDoesNotExist as e:
        con.close()
        # connection.close()
        print((str('DB Error: %s\n' % e)))
        return -3
    if cursor.rowcount < 1:
        con.close()
        # connection.close()
        print ("offline!")
        return -4

    for row in onlineTagsCursor:
        t_id = row[0]   
        print "currently lunching tagId:" + str(t_id)
        processInstance = Process(target=launchThread, args=(t_id, p,in_sim))
        processInstance.start()

    con.close()
    # connection.close()


def launcher(in_id, in_p,in_sim):
    #I'll add it if you fell that it is needed.. 


#the model for the table     
class tableNAme(models.Model):
    m_id    = models.IntegerField()
    sc_id   = models.IntegerField()
    t_id    = models.IntegerField()
    r       = models.IntegerField()
    l       = models.IntegerField()
    g       = models.IntegerField(0)
    p       = models.IntegerField(0)
    date    = models.DateTimeField(auto_now=True)

1 个答案:

答案 0 :(得分:0)

我怀疑你在创建连接后正在分叉。 Libpq连接(psycopg使用的连接)don't support fork

确保新进程创建自己的连接,但不能使用父进程创建的进程。