-1

我有一个 NDB 模型:

class mymodel(ndb.Model):
  id =ndb.IntegerProperty(indexed=True)
  region_id = ndb.IntegerProperty()
  name = ndb.TextProperty()
  address =ndb.TextProperty()
  is_enabled   = ndb.BooleanProperty()

我的应用程序是高复制类型,我想从本地数据中导入超过 3,000,000 条记录。我尝试通过 csv 文件导入,每次可以导入 3,000-4,000 条记录。请告诉我这些数据的正确方法。

4

1 回答 1

1

远程 api似乎是一个完美的候选者。

于 2012-11-28T16:58:46.010 回答