Presentation is loading. Please wait.

Presentation is loading. Please wait.

E-science grid facility for Europe and Latin America The AMGA Metadata Catalogue Riccardo Bruno INFN Catania,

Similar presentations


Presentation on theme: "E-science grid facility for Europe and Latin America The AMGA Metadata Catalogue Riccardo Bruno INFN Catania,"— Presentation transcript:

1 www.eu-eela.org E-science grid facility for Europe and Latin America The AMGA Metadata Catalogue Riccardo Bruno riccardo.bruno@ct.infn.it INFN Catania, EELA-2 NA2 Training Manager 1 st EELA-2 Grid School (E2GRIS1), 02 nd -15 th Nov 2008

2 2 www.eu-eela.eu Itacuruçá (Brazil), 1 st EELA-2 Grid School (E2GRIS1), 02.11.2008 – 15.11.2008 www.eu-eela.eu Metadata services background and possible uses on a grid environment Architecture and features of the gLite Metadata Service New AMGA Features –existing DB import –native SQL support Use cases Contents

3 3 www.eu-eela.eu Itacuruçá (Brazil), 1 st EELA-2 Grid School (E2GRIS1), 02.11.2008 – 15.11.2008 www.eu-eela.eu Grids allow to save millions of files spread over several storage sites. Users and applications need an efficient mechanism –to describe files –to locate files based on their contents This is achieved by –associating descriptive attributes to files  Metadata is data about data –answering user queries against the associated information Why Grid needs Metadata?

4 4 www.eu-eela.eu Itacuruçá (Brazil), 1 st EELA-2 Grid School (E2GRIS1), 02.11.2008 – 15.11.2008 www.eu-eela.eu Entries – Representation of real world entities which we are attaching metadata to for describing them Attribute – key/value pair –Type – The type (int, float, string,…) –Name/Key – The name of the attribute –Value - Value of an entry's attribute Schema – A set of attributes Collection – A set of entries associated with a schema Metadata - List of attributes (including their values) associated with entries 4 Basic Metadata Concept

5 5 www.eu-eela.eu Itacuruçá (Brazil), 1 st EELA-2 Grid School (E2GRIS1), 02.11.2008 – 15.11.2008 www.eu-eela.eu Movie trailers files (entries) saved on Grid Storage Elements and registered into File Catalogue We want to add metadata to describe movie content. A possible schema: –Title -- varchar –Runtime -- int –Cast -- varchar –LFN -- varchar A metadata catalogue will be the repository of the movies’ metadata and will allow to find movies satisfying users’ queries Example: Movie Trailers

6 6 www.eu-eela.eu Itacuruçá (Brazil), 1 st EELA-2 Grid School (E2GRIS1), 02.11.2008 – 15.11.2008 www.eu-eela.eu 6 Attribute ss Schema Entries Collection /trailers Trailer’s example Entry names (GUIDs)TitleRunt ime CastLFN 8c3315c1-811f-4823-a778-60a203439689 My Best Friend’s wedding 80Julia Roberts lfn:/grid/gilda/movies/m ybfwed.avi 51a18b7a-fd21-4b2c-aa74-4c53ee64846a Spider-man 2120Kirsten Dunst lfn:/grid/gilda/movies/s piderman2.avi 401e6df4-c1be-4822-958c-ce3eb5c54fcb The God Father113Al pacinolfn:/grid/gilda/movies/g odfather.avi

7 7 www.eu-eela.eu Itacuruçá (Brazil), 1 st EELA-2 Grid School (E2GRIS1), 02.11.2008 – 15.11.2008 www.eu-eela.eu Information about files -- but not only! metadata can describe any grid entity/object –ex: JobIDs - add logging information to your jobs monitoring of running applications: –ex: ongoing results from running jobs can be published on the metadata server Inputset for a storm of parametric jobs information exchanging among grid peers –ex: producers/consumers job collections: master jobs produce data to be analyzed; slave jobs query the metadata server to retrieve input to “consume” Simplified DB access on the grid –Grid applications that needs structured data can model their data schemas as metadata 7 Metadata service on the Grid

