Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/11/12 15:07:54 (12 years ago)
Author:
ascheibe
Message:

#1994 added a dao method which loads lightweight tasks instead of tasks. Therefore the task datas are not loaded which reduces memory consumption and improves performance when

  • downloading tasks
  • refresh automatically is checked in the Hive Job Manager
  • loading the Hive Status page.

The Hive Status page now shows which users are currently calculating how many tasks.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Services.Hive.Web/Hive-3.3/Status.aspx

    r7047 r9022  
    2929    Slaves (CPU Utilization):
    3030    <asp:Label ID="slavesLabel" runat="server" />
     31      <br />
     32      <br />
     33      Number of calculating tasks by user:<asp:Table ID="calculatingTasksByUserTable" runat="server" GridLines="Both">
     34          <asp:TableRow runat="server">
     35              <asp:TableCell runat="server" Font-Bold="False">User</asp:TableCell>
     36              <asp:TableCell runat="server" Font-Bold="False">Nr. of tasks</asp:TableCell>
     37          </asp:TableRow>
     38      </asp:Table>
     39      <br />
     40      Number of waiting tasks by user:<asp:Table ID="waitingTasksByUserTable" runat="server" GridLines="Both">
     41          <asp:TableRow runat="server">
     42              <asp:TableCell runat="server" Font-Bold="False">User</asp:TableCell>
     43              <asp:TableCell runat="server" Font-Bold="False">Nr. of tasks</asp:TableCell>
     44          </asp:TableRow>
     45      </asp:Table>
    3146      <br />
    3247    <br />
     
    121136      </ChartAreas>
    122137    </asp:Chart>
    123     <br />
    124138      <br />
    125139  </div>
Note: See TracChangeset for help on using the changeset viewer.