浏览代码

HUE-1128 [pig] DB migration file

Delete Hue workflow after submission
Romain Rigaux 12 年之前
父节点
当前提交
3d0e0343c7

+ 4 - 1
apps/pig/src/pig/api.py

@@ -97,7 +97,10 @@ class OozieApi:
     start_link.child = action
     start_link.child = action
     start_link.save()
     start_link.save()
 
 
-    return _submit_workflow(self.user, self.fs, workflow, mapping)
+    oozie_wf = _submit_workflow(self.user, self.fs, workflow, mapping)
+
+    workflow.delete()
+    return oozie_wf
 
 
   def get_jobs(self):
   def get_jobs(self):
     kwargs = {'cnt': OozieApi.MAX_DASHBOARD_JOBS,}
     kwargs = {'cnt': OozieApi.MAX_DASHBOARD_JOBS,}

+ 86 - 0
apps/pig/src/pig/migrations/0001_initial.py

@@ -0,0 +1,86 @@
+# encoding: utf-8
+import datetime
+from south.db import db
+from south.v2 import SchemaMigration
+from django.db import models
+
+class Migration(SchemaMigration):
+
+    def forwards(self, orm):
+
+        # Adding model 'Document'
+        db.create_table('pig_document', (
+            ('owner', self.gf('django.db.models.fields.related.ForeignKey')(to=orm['auth.User'])),
+            ('is_design', self.gf('django.db.models.fields.BooleanField')(default=True, db_index=True, blank=True)),
+            ('id', self.gf('django.db.models.fields.AutoField')(primary_key=True)),
+        ))
+        db.send_create_signal('pig', ['Document'])
+
+        # Adding model 'PigScript'
+        db.create_table('pig_pigscript', (
+            ('document_ptr', self.gf('django.db.models.fields.related.OneToOneField')(to=orm['pig.Document'], unique=True, primary_key=True)),
+            ('data', self.gf('django.db.models.fields.TextField')(default='{"name": "", "parameters": [], "script": "", "properties": [], "resources": [], "job_id": null}')),
+        ))
+        db.send_create_signal('pig', ['PigScript'])
+
+
+    def backwards(self, orm):
+
+        # Deleting model 'Document'
+        db.delete_table('pig_document')
+
+        # Deleting model 'PigScript'
+        db.delete_table('pig_pigscript')
+
+
+    models = {
+        'auth.group': {
+            'Meta': {'object_name': 'Group'},
+            'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+            'name': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '80'}),
+            'permissions': ('django.db.models.fields.related.ManyToManyField', [], {'to': "orm['auth.Permission']", 'symmetrical': 'False', 'blank': 'True'})
+        },
+        'auth.permission': {
+            'Meta': {'unique_together': "(('content_type', 'codename'),)", 'object_name': 'Permission'},
+            'codename': ('django.db.models.fields.CharField', [], {'max_length': '100'}),
+            'content_type': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['contenttypes.ContentType']"}),
+            'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+            'name': ('django.db.models.fields.CharField', [], {'max_length': '50'})
+        },
+        'auth.user': {
+            'Meta': {'object_name': 'User'},
+            'date_joined': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now'}),
+            'email': ('django.db.models.fields.EmailField', [], {'max_length': '75', 'blank': 'True'}),
+            'first_name': ('django.db.models.fields.CharField', [], {'max_length': '30', 'blank': 'True'}),
+            'groups': ('django.db.models.fields.related.ManyToManyField', [], {'to': "orm['auth.Group']", 'symmetrical': 'False', 'blank': 'True'}),
+            'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+            'is_active': ('django.db.models.fields.BooleanField', [], {'default': 'True', 'blank': 'True'}),
+            'is_staff': ('django.db.models.fields.BooleanField', [], {'default': 'False', 'blank': 'True'}),
+            'is_superuser': ('django.db.models.fields.BooleanField', [], {'default': 'False', 'blank': 'True'}),
+            'last_login': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now'}),
+            'last_name': ('django.db.models.fields.CharField', [], {'max_length': '30', 'blank': 'True'}),
+            'password': ('django.db.models.fields.CharField', [], {'max_length': '128'}),
+            'user_permissions': ('django.db.models.fields.related.ManyToManyField', [], {'to': "orm['auth.Permission']", 'symmetrical': 'False', 'blank': 'True'}),
+            'username': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '30'})
+        },
+        'contenttypes.contenttype': {
+            'Meta': {'unique_together': "(('app_label', 'model'),)", 'object_name': 'ContentType', 'db_table': "'django_content_type'"},
+            'app_label': ('django.db.models.fields.CharField', [], {'max_length': '100'}),
+            'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+            'model': ('django.db.models.fields.CharField', [], {'max_length': '100'}),
+            'name': ('django.db.models.fields.CharField', [], {'max_length': '100'})
+        },
+        'pig.document': {
+            'Meta': {'object_name': 'Document'},
+            'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
+            'is_design': ('django.db.models.fields.BooleanField', [], {'default': 'True', 'db_index': 'True', 'blank': 'True'}),
+            'owner': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['auth.User']"})
+        },
+        'pig.pigscript': {
+            'Meta': {'object_name': 'PigScript', '_ormbases': ['pig.Document']},
+            'data': ('django.db.models.fields.TextField', [], {'default': '\'{"name": "", "parameters": [], "script": "", "properties": [], "resources": [], "job_id": null}\''}),
+            'document_ptr': ('django.db.models.fields.related.OneToOneField', [], {'to': "orm['pig.Document']", 'unique': 'True', 'primary_key': 'True'})
+        }
+    }
+
+    complete_apps = ['pig']

+ 0 - 0
apps/pig/src/pig/migrations/__init__.py


+ 0 - 7
apps/pig/src/pig/models.py

@@ -28,8 +28,6 @@ from django.utils.translation import ugettext as _, ugettext_lazy as _t
 from desktop.lib.exceptions_renderable import PopupException
 from desktop.lib.exceptions_renderable import PopupException
 from hadoop.fs.hadoopfs import Hdfs
 from hadoop.fs.hadoopfs import Hdfs
 
 
-from oozie.models import Workflow
-
 
 
 class Document(models.Model):
 class Document(models.Model):
   owner = models.ForeignKey(User, db_index=True, verbose_name=_t('Owner'), help_text=_t('User who can modify the job.'))
   owner = models.ForeignKey(User, db_index=True, verbose_name=_t('Owner'), help_text=_t('User who can modify the job.'))
@@ -72,11 +70,6 @@ class PigScript(Document):
     return json.loads(self.data)
     return json.loads(self.data)
 
 
 
 
-class Submission(models.Model):
-  script = models.ForeignKey(PigScript)
-  workflow = models.ForeignKey(Workflow)
-
-
 def create_or_update_script(id, name, script, user, parameters, resources, is_design=True):
 def create_or_update_script(id, name, script, user, parameters, resources, is_design=True):
   """This take care of security"""
   """This take care of security"""
   try:
   try: