0

语境:

我的模型类继承自基类:

class BaseModel(ndb.model):
  # commom fields and methods

class SpecificModel(BaseModel):
  # specific fields and methods

问题:

我想使用appengine bulkuploader 服务导出 SpecificModel 实体。

我已经定义了配置文件(data_loader.py):

import sys
sys.path.append('.') ## this is to ensure that it finds the file 'models.py'
from google.appengine.ext import ndb
from google.appengine.tools import bulkloader
from models import *

class SpecificModelExporter(bulkloader.Exporter):
  def __init__(self):
    bulkloader.Exporter.__init__(self, 'SpecificModel',
                                 [('fieldOne', str, None),
                                  ('fieldTwo', str, None)
                                 ])

    exporters = [ SpecificModelExporter ]

我使用以下命令下载数据:

  appcfg.py download_data --config_file=data_loader.py --filename=data.csv --kind=SpecificModel --url=http://url.appspot.com/_ah/remote_api

当我尝试下载数据时,出现以下错误

google.appengine.ext.db.KindError: No implementation for kind 'SpecificModel'

有什么线索吗?

4

1 回答 1

2

看看源代码

您的模型将通过以下方式GetImplementationClass查找

implementation_class = db.class_for_kind(kind_or_class_key)

db模型注册表不会包含ndb您定义的任何模型。在其中创建了一个类似的注册表,并且在那里找不到您定义的ndb.Model._kind_map任何模型。db

注意:我所知,没有相应的问题/功能请求请求ndb批量加载程序或等效ndb批量加载程序的支持。可能值得提交一份并由其主演。

于 2012-11-27T02:47:47.553 回答