8 8 www.eu-eela.eu Itacuruçá (Brazil), 1 st EELA-2 Grid School (E2GRIS1), 02.11.2008 – 15.11.2008 www.eu-eela.eu Inputset for parametric jobs /grid/my_simulation/input ---------------------------------------------------------------------------------------------------- |entry |x1 |x2 |y1 |y2 |step |isTaken |found |output | |--------------------------------------------------------------------------------------------------| |1 |9453.1 |9453.32 |-439.93 |-439.91 |0.0006 |JobID1234 |No pillars| | |2 |9342.13 |3435 |3423 |2343.2 |0.003 |No | | | |3 |34254.3 |342342 |432.43 |132 |0.002 |No | | | |...... and so on | ---------------------------------------------------------------------------------------------------- This collection lists all the parameter set to be run on the Grid On the WN, one of the inputset is selected and “isTaken” is set = JOB_ID of the job that has fetched it Results is also written in the “found” column to monitor the simulation so users can check the simulation from a UI, querying the metadata server, or from a WebPage (using APIs for ex) StdOutput can be copied also into the “output” text column 8

9 9 www.eu-eela.eu Itacuruçá (Brazil), 1 st EELA-2 Grid School (E2GRIS1), 02.11.2008 – 15.11.2008 www.eu-eela.eu A possible parameter-get.sh script #!/bin/bash # Find the first set of parameters that has not been taken by noone ID=`mdcli find /grid/my_simulation/input 'isTaken="No"' | head -1` # Exit if all the parameters set has been already analyzed if [ "$ID" = "" ]; then exit 1; fi # set isTaken as its JOB_ID so that no one else will analyze the same set of parameter mdcli setattr /grid/my_simulation/input/$ID isTaken `echo $GLITE_WMS_JOBID` # retrieve the set of the parameter to be scanned X1=`mdcli getattr /grid/my_simulation/input/$ID x1 | tail -1` Y1=`mdcli getattr /grid/my_simulation/input/$ID y1 | tail -1` X2=`mdcli getattr /grid/my_simulation/input/$ID x2 | tail -1` Y2=`mdcli getattr /grid/my_simulation/input/$ID y2 | tail -1` STEP=`mdcli getattr /grid/my_simulation/input/$ID step | tail -1` # Run the scan with the proper parameter and save the output to output.txt java -cp issgc_sfk_nesc.jar:sfkscanner.jar uk.ac.nesc.toe.sfk.radar.Scanner $X1 $Y1 $X2 $Y2 $STEP > output.txt # the Scanner class returns the writing "No pillars found in this area" or "Found area:" - so this will give useful info for monitoring during the run mdcli setattr /grid/my_simulation/input/$ID found `cat output.txt | grep -i found` # save the output (and the pillar text if found) on the metadata server mdcli setattr /grid/my_simulation/input/$ID output `cat output.txt` 9

10 10 www.eu-eela.eu Itacuruçá (Brazil), 1 st EELA-2 Grid School (E2GRIS1), 02.11.2008 – 15.11.2008 www.eu-eela.eu 10 Metadata Catalogue WNWN WN CE /results collection SE Customer/Sc ientist Scientist/Developer submitting jobs Workload Manager showing results as long as they are produced Monitoring of running application

11 11 www.eu-eela.eu Itacuruçá (Brazil), 1 st EELA-2 Grid School (E2GRIS1), 02.11.2008 – 15.11.2008 www.eu-eela.eu Suppose we have two sets of jobs: –Producers: they generate a file, store on a SE, register it onto the LFC File Catalogue assigning a LFN –Consumers: they will take a LFN, download the file and elaborate it A Metadata collection can be used to share the information generated by the Producers; it could act as a “bag-of-LFNs” (bag-of-task model) from which Consumers can fetch file for further elaboration Use a Metadata services to exchange data among running jobs

12 12 www.eu-eela.eu Itacuruçá (Brazil), 1 st EELA-2 Grid School (E2GRIS1), 02.11.2008 – 15.11.2008 www.eu-eela.eu 12 Metadata Catalogue WNWN WN CE /bag-of-LFNs collection SE Scientist/Developer submitting jobs Workload Manager WNWN WN Producers jobs Consumers jobs CE fetch LFN put LFN Information exchanging among grid peers

13 13 www.eu-eela.eu Itacuruçá (Brazil), 1 st EELA-2 Grid School (E2GRIS1), 02.11.2008 – 15.11.2008 www.eu-eela.eu Official metadata service for the gLite middleware –but no dependencies from gLite software –it can be used with other grid technologies/other environments AMGA: Arda Metadata Grid Application Provide a complete but simple interface, in order to make all users able to use it easily. Designed with scalability in mind in order to deal with large number of entries –based on a lightweight and streamed text-based protocol, like HTTP/SMTP Grid security is provided to grant different access levels to different users. Flexible with support to dynamic schemas in order to serve several application domains Simple installation by tar source, RPMs or Yum/YAIM 13 The AMGA Metadata Catalogue

14 14 www.eu-eela.eu Itacuruçá (Brazil), 1 st EELA-2 Grid School (E2GRIS1), 02.11.2008 – 15.11.2008 www.eu-eela.eu Analogy to the RDBMS world: –schema  table schema –collection  db table –attribute  schema column –entry  table row/record Analogy to file system: –Collection  Directory –Entry  File Example: –createdir /jobs ( create table jobs ) –addattr /jobs jobStatus int ( alter table jobs add column jobStatus int ) –addentry /jobs/job1 jobStatus 0 ( insert into jobs (jobstatus) values(1) ) –updateattr /jobs jobStatus 1 jobID>100 ( update jobs set jobStatus=1 where JobID>100 ) 14 AMGA Analogies

15 15 www.eu-eela.eu Itacuruçá (Brazil), 1 st EELA-2 Grid School (E2GRIS1), 02.11.2008 – 15.11.2008 www.eu-eela.eu Dynamic Schemas –Schemas can be modified at runtime by client  Create, delete schemas  Add, remove attributes AMGA collections are hierarchical organized –Collections can contain sub-collections –Sub-collections can inherit/extend parent collection’ schema Flexible Queries –SQL-like query language –Different join type (inner, outer, left, right) between schemas are provided selectattr /gLibrary:FileName /gLAudio:Author /gLAudio:Album '/gLibrary:FILE=/gLAudio:FILE and like(/gLibrary:FileName, “%.mp3")‘  Support for Views, Constraints, Indexes AMGA Features

16 16 www.eu-eela.eu Itacuruçá (Brazil), 1 st EELA-2 Grid School (E2GRIS1), 02.11.2008 – 15.11.2008 www.eu-eela.eu Example

17 17 www.eu-eela.eu Itacuruçá (Brazil), 1 st EELA-2 Grid School (E2GRIS1), 02.11.2008 – 15.11.2008 www.eu-eela.eu Unix style permissions - users and groups ACLs – Per-collection or per-entry (table row). Secure client/server connections – SSL Client Authentication based on –Username/password –General X509 certificates (DN based) –Grid-proxy certificates (DN based) VOMS support: –VO attribute maps to defined AMGA user –VOMS Role maps to defined AMGA user –VOMS Group maps to defined AMGA group 17 AMGA Security

18 18 www.eu-eela.eu Itacuruçá (Brazil), 1 st EELA-2 Grid School (E2GRIS1), 02.11.2008 – 15.11.2008 www.eu-eela.eu  C++ multiprocess server –Backends § Oracle, MySQL 4/5, PostgreSQL, SQLite –Front Ends § TCP text streaming High performance Client API for C++, Java, Python, Perl, PHP § SOAP (deprecated) Interoperability Scalability §WS-DAIR Interface (new in AMGA 2.0) WS-enable environment  Standalone Python Library implementation –Data stored on file system AMGA server runs on SLC3/4, Fedora Core, Gentoo, Debian AMGA Implementation

