How we did things in the tools we developed at UTK

From ReddNet
Revision as of 01:42, 1 February 2008 by Sellersc (talk | contribs) (How LoCI has done things)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

How we did things in the tools we developed at UTK

             Christopher Sellers 
                Feb 1, 2008


Outline

 LoDN  
 LibStdIO
 LoDNFS


Architectural Stack

 LibSTDIO    LoDNFS
        LoDN
        LoRS
Exnode LBone  End2End
        IBP


LoDN Purpose

 - Exnode Repository
 - Exnode Management Services 
 - Exnode “warming”


LoDN Usefulness

 - User Configurable
 - Web Interface
 - File system-like approach for management
 - Exnode Persistence


User Configurable

 - Exnode accessible (published/unpublished)
 - Distribution of exnode across depots


Web Interface

 - LoDN service is provided over http[s] through a web server
 - All data and actions are passed to LoDN through http[s].
 - This makes it accessible and viewable via a browser.
 - Provides a simple interface protocol for writing client code.


File system-like appearance

 - It provides heirachical directory structure
 - Traverse, create and remove directories
 - Exnodes appear as files within each directory
 - Each exnode has properties: sizes, accessibility


LoDN URI

 - lodn://hostname[:port]/username/path-to-exnode


<DEMO of LoDN>


Exnode Persistence

 - Warming
 - Imported exnodes fall under the control of the warmer
 - Users can control how exnodes are warmed and distributed 


Warmer

 - Periodically refreshes each allocation
 - Replicates data across the user defined "sites"
 - One allocation is replicated and maintained per site
 - Controls sharing and distribution of data


Warmer Control

 - The warmer operates based on user defined configuration files
 - Users can specify their own sites for their exnodes
 - The warmer operates on exnodes based on the "nearest" configuration file.
 - Hierarchical arranged, per exnode and per directory
 - Configuration files can be managed through web interface.


<DEMO of Warmer and control>


LibStdIO

 - Based on the stdio interface
 - Serves as drop in replacement
 - Offers the following functions:
      fopen, fdopen, fileno, ferror, setvbuf, fprintf, fread, putc, fputc, fputs, fwrite, 
      ftell, fseek, fclose, fflush, fgetc, fgets, feof, clearerr, fstat, ftruncate 
 - The only change needed is to replace the stdio.h header file with libStdIO.h and to recompile with LoRS libraries.
 - It works with the LoDN URI and is compatible with regular stdio.  
 - It does preprocessor replacement, to replace all of the above functions with their std_ equivalents in libStdIO. 
 - When a file is opened, libStdIO determines the type based on the URI scheme.  For every file descriptor, there is an internal data structure of function pointers for the io functions to use. For standard files, the regular io functions are assigned.  For LoDN URI, the LoRS (lors_*) functions are assigned in the data structure.  When the std_* functions are called, this data structure is used to call the correction io function.
   Ex: Application --> std_fread() --> lors_fread() or fread() 


 - When a LoDN URI is opened, libStdIO uses the http[s] protocol to export the exnode from LoDN and to the local file system for use. 
 - When a LoDN URI is closed, libStdIO uses the http[s] protocol to import the exnode to LoDN.    - The logistical networking based io functions are implemented with the LoRS API with local buffering. 
 - In addition to the LoDN URI, environmental variables are used to pass information to libStdIO including username (LODN_USER), password (LODN_PASSWORD), ssl method (LODN_SSL_METHOD), and depots (LORS_DEPOTS). 
 - Example Applications:
    HDF5, grace, gnuplot and more.


  #include <stdlib.h>
  #include <unistd.h>
  #include "libStdIO.h"
  /***---Main---***/
  int main(int argc, char *argv[])
  {
     /* Declarations */
     FILE *file;
     char buffer[4096];
     int amtRead;
     int i;
  
     for(i=1; i<argc; i++)
     {
         if((file = fopen(argv[i], "r")) == NULL)
         {
             fprintf(stderr, "Error opening %s\n", argv[i]);
             continue;
         }
         while((amtRead = fread(buffer, 1, sizeof(buffer), file)) > 0)
         {
             write(1, buffer, amtRead);
         }
         fclose(file);
     }
     /* Return successfully to the parent process */
     return EXIT_SUCCESS;
  }



<LibStDIO Demo>


Questions?


LoDNFS over Fuse

Purpose

 - Many application expect lower Posix IO and filesystem interface if StdIO can be used.
 - Every application has to be individual ported.

Fuse

 - Filesystem in userspace or FUSE allows non-privileged users to create their own file systems without the need to write any kernel code.  
 - This is achieved by running the file system code in user space, while the FUSE module only provides a "bridge" to the actual kernel interfaces.  
 - In this case the FUSE interface handles the acquisition of the exnode and the collection of data from the  depots, leaving the user free to use the mounted directory as they would a normal filesystem.
 - The use of FUSE eliminates the need for applications to be ported, but also enforces filesystem semantics and necessitates the mounting of the desired lodn directories.
 - A major advantage of fuse is that it allows us to not only use a command line interface but allows for the full range of applications of any mounted partition.


Implementation

 - Fuse provides a set of functions to implement. 
 - The kernel performs filesystem requests through a pseudo device and fuse module that calls  these functions.  
 - These functions work similar to the lors_* functions in libStdIO in that they use http[s] to communicate with LoDN and the LoRS API for operating on the exnode.


 - Though still in development this tool allows for greater ease of use, a wider variety of applications, and a new level of convenience for the LoDN user community.


< LoDNFS Demo>

Questions?