Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/24/11 16:55:48 (13 years ago)
Author:
cneumuel
Message:

#1233

  • extended statistics recording:
    • execution times of users are captured
    • execution times and start-to-finish time of finished jobs is captured (to computer hive overhead)
    • data of deleted jobs is automatically captured in DeletedJobStatistics
  • changed ExecutionTime type in database from string to float (milliseconds are stored instead of TimeSpan.ToString())
  • added IsPrivileged field to job to indicate if it should be executed in a privileged sandbox
  • added CpuUtilization field to slave to be able to report cpu utilization
  • added GetJobsByResourceId to retrieve all jobs which are currently beeing calculated in a slave(-group)
  • TransactionManager now allows to use serializable tranactions (used for lifecycle trigger)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive/3.4/ServiceClients/HiveServiceClient.cs

    r6006 r6267  
    22// <auto-generated>
    33//     This code was generated by a tool.
    4 //     Runtime Version:4.0.30319.208
     4//     Runtime Version:4.0.30319.225
    55//
    66//     Changes to this file may cause incorrect behavior and will be lost if
     
    9191       
    9292        [System.Runtime.Serialization.OptionalFieldAttribute()]
    93         private System.Nullable<System.TimeSpan> ExecutionTimeField;
     93        private System.TimeSpan ExecutionTimeField;
    9494       
    9595        [System.Runtime.Serialization.OptionalFieldAttribute()]
     
    123123       
    124124        [System.Runtime.Serialization.DataMemberAttribute()]
    125         public System.Nullable<System.TimeSpan> ExecutionTime
     125        public System.TimeSpan ExecutionTime
    126126        {
    127127            get
     
    358358       
    359359        [System.Runtime.Serialization.OptionalFieldAttribute()]
     360        private bool IsPrivilegedField;
     361       
     362        [System.Runtime.Serialization.OptionalFieldAttribute()]
    360363        private System.Nullable<System.DateTime> LastHeartbeatField;
    361364       
     
    433436                    this.IsParentJobField = value;
    434437                    this.RaisePropertyChanged("IsParentJob");
     438                }
     439            }
     440        }
     441       
     442        [System.Runtime.Serialization.DataMemberAttribute()]
     443        public bool IsPrivileged
     444        {
     445            get
     446            {
     447                return this.IsPrivilegedField;
     448            }
     449            set
     450            {
     451                if ((this.IsPrivilegedField.Equals(value) != true))
     452                {
     453                    this.IsPrivilegedField = value;
     454                    this.RaisePropertyChanged("IsPrivileged");
    435455                }
    436456            }
     
    758778       
    759779        [System.Runtime.Serialization.OptionalFieldAttribute()]
     780        private double CpuUtilizationField;
     781       
     782        [System.Runtime.Serialization.OptionalFieldAttribute()]
    760783        private System.Nullable<int> FreeCoresField;
    761784       
     
    825848                    this.CpuSpeedField = value;
    826849                    this.RaisePropertyChanged("CpuSpeed");
     850                }
     851            }
     852        }
     853       
     854        [System.Runtime.Serialization.DataMemberAttribute()]
     855        public double CpuUtilization
     856        {
     857            get
     858            {
     859                return this.CpuUtilizationField;
     860            }
     861            set
     862            {
     863                if ((this.CpuUtilizationField.Equals(value) != true))
     864                {
     865                    this.CpuUtilizationField = value;
     866                    this.RaisePropertyChanged("CpuUtilization");
    827867                }
    828868            }
Note: See TracChangeset for help on using the changeset viewer.