19 19 www.eu-eela.eu Itacuruçá (Brazil), 1 st EELA-2 Grid School (E2GRIS1), 02.11.2008 – 15.11.2008 www.eu-eela.eu ‣ Using the above datatypes you are sure that your metadata can be easily moved to all supported back- ends ‣ If you do not care about DB portability, you can use, in principle, as entry attribute type ALL the datatypes supported by the back-end, even the more esoteric ones (PostgreSQL Network Address type or Geometric ones) AMGA Datatypes

20 20 www.eu-eela.eu Itacuruçá (Brazil), 1 st EELA-2 Grid School (E2GRIS1), 02.11.2008 – 15.11.2008 www.eu-eela.eu Performance and statistics 20

21 21 www.eu-eela.eu Itacuruçá (Brazil), 1 st EELA-2 Grid School (E2GRIS1), 02.11.2008 – 15.11.2008 www.eu-eela.eu TCP Streaming Front-end –mdcli & mdclient CLI and C++ API (md_cli.h, MD_Client.h) –Java Client API and command line mdjavaclient.sh & mdjavacli.sh (also under Windows !!) –Python and Perl Client API –PHP Client API – NEW  developed totally by the GILDA team – INFN CT –AMGA Web Interface (AMGA WI) ---NEW  Developed totally by the GILDA team – INFN CT  Based on JAVA AMGA Standard APIs  Web Application using standard as JSP Custom Tags, Servlet SOAP Frontend (WSDL) –C++ gSOAP –AXIS (Java) –ZSI (Python) Accessing AMGA from UI/WNs

22 22 www.eu-eela.eu Itacuruçá (Brazil), 1 st EELA-2 Grid School (E2GRIS1), 02.11.2008 – 15.11.2008 www.eu-eela.eu AMGA Web Interface

23 23 www.eu-eela.eu Itacuruçá (Brazil), 1 st EELA-2 Grid School (E2GRIS1), 02.11.2008 – 15.11.2008 www.eu-eela.eu Modify Schema Instance Delete entry Collection Management

24 24 www.eu-eela.eu Itacuruçá (Brazil), 1 st EELA-2 Grid School (E2GRIS1), 02.11.2008 – 15.11.2008 www.eu-eela.eu AMGA provides a replication/federation mechanisms Motivation –Scalability – Support hundreds/thousands of concurrent users –Geographical distribution – Hide network latency –Reliability – No single point of failure –DB Independent replication – Heterogeneous DB systems –Disconnected computing – Off-line access (laptops) Architecture –Asynchronous replication –Master-slave – writes only allowed on the master –Application level replication  Replicate Metadata commands –Partial replication – supports replication of only sub-trees of the metadata hierarchy Advanced features: Metadata Replication

25 25 www.eu-eela.eu Itacuruçá (Brazil), 1 st EELA-2 Grid School (E2GRIS1), 02.11.2008 – 15.11.2008 www.eu-eela.eu Full replication Partial replication FederationProxy Metadata Replication: Use cases

26 26 www.eu-eela.eu Itacuruçá (Brazil), 1 st EELA-2 Grid School (E2GRIS1), 02.11.2008 – 15.11.2008 www.eu-eela.eu Since AMGA 1.2.10, a new import feature allow to access existing DB tables Once imported into AMGA the tables from one or more DBs you want to access through AMGA, you can exploit many of the features brought to you by AMGA for your existing tables Advantages: –your db tables can be accessed by grid users/applications, using grid authentication (VOMS proxies)/authorization with ACLs –exploiting AMGA federation features you can access several databases together from the Grid 26 Existing DB access with AMGA

27 27 www.eu-eela.eu Itacuruçá (Brazil), 1 st EELA-2 Grid School (E2GRIS1), 02.11.2008 – 15.11.2008 www.eu-eela.eu To remember: AMGA stores its own tables in its DB backend To access and existing DB you have 2 option:  import the tables of the DB you want to access to into AMGA DB backend  viceversa, add AMGA DB backed tables to the DB you want to access to Use the import command by root to “mount” your table into the AMGA collection hierarchy Query> whoami >> root Query> createdir /world Query> cd /world/ Query> import world.City /world/City Query> import world.Country /world/Country Query> import world.CountryLanguage /world/CountryLanguage 27 Set up AMGA to access your tables

28 28 www.eu-eela.eu Itacuruçá (Brazil), 1 st EELA-2 Grid School (E2GRIS1), 02.11.2008 – 15.11.2008 www.eu-eela.eu Properly set up authorization on the imported tables: Query> acl_remove /world/City/ system:anyuser Query> acl_remove /world/Country system:anyuser Query> acl_add /world/ gilda:users rx Query> acl_show /world >> root rwx >> gilda:users rx >> system:anyuser rx Query> selectattr City:CountryCode City:Name 'like(City:Name, "Am%") limit 5' >> NLD >> Amsterdam >> NLD >> Amersfoort >> BRA >> Americana >> ECU >> Ambato >> IDN ‣ More information on existing DB access @: ‣ http://amga.web.cern.ch/amga/importing.html http://amga.web.cern.ch/amga/importing.html ‣ https://grid.ct.infn.it/twiki/bin/view/GILDA/AMGADBaccess https://grid.ct.infn.it/twiki/bin/view/GILDA/AMGADBaccess 28 Set up AMGA to access your tables

29 29 www.eu-eela.eu Itacuruçá (Brazil), 1 st EELA-2 Grid School (E2GRIS1), 02.11.2008 – 15.11.2008 www.eu-eela.eu DB Access and Replication MySQL DB Movie Metadata PostgreSQL DB User Comments Oracle DB Actors PostgreSQL DB Storage AMGA master AMGA master AMGA master AMGA master AMGA slave / /movie/storage/actors/comments /movie/info /movie/title /movie/aka_title /storage/LFN /storage/SEs /actors/name /actors/info/comments/i nfo /comments/users 29

30 30 www.eu-eela.eu Itacuruçá (Brazil), 1 st EELA-2 Grid School (E2GRIS1), 02.11.2008 – 15.11.2008 www.eu-eela.eu Native SQL Support Objective: –implement native SQL query processing functionality in AMGA Current Status: –direct SQL data statement in SQL92 Entry Level has been implemented in the 1.9 release  Including 4 statements: SELECT, DELETE, UPDATE and INSERT  ALL SQL commands should be issued in UPPERCASE Entry name: –when a new entry is created with addentry/addentries, a name has to be assigned (filling the “file” column in the AMGA db backend)  in the INSERT implementation, it’s filled automatically with a random guid 30

31 31 www.eu-eela.eu Itacuruçá (Brazil), 1 st EELA-2 Grid School (E2GRIS1), 02.11.2008 – 15.11.2008 www.eu-eela.eu Native SQL Support Permission handling –grant/revoke statemant are not supported –ACL can be changed using the existing AMGA commands DB entity mapping: –DB Table Name = AMGA Directory/Collection –DB TableName.attribute = AMGA TableName:attribute Testing: –PostgreSQL backend –Plain table, permission, view, schema have not fully tested –final version into AMGA 2.0 after summer and presented officially at the EGEE conference in Istanbul 31

32 32 www.eu-eela.eu Itacuruçá (Brazil), 1 st EELA-2 Grid School (E2GRIS1), 02.11.2008 – 15.11.2008 www.eu-eela.eu Native SQL example Query> INSERT INTO `City` VALUES (1,'Kabul','AFG','Kabol',1780000) >> Operation Success Query> dir /world/City/ >> /world/City/80b4fe646ed11dda02100304873049 >> entry Query> SELECT COUNT (*) FROM /world/City >> 3429 Query> SELECT * FROM /world/City WHERE Name LIKE '%Catani%' >> 1472 >> Catania >> ITA >> Sisilia >> 337862 Query> SELECT /world/City:Name, /world/City:District, /world/Country:Name, /world/Country:Region, /world/Country:Continent FROM /world/City, /world/Country WHERE /world/City:Name LIKE '%Catani%' AND Code = 'ITA' >> Catania >> Sisilia >> Italy >> Southern Europe >> Europe 32

