Difference between revisions of "Dashboard"

From Archivematica
Jump to navigation Jump to search
Line 75: Line 75:
 
There exists different methods of implementing a Comet streaming transport, but all of them are based in existing browser features: iframe HTML element, XMLHttpRequest or script tags. Between these methods, I think that we have two candidates:
 
There exists different methods of implementing a Comet streaming transport, but all of them are based in existing browser features: iframe HTML element, XMLHttpRequest or script tags. Between these methods, I think that we have two candidates:
  
* '''XMLHttpRequest long polling'''. Firstly, the browser creates an asynchronous XMLHttpRequest with a long time-out. When we receive a response, the server closes the connection and we launch another XHR request immediately afterward, waiting for a new event.
+
* '''XMLHttpRequest long polling''': firstly, the browser creates an asynchronous XMLHttpRequest with a long time-out. When we receive a response, the server closes the connection and we launch another XHR request immediately afterward, waiting for a new event.
* '''Script tag long polling'''. The browser creates script HTML elements dinamically and setting their source ("src" attribute) to the location of the server, which then send back JavaScript code. Each time the script requests is completed, the browser opens a new one, just like XHR long polling design does. This method bypass the [http://code.google.com/p/browsersec/wiki/Part2#Same-origin_policy same-origin policy security mechanism] implemented in modern browsers.
+
* '''Script tag long polling''': the browser creates script HTML elements dinamically and setting their source ("src" attribute) to the location of the server, which then send back JavaScript code. Each time the script requests is completed, the browser opens a new one, just like XHR long polling design does. This method bypass the [http://code.google.com/p/browsersec/wiki/Part2#Same-origin_policy same-origin policy security mechanism] implemented in modern browsers.
  
 +
==Alternatives==
 +
 +
There exists two extremely different alternatives that we should consider:
 +
 +
* '''WebSockets''': this technology provides full-duplux communications channels over a single TCP socket. The [http://dev.w3.org/html5/websockets/ WebSocket API] is being standardized by the W3C and the [http://tools.ietf.org/html/draft-ietf-hybi-thewebsocketprotocol WebSocket protocol] is being standardized by the IETF ([https://datatracker.ietf.org/wg/hybi/charter/ HyBi working group]).
 +
* '''Simple polling''':
 +
 +
==Scalability==
  
 
* classic vs ajax: http://www.adaptivepath.com/images/publications/essays/ajax-fig2.png
 
* classic vs ajax: http://www.adaptivepath.com/images/publications/essays/ajax-fig2.png

Revision as of 08:59, 11 January 2011

Main Page > Development > Development documentation > Dashboard

Design

This page proposes a new feature and reviews design options

Development

This page describes a feature that's in development

Documentation

This page documents an implemented feature

Technical Requirements

The Dashboard is a web-based tool that is developed using Python-based Django MVC framework.

Functional Requirements

  • provide a web-based, multi-user interface that will report on the status of system events and make it simpler to control and trigger specific micro-services.
  • provide a user-friendly interface to add/edit metadata
  • coordinate the read and write operations of the AIP to file storage and the syncing of metadata updates between the AIPs and the access system.
  • process Consumer AIP requests
  • provide statistical information about Archivematica operation
  • provide preservation planning information

Release 0.7-alpha

1) Provide updates on the Archivematica processes by reading rows from the MCP 'Task' table in its MySQL dbase.

  • This will likely have to happen through some kind of polling by the Django app of the MySQL database.
  • One other implementation option we've discussed is having Archivematica publish a RSS/Atom feed that the Django app reads.

2) Provide notification of errors

  • Can deduce from values in the Tasks table whether an error output has occured
  • Will need to backtrack to MCP Task config XML file to identify the Error output directory where the files that incurred the error will be sitting

3) Interact with the the Archivematica API:

  1. getListOfJobsAwaitingApproval
  2. approveJob
  • i.e. at certain stages in the Archivematica workflow we will stop and await the explicit approval from an archivist to trigger the next series of Archivematica tasks. So somewhere in the Django Dashboard there will be a list of jobs awaiting approval (retrieved from the Archivematica API) and then the ability for an archivist to click a button thereby approving a job and notifiying Archivematica MCP of that action (again, via the Archivematica API).

Post release 0.7-alpha

  • create Accession Record & add appraisal metadata via Dashboard
  • API:
    • listActiveTasks
    • taskCompleteNotification
  • list/search AIP locations on archival storage (ideally a URI but will depend on chosen storage platform)
  • sync access system metadata updates with matching metadata elements in AIP's METS.xml
  • process AIP request
  • preservation monitoring
    • list format types in storage
    • link to media-type preservation plans (URI starting with wiki-page can evolve to RDF registry)
    • notify when preservation actions required for format types
  • solr index

User interface

Archivematica-dashboard-0.6.2-dev-29Nov.png Archivematica-dashboard-0.6.2-dev-29Nov.png

Early mockup (March 2010) ArchivematicaDashboardScreencap05Mar2010.png

Real-time interaction

The Ajax web application model came to made the Web UI experience dynamic and asynchronous, as a replacement of the classic page-by-page web application model. However, Ajax applications don't offer a duplex communication where both client and server can send messages at any time. A new model of web applications frequently called Comet appeared providing bi-directional communications using persistent long-lasting HTTP connections between the server and the client. Comet is similar to Ajax in that it's asynchronous, but applications following the Comet model can communicate state changes on the server with almost negligible latency, which makes it suitable for monitoring or multi-user collaboration applications.

There exists different methods of implementing a Comet streaming transport, but all of them are based in existing browser features: iframe HTML element, XMLHttpRequest or script tags. Between these methods, I think that we have two candidates:

  • XMLHttpRequest long polling: firstly, the browser creates an asynchronous XMLHttpRequest with a long time-out. When we receive a response, the server closes the connection and we launch another XHR request immediately afterward, waiting for a new event.
  • Script tag long polling: the browser creates script HTML elements dinamically and setting their source ("src" attribute) to the location of the server, which then send back JavaScript code. Each time the script requests is completed, the browser opens a new one, just like XHR long polling design does. This method bypass the same-origin policy security mechanism implemented in modern browsers.

Alternatives

There exists two extremely different alternatives that we should consider:

  • WebSockets: this technology provides full-duplux communications channels over a single TCP socket. The WebSocket API is being standardized by the W3C and the WebSocket protocol is being standardized by the IETF (HyBi working group).
  • Simple polling:

Scalability

  • classic vs ajax: ajax-fig2.png
  • ajax vs comet: Comet.png

Deployment

See

Development

See