hbase - 如何在没有删除表的情况下更改表结构

时间:2011-09-02 06:39:55

标签: grails groovy nosql hadoop hbase

我使用grails-1.3.2和gorm-hbase-0.2.4插件。

有时我需要更改表结构(添加新表或列)。 我创建了Car table:

class Car{
    static belongsTo = [user:User]

    String color
    String model
    //.....

    static constraints = {
    }
}

但是当我想创建汽车对象时:

def create = {
        Car car = new Car()
        car.properties = params
        car.save(flush: true)        
 }

我遇到以下异常:

ERROR gorm.SavePersistentMethod  - APP_CAR
org.apache.hadoop.hbase.TableNotFoundException: APP_CAR

在我使用create-drop运行应用程序之后,everithing开始运行良好.. 但我不能在每次更改后删除所有数据, 我认为插件必须做所有更新

所以,我正在寻找一些方法,在changind表结构继续运行没有删除表的应用程序之后..

如果有人知道解决方案,请提供帮助。

2 个答案:

答案 0 :(得分:1)

Grails不会对您的表进行自动更新,如果它会自动删除生产中的列,该怎么办?也许这不是你想要的。

有一个数据库迁移插件可以执行此操作,这是一个很好的解释它的link。请注意,您需要使用grails prod 而不是直接在链接中使用grails,否则它将仅在开发模式下运行。该链接未在其命令中显示prod。

官方链接为here,春季来源博客为here

答案 1 :(得分:0)

数据库迁移插件不起作用,因为它只适用于hibernate。 您需要在插件源中进行一些更改。 HBasePluginSupport.grovy

static doWithApplicationContext = {ApplicationContext applicationContext ->
    LOG.debug("Closure HBasePluginSupport.doWithApplicationContext{} invoked with arg $applicationContext")

    assert !PluginManagerHolder.getPluginManager().hasGrailsPlugin("hibernate"),"hibernate plug-in conflicts with gorm-hbase plug-in"

    // Read data source configuration, setting defaults as required
    def dataSource = application.config.dataSource
    // TODO write tests for this <--- Even maybe figure out if this is ever invoked
    if (!dataSource) dataSource = new HBaseDefaults()

    def dbCreate = dataSource?.dbCreate
    if (!dbCreate) dbCreate = "create-drop"
    LOG.debug("Data Source configured with dbCreate set to $dbCreate")

    // TODO Complete dbCreate related processing
    if (dbCreate?.toUpperCase()?.equals("CREATE-DROP")) {
        def createIndexedTables = dataSource?.indexed
        LOG.debug ("Flag createIndexedTables set to $createIndexedTables")
        def tableManager = HBaseLookupUtils.getBean("hbase.table.manager")

        tableManager.createSequenceTable()
        tableManager.createReferenceTable()

        application.domainClasses.each {domainClass ->
            LOG.debug("Adding table for Domain Class $domainClass")
            tableManager.createDomainTable(domainClass, createIndexedTables)
        }

        LOG.debug("List of all store found :")
        tableManager.getTableNames().each {tn ->
            LOG.debug("- $tn")
        }
    } else if (dbCreate?.toUpperCase()?.equals("UPDATE")) {
        def createIndexedTables = dataSource?.indexed
        def tableManager = HBaseLookupUtils.getBean("hbase.table.manager")
        def existingTables = tableManager.getTableNames();

        application.domainClasses.each {domainClass ->
            LOG.debug("Domain Class $domainClass")
            def tableDesc = new HTableDescriptor(HBaseNameUtils.getDomainTableName(domainClass))
            if (!existingTables.contains(tableDesc.getNameAsString())) {
                tableManager.createDomainTable(domainClass, createIndexedTables)
                LOG.debug("Adding table for Domain Class $domainClass")
            }
        }
    }

    application.domainClasses.each {domainClass ->
        LOG.debug("Adding dbms related methods to Domain Class $domainClass")
        def domainClassManager = new HBaseDomainClassManager()
        domainClassManager.createQueryMethods(domainClass)
        domainClassManager.createPersistenceMethods(domainClass)
        domainClassManager.addLazyLoadingSupport(domainClass)
        domainClassManager.addDynamicFinders(domainClass)
    }
}