33 33 www.eu-eela.eu Dublin (Ireland), Tutorial for User and Site Admin., 15.09.2008 – 18.09.2008 www.eu-eela.eu LHCb-bookkeeping –Migrated bookkeeping metadata to ARDA prototype  20M entries, 15 GB  Large amount of static metadata –Feedback valuable in improving interface and fixing bugs –AMGA showing good scalability Ganga –Job management system  Developed jointly by Atlas and LHCb –Uses AMGA for storing information about job status  Small amount of highly dynamic metadata Early adopters of AMGA

34 34 www.eu-eela.eu Itacuruçá (Brazil), 1 st EELA-2 Grid School (E2GRIS1), 02.11.2008 – 15.11.2008 www.eu-eela.eu Medical Data Manager – MDM –Store and access medical images and associated metadata on the Grid –Built on top of gLite 1.5 data management system –Demonstrated at last EGEE conference (October 05, Pisa) Strong security requirements –Patient data is sensitive –Data must be encrypted –Metadata access must be restricted to authorized users AMGA used as metadata server –Demonstrates authentication and encrypted access –Used as a simplified DB More details at –https://uimon.cern.ch/twiki/bin/view/EGEE/DMEncryptedStorage Biomed - MDM

35 35 www.eu-eela.eu Itacuruçá (Brazil), 1 st EELA-2 Grid School (E2GRIS1), 02.11.2008 – 15.11.2008 www.eu-eela.eu gMOD provides a Video-On-Demand service User chooses among a list of video and the chosen one is streamed in real time to the video client of the user’s workstation For each movie a lot of details (Title, Runtime, Country, Release Date, Genre, Director, Case, Plot Outline) are stored and users can search a particular movie querying on one or more attributes Two kind of users can interact with gMOD: TrailersManagers that can administer the db of movies (uploading new ones and attaching metadata to them); GILDA VO users (guest) can browse, search and choose a movie to be streamed. gMOD: grid Movie On Demand

36 36 www.eu-eela.eu Itacuruçá (Brazil), 1 st EELA-2 Grid School (E2GRIS1), 02.11.2008 – 15.11.2008 www.eu-eela.eu Built on top of gLite services: Storage Elements, sited in different place, physically contain the movie files LFC, the File Catalogue, keeps track in which Storage Element a particular movie is located AMGA is the repository of the detailed information for each movie, and makes possible queries on them The Virtual Organization Membership Service (VOMS) is used to assign the right role to the different users The Workload Management System (WMS) is responsible to retrieve the chosen movie from the right Storage Element and stream it over the network down to the user’s desktop or laptop gMOD under the hood

37 37 www.eu-eela.eu Itacuruçá (Brazil), 1 st EELA-2 Grid School (E2GRIS1), 02.11.2008 – 15.11.2008 www.eu-eela.eu VOMS LFC File Catalogue Metadata Catalogue WNWN WN CE Storage Element s User GENIUS Portal Workload Management System get Role AMGA gMOD interactions

