English 中文(简体)
如何将Drupal数据迁移到Django?
原标题:How to migrate Drupal data to Django?

我想将Drupal 6网站的一部分迁移到Django应用程序,特别是一个基于Drupal的问答部分,我认为它可以更好地使用OSQA。我已经创建了另一个与此集成的身份验证部分有关的问题,为了这个问题的目的,我们可以假设所有Drupal用户,至少是他们的用户名,都将在Django数据库中重新创建。这个问题是关于从Drupal到Django的数据迁移。

在Drupal中,我将所有问题作为问题内容类型的节点,并带有一些CCK字段,这些问题的答案是标准注释。我需要帮助找到将这些数据转移到Django中的OSQA的最佳方法。

起初我以为我可以使用South,但我不确定它是否最适合我的需求。

目前,我认为我最好的方法是编写一个Django应用程序,连接到Drupal数据库,用相应的评论和用户查询所有问题,然后使用正确的模型和Django方法直接插入Django的数据库。

我走的路对吗?还有其他建议吗?

谢谢

最佳回答

起初我以为我可以使用South,但我不确定它是否最适合我的需求。

不,南方不适合这种移民。它是用于项目内部迁移的,您会想要它,但它在这里对您没有任何好处。

“移民”真的不是一个很好的术语来形容你的需求。您真正想做的是从Drupal导出数据,并将其导入Django。

我还没有对此可能的解决方案进行深入分析,但如果我被要求做同样的事情,我只需为传输定义一个基于JSON或XML的交换格式,然后编写一组代码将数据从Drupal导出为这种格式,然后再编写另一组代码,将数据从这种格式导入Django。我强烈建议不要使用二进制格式进行此交换;将数据加载到文本编辑器中以验证数据并修复问题的能力非常重要。

目前,我认为我最好的方法是编写一个Django应用程序,连接到Drupal数据库,用相应的评论和用户查询所有问题,然后使用正确的模型和Django方法直接插入Django的数据库。

如果你想跳过交换文件,一步到位,那么你不想只为导入而编写一个新的Django应用程序;这太过分了。你想写的是Django管理命令在您将要导入数据的应用程序中,并且您可能希望使用Django支持多个数据库以及使用现有数据库模式的模型属性(如db_tabledb_column)。这就是为什么我建议使用交换文件方法:您不需要在Django模型中重新实现Drupal表。

问题回答

迈克的回答是一条很好的道路。然而,在现实世界中,您可以发现混合不同技术很有用,例如,连接到原始Drupal数据库中的文件引用文件内容的本地目录(文件查询是从几个表中简单连接),但通过自定义JSON视图(如节点)处理最结构化的数据。

在这种情况下,通过视图数据源模块可以帮助您通过简单的Drupal视图设计和选择数据。然后您可以编写管理命令按照前面的建议读取和解析数据。您必须以不要求太多处理的方式对视图进行分页,甚至可以使用gevent事件。

通过这种方式,我在不到10分钟的时间内解析了超过15k的内容,速度不那么快,但可以一次性导入。如果您想存储内容以供以后处理,您可以将原始数据保存在数据库的自定义模型上或内存上redis通过python的数据存储redis集成。如果你想要一些细节,我已经写了一个详细介绍了Drupal-Django迁移如何深化这些技术。





相关问题
what is wrong with this mysql code

$db_user="root"; $db_host="localhost"; $db_password="root"; $db_name = "fayer"; $conn = mysqli_connect($db_host,$db_user,$db_password,$db_name) or die ("couldn t connect to server"); // perform query ...

Users asking for denormalized database

I am in the early stages of developing a database-driven system and the largest part of the system revolves around an inheritance type of relationship. There is a parent entity with about 10 columns ...

Easiest way to deal with sample data in Java web apps?

I m writing a Java web app in my free time to learn more about development. I m using the Stripes framework and eventually intend to use hibernate and MySQL For the moment, whilst creating the pages ...

join across databases with nhibernate

I am trying to join two tables that reside in two different databases. Every time, I try to join I get the following error: An association from the table xxx refers to an unmapped class. If the ...

How can I know if such value exists in database? (ADO.NET)

For example, I have a table, and there is a column named Tags . I want to know if value programming exists in this column. How can I do this in ADO.NET? I did this: OleDbCommand cmd = new ...

Convert date to string upon saving a doctrine record

I m trying to migrate one of my PHP projects to Doctrine. I ve never used it before so there are a few things I don t understand. In my current code, I have a class similar to this: class ...

热门标签