38 38 www.eu-eela.eu Itacuruçá (Brazil), 1 st EELA-2 Grid School (E2GRIS1), 02.11.2008 – 15.11.2008 www.eu-eela.eu gMOD is accesible through the Genius Portal (https://glite-demo.ct.infn.it)https://glite-demo.ct.infn.it gMOD screenshot

39 39 www.eu-eela.eu Dublin (Ireland), Tutorial for User and Site Admin., 15.09.2008 – 18.09.2008 www.eu-eela.eu GSAF Framework (Grid Storage Access Framework) GSAF is an Object Oriented Framework –built on top of the Grid Metadata Service and Grid Data Service and exposes classes and related methods for applications Main objective –hide the complexity and the fragmentation of the several underlying APIs –satisfy functional requirements shared among applications –ensure atomicity among different data manipulation operations

40 40 www.eu-eela.eu Dublin (Ireland), Tutorial for User and Site Admin., 15.09.2008 – 18.09.2008 www.eu-eela.eu GSAF System Architecture The core of the framework is designed as a set of plug-ins Its design covers several Object Oriented Design Patterns (Singleton, Strategy method, Factory method, Template Method, Iterator and Composite). This ensures a very clean and simple software architecture with an high degree of cohesion and decoupling. Built on top of Data Management Services of the Grid Middleware https://grid.ct.infn.it/twiki/bin/view/PI2S2/GSAF

41 41 www.eu-eela.eu Dublin (Ireland), Tutorial for User and Site Admin., 15.09.2008 – 18.09.2008 www.eu-eela.eu Class Diagram Object Model Logical Entities /Java Object mapping Iterator Pattern Factory Method Pattern Command Pattern Strategy Method Pattern Composite Pattern

42 42 www.eu-eela.eu Dublin (Ireland), Tutorial for User and Site Admin., 15.09.2008 – 18.09.2008 www.eu-eela.eu 42

43 43 www.eu-eela.eu Dublin (Ireland), Tutorial for User and Site Admin., 15.09.2008 – 18.09.2008 www.eu-eela.eu 43

44 44 www.eu-eela.eu Dublin (Ireland), Tutorial for User and Site Admin., 15.09.2008 – 18.09.2008 www.eu-eela.eu 44

45 45 www.eu-eela.eu Dublin (Ireland), Tutorial for User and Site Admin., 15.09.2008 – 18.09.2008 www.eu-eela.eu ADAT project

46 46 www.eu-eela.eu Itacuruçá (Brazil), 1 st EELA-2 Grid School (E2GRIS1), 02.11.2008 – 15.11.2008 www.eu-eela.eu gLibrary challenge is to offer a multiplatform, flexible, secure and intuitive system to handle digital assets on a Grid Infrastructure. By Digital Asset, we mean any kind of content and/or media represented as a computer file. Examples: –Images –Videos –Presentations –Office documents –E-mails, web pages –Newsletters, brochures, bulletins, sheets, templates –Receipts, e-books –... (only the imagination can make a limit) It allows to store, organize, search and retrieve those assets on a Grid environment. 46 What is gLibrary

47 47 www.eu-eela.eu Dublin (Ireland), Tutorial for User and Site Admin., 15.09.2008 – 18.09.2008 www.eu-eela.eu User’s local assets are uploaded to one or more (as replicas) Storage Systems the user is authorized on –Uploads are managed through Java Applets: a direct GSIFTP copy is done from the local file to the chosen Storage Element File already on the Grid can be managed by gLibrary too –a File Catalogue browser is integrated to select existing grid files. 47 Store assets on the Grid

48 48 www.eu-eela.eu Dublin (Ireland), Tutorial for User and Site Admin., 15.09.2008 – 18.09.2008 www.eu-eela.eu All entries are organized according to their type: –a list of specific attributes to describe each kind of assets to be managed by the system; –hierarchical (child type shares parent’s attributes) –defined by the gLibrary administrators –queried by users Assets can be organized also by category: –Group together related assets of different types; –Useful also to define subset of assets belonging to the same type –Multiple category assignment per asset 48 Organize assets

49 49 www.eu-eela.eu Dublin (Ireland), Tutorial for User and Site Admin., 15.09.2008 – 18.09.2008 www.eu-eela.eu Assets are browsed selecting a type (or category) and selecting one or more filters: –type attributes chosen from a defined list, used to narrow the result set Filter application is cascading and context-sensitive: the selection of a filter value dynamically influences subsequent filter values (“à la iTunes” browser) Classic search available too 49 Search assets

50 50 www.eu-eela.eu Dublin (Ireland), Tutorial for User and Site Admin., 15.09.2008 – 18.09.2008 www.eu-eela.eu User is presented with a list of asset replicas Download from the chosen storage element is matter of a mouse click Transfer handled over GridFTP with a Java Applet 50 Retrieve assets from the Grid

51 51 www.eu-eela.eu Dublin (Ireland), Tutorial for User and Site Admin., 15.09.2008 – 18.09.2008 www.eu-eela.eu Implemented as Web 2.0 application –AJAX and Javascript are strongly used to offer a desktop like user experience –Business logic implemented using PHP 5 OOP support 51 Features

52 52 www.eu-eela.eu Dublin (Ireland), Tutorial for User and Site Admin., 15.09.2008 – 18.09.2008 www.eu-eela.eu 52 Browsing screenshot

53 53 www.eu-eela.eu Dublin (Ireland), Tutorial for User and Site Admin., 15.09.2008 – 18.09.2008 www.eu-eela.eu 53 Entry detail screenshot

54 54 www.eu-eela.eu Dublin (Ireland), Tutorial for User and Site Admin., 15.09.2008 – 18.09.2008 www.eu-eela.eu 54 Upload screenshot

55 55 www.eu-eela.eu Itacuruçá (Brazil), 1 st EELA-2 Grid School (E2GRIS1), 02.11.2008 – 15.11.2008 www.eu-eela.eu 55 User Login applet AMGA Metadata Catalogue LFC File Catalogu e SE Upload/Download applet VOMS Server 1. local proxy creation 2. proxy transfer over HTTPS 3. get role 6. direct transfer from SE 5. proxy retrieved over HTTPS 4. find the right asset gLibrary Architecture overview

56 56 www.eu-eela.eu Itacuruçá (Brazil), 1 st EELA-2 Grid School (E2GRIS1), 02.11.2008 – 15.11.2008 www.eu-eela.eu 56 gLibrary for a mammograms repository

57 57 www.eu-eela.eu Dublin (Ireland), Tutorial for User and Site Admin., 15.09.2008 – 18.09.2008 www.eu-eela.eu gLibrary for De Roberto works 57

58 58 www.eu-eela.eu Dublin (Ireland), Tutorial for User and Site Admin., 15.09.2008 – 18.09.2008 www.eu-eela.eu De Roberto’s manuscripts 58

59 59 www.eu-eela.eu Dublin (Ireland), Tutorial for User and Site Admin., 15.09.2008 – 18.09.2008 www.eu-eela.eu De Roberto rep: Upload 59

60 60 www.eu-eela.eu Itacuruçá (Brazil), 1 st EELA-2 Grid School (E2GRIS1), 02.11.2008 – 15.11.2008 www.eu-eela.eu AMGA – Metadata Service of gLite –Part of gLite 3.1  can be used with other mws  Useful to realize simple Relational Schemas –Integrated on the Grid Environment (Security) Replication/Federation features Importing existing databases and soon native SQL support Tests show good performance/scalability gLibrary: AMGA based DL platform Conclusion

61 61 www.eu-eela.eu Itacuruçá (Brazil), 1 st EELA-2 Grid School (E2GRIS1), 02.11.2008 – 15.11.2008 www.eu-eela.eu AMGA Web Site http://cern.ch/amga AMGA Manual http://amga.web.cern.ch/amga/downloads/amga-manual_1_3_0.pdf AMGA API Javadoc http://amga.web.cern.ch/amga/javadoc/index.html AMGA Web Frontend http://gilda-forge.ct.infn.it/projects/amgawi/ AMGA Basic Tutorial https://grid.ct.infn.it/twiki/bin/view/GILDA/AMGAHandsOn More information on existing DB access @: –http://amga.web.cern.ch/amga/importing.htmlhttp://amga.web.cern.ch/amga/importing.html –https://grid.ct.infn.it/twiki/bin/view/GILDA/AMGADBaccesshttps://grid.ct.infn.it/twiki/bin/view/GILDA/AMGADBaccess 61 References

62 62 www.eu-eela.eu Itacuruçá (Brazil), 1 st EELA-2 Grid School (E2GRIS1), 02.11.2008 – 15.11.2008 www.eu-eela.eu 62 gLibrary References gLibray BETA homepage: –https://glibrary.ct.infn.ithttps://glibrary.ct.infn.it gLibrary paper: –https://glibrary.ct.infn.it/glibrary/downloads/gLibrary_paper_v2. pdfhttps://glibrary.ct.infn.it/glibrary/downloads/gLibrary_paper_v2. pdf

63 63 www.eu-eela.eu Itacuruçá (Brazil), 1 st EELA-2 Grid School (E2GRIS1), 02.11.2008 – 15.11.2008 www.eu-eela.eu Questions?


Download ppt "E-science grid facility for Europe and Latin America The AMGA Metadata Catalogue Riccardo Bruno INFN Catania,"

Similar presentations


Ads by Google