LSST Data Management. Tim Axelrod Project Scientist - LSST Data Management. Thursday, 28 Oct 2010

Size: px
Start display at page:

Download "LSST Data Management. Tim Axelrod Project Scientist - LSST Data Management. Thursday, 28 Oct 2010"

Transcription

1 LSST Data Management Tim Axelrod Project Scientist - LSST Data Management Thursday, 28 Oct 2010

2 Outline of the Presentation LSST telescope and survey Functions and architecture of the LSST data management system Data Challenges Implementation of the LSST software stack Customization and use of the LSST software stack for other projects Availability of the software, and future plans 2

3 LSST - Large Synoptic Survey Telescope 3

4 Large Synoptic Survey Telescope: Wide+Deep+Fast Primary mirror diameter Field of view 0.2 degrees 10 m Keck Telescope 3.5 degrees LS ST 4

5 LSST - Essential Statistics Aperture diameter: 8.4m Effective aperture: 6.7m FOV: 3.5 deg Filters: u, g, r, i, z, y 3.2 gigapixels 2 sec, 5 electron noise readout Observing mode: pairs of 15 sec exposures, separated by 5 sec slew Single exposure depth: ~24.5 Repetitively scan sq deg Site: Cerro Pachon, Chile Data flows at 0.5 GB/sec all night 18 TB / night 5 5

6 20 minute exposure on 8 m Subaru telescope Point spread width 0.52 arcsec (FWHM) 1 arcminute 6

7 Simulated Results of 10 yr Survey 5.3M Exposures 7

8 One Survey Many Science Programs The LSST Observatory will produce a data stream which the Data Management System turns into data products. 0.5 GB/sec all night, every night for 10 years 104 PB of images at survey end 2.5 PB science database at survey end Many science programs are supported by the same data products Weak lensing Supernovae & transient astrophysics Milky Way structure Solar System inventory Many more in individual science collaborations 8

9 Data Management System Functions Process image stream from camera to generate real-time transient alerts Difference image based Periodically process entire set of survey data to produce a Data Release Self consistent set of data products, all processed with the same algorithms Full survey depth; meets SRD requirements Periodically produce calibration data products needed by other pipelines Make data available to scientists, with enough processing cycles and support to make it useful 9

10 DMS Data Products (every 60 s) 10

11 Data Management Sites and Functions SPIE 2010 June 30, 2010 San Diego, CA 11 11

12 DMS Performance Requirements SPIE 2010 June 30, 2010 San Diego, CA 12

13 Data Challenges progressively prototype more of the production DM System #1 Jul - Oct, 2006 Validate infrastructure and middleware scalability to 5% of LSST required rates Use simulated data and algorithms for resource loading #2 Oct - Nov 2007 Validate nightly pipeline algorithms Create initial Application Framework and Middleware API and validate by creating functioning pipelines with them Validate infrastructure and middleware scalability to 10% of LSST required rates with CFHTLS data #3a Sep, 2008 Aug, 2009 Validate complete Alert Production Extend Application Framework and Middleware API to support Alert Production Validate infrastructure and middleware scalability to 10% of LSST required rates with CFHTLS and simulated LSST image data #3b May, 2009 Dec, 2010 #4 Jul, 2010 Dec, 2011 Validate Data Release Production Assess end-to-end data quality Validate infrastructure and middleware reliability Validate infrastructure and middleware scalability to 15% of LSST required rates with full focal plane simulated LSST data at volume Validate database query performance Validate open interfaces and data access Validate SDQA and analytical tools Validate infrastructure and middleware scalability to 20% of LSST required rates NSF Review December 15-17, 2009 NGSS Sky Survey Data Management Edinburgh Oct, 2010 Tucson, AZ 13 13

14 Data Challenge Infrastructure approaches operational DMS in complexity SPIE 2010 June 30, 2010 San Diego, CA

15 LSST Data Management System (DMS) 15

16 DMS: Application Layer Applications Layer is organized as an Application Framework (AFW), and packages built on top of AFW AFW is object oriented, and manipulates objects from the application domain Imaging detectors Images and associated metadata Measurements made on images Catalogs of quantities derived from measurements 16

17 DMS: Middleware Layer Middleware Layer is organized as a set of packages Policy files for parameter acquisition Logging Exception handling Persistence Pipeline execution Data butler 17

18 Software Implementation Object oriented design and implementation Use cases, domain model, detailed design in UML Technology choices C++ Python Swig bridge from C++ classes to python Access all of AFW from python prompt Multiple platforms (linux, OS/X, gcc, Intel icpc) All components open source 18

19 Using AFW Much of our use of AFW, within pipelines or in standalone codes, is from python All AFW classes and methods are made available to python via Swig import lsst.afw.image.imagelib as afwimage import lsst.afw.math.mathlib as afwmath im = afwimage.imagef(filename) bctrl = afwmath.backgroundcontrol(afwmath.interpolate.natural_spline) backobj = afwmath.makebackground(im, bctrl) im = backobj.getimagef() 19

20 AFW Beyond LSST We have designed AFW to work with nearly arbitrary mosaic detectors Supports four level hierarchy focalplane; raft; detector; segment Geometry is flexible Readout parameters also flexible Prescan / Postscan columns Readout amplifier location Specified in XML-like configuration file If AFW is used with LSST middleware layer, parallel processing of mosaics is easily managed Can be readily used with other middleware solutions AFW being actively configured and tested for CFHT Megacam CFA Megacam Subaru HSC 20

21 AFW Beyond LSST Different mosaic configurations are not the only challenge. Data organizations differ as well. Where are the calibration files? What metadata keyword identifies the filter? etc We have defined a data butler to mediate between a survey's data organization and processing code build on AFW, so that surveydependent code and configuration parameters are not visible at the application level Still in development Working well as part of our current Data Challenge, where it offers a uniform interface to our two data sources CFHTLS LSST simulated images 21

22 Documentation We use doxygen to generate code documentation for both C++ and python Part of automated build process Available online: We use a publicly readable Trac wiki to tie together svn access to code tree Documentation above the doxygen level Ticketing system 22

23 Availability The code is currently available, but our ability to support users outside of the LSST project is very limited Our intent is to transition to a full open source model in which developers outside the LSST actively contribute to the code base 23

24 BACKUP SLIDES 24

25 DM Centers and Functions Base Center Near Real-time Alert Generation Long-term storage (copy 1) Archive Center Nightly Reprocessing Data Release Processing Long-term Storage (copy 2) Co-located Data Access Centers Data Access and User Services Provided via the Community Services Subsystem Shares Infrastructure with the Base/Archive Center also at Site System Operations Center Monitors/manages activities across centers Education & Public Outreach Center Specialized data access and services for outreach applications (not part of DM System) 25

26 Development Process SPIE 2010 June 30, 2010 San Diego, CA 26

27 Software Development Environment Trac integrates svn with ticketing system and development wiki Automated checking of coding standards compliance using Parasoft EUPS manages multiple versions of the stack at execution time Scons used for building Extensive testing performed as part of build process Prebuilt, tagged versions of the stack distributed from central location 27

28 Data Challenges Each DC is intentionally scoped to challenge the DM team on several fronts simultaneously: Computing, storage, and network infrastructure Astronomical data handling and algorithms Pipeline software framework (Middleware and Applications) Software development tools and procedures Project management and system engineering processes SPIE 2010 June 30, 2010 San Diego, CA 28

29 External Components We use a number of open source packages as components of our stack boost (C++ libaries) GIL (C++ templated imaging library; part of boost) numpy (python numerical math module) pyfits (python manipulation of FITS files) others reference to full list is in the paper Inclusion of external packages requires formal review Has (so far) prevented unbounded proliferation of external dependencies important for maintainability 29

LSST and the Cloud: Astro Collaboration in 2016 Tim Axelrod LSST Data Management Scientist

LSST and the Cloud: Astro Collaboration in 2016 Tim Axelrod LSST Data Management Scientist LSST and the Cloud: Astro Collaboration in 2016 Tim Axelrod LSST Data Management Scientist DERCAP Sydney, Australia, 2009 Overview of Presentation LSST - a large-scale Southern hemisphere optical survey

More information

Data Management So,ware Stack Intro

Data Management So,ware Stack Intro Data Management So,ware Stack Intro Mario Jurić LSST Data Management Project Scien:st SLAC DM Stack Working Mee:ng 10-12 December, 2012 1 LSST Data Management Tasks Processes the incoming stream of images

More information

Introduction to LSST Data Management. Jeffrey Kantor Data Management Project Manager

Introduction to LSST Data Management. Jeffrey Kantor Data Management Project Manager Introduction to LSST Data Management Jeffrey Kantor Data Management Project Manager LSST Data Management Principal Responsibilities Archive Raw Data: Receive the incoming stream of images that the Camera

More information

The LSST Data management and French computing activities. Dominique Fouchez on behalf of the IN2P3 Computing Team. LSST France April 8th,2015

The LSST Data management and French computing activities. Dominique Fouchez on behalf of the IN2P3 Computing Team. LSST France April 8th,2015 The LSST Data management and French computing activities Dominique Fouchez on behalf of the IN2P3 Computing Team LSST France April 8th,2015 OSG All Hands SLAC April 7-9, 2014 1 The LSST Data management

More information

Organization and Staffing

Organization and Staffing Large Synoptic Survey Telescope (LSST) Organization and Staffing Robert McKercher LPM-103 Latest Revision Date: September 3, 2013 Change Record Version Date Description Owner name 1 9/3/2013 Initial Version

More information

LSST Resources for Data Analysis

LSST Resources for Data Analysis LSST Resources for the Community Lynne Jones University of Washington/LSST 1 Data Flow Nightly Operations : (at base facility) Each 15s exposure = 6.44 GB (raw) 2x15s = 1 visit 30 TB / night Generates

More information

The Large Synoptic Survey Telescope: Status Update

The Large Synoptic Survey Telescope: Status Update The Large Synoptic Survey Telescope: Status Update Steven M. Kahn LSST Director Mid-Decadal Review Committee December 13, 2015 LSST in a Nutshell The LSST is an integrated survey system designed to conduct

More information

How To Teach Data Science

How To Teach Data Science The Past, Present, and Future of Data Science Education Kirk Borne @KirkDBorne http://kirkborne.net George Mason University School of Physics, Astronomy, & Computational Sciences Outline Research and Application

More information

LSST Data Management System Applications Layer Simulated Data Needs Description: Simulation Needs for DC3

LSST Data Management System Applications Layer Simulated Data Needs Description: Simulation Needs for DC3 LSST Data Management System Applications Layer Simulated Data Needs Description: Simulation Needs for DC3 Draft 25 September 2008 A joint document from the LSST Data Management Team and Image Simulation

More information

Analytics-as-a-Service: From Science to Marketing

Analytics-as-a-Service: From Science to Marketing Analytics-as-a-Service: From Science to Marketing Data Information Knowledge Insights (Discovery & Decisions) Kirk Borne George Mason University, Fairfax, VA www.kirkborne.net @KirkDBorne Big Data: What

More information

Taming the Internet of Things: The Lord of the Things

Taming the Internet of Things: The Lord of the Things Taming the Internet of Things: The Lord of the Things Kirk Borne @KirkDBorne School of Physics, Astronomy, & Computational Sciences College of Science, George Mason University, Fairfax, VA Taming the Internet

More information

Software challenges in the implementation of large surveys: the case of J-PAS

Software challenges in the implementation of large surveys: the case of J-PAS Software challenges in the implementation of large surveys: the case of J-PAS 1/21 Paulo Penteado - IAG/USP pp.penteado@gmail.com http://www.ppenteado.net/ast/pp_lsst_201204.pdf (K. Taylor) (A. Fernández-Soto)

More information

Summary of Data Management Principles Dark Energy Survey V2.1, 7/16/15

Summary of Data Management Principles Dark Energy Survey V2.1, 7/16/15 Summary of Data Management Principles Dark Energy Survey V2.1, 7/16/15 This Summary of Data Management Principles (DMP) has been prepared at the request of the DOE Office of High Energy Physics, in support

More information

Learning from Big Data in

Learning from Big Data in Learning from Big Data in Astronomy an overview Kirk Borne George Mason University School of Physics, Astronomy, & Computational Sciences http://spacs.gmu.edu/ From traditional astronomy 2 to Big Data

More information

PMCS - WBS with Definition

PMCS - WBS with Definition 02C Data Management Construction This WBS element provides the complete LSST Data Management System (DMS). The DMS has these main responsibilities in the LSST system: Process the incoming stream of images

More information

LSST All Hands Meeting SLAC, December 4-8 2006 (MAP)

LSST All Hands Meeting SLAC, December 4-8 2006 (MAP) LSST All Hands Meeting SLAC, December 4-8 2006 (MAP) Monday, December 4 th Plenary Session Day One, Kavli Auditorium Project Status 1:00 Welcome; Project and MREFC Status D. Sweeney 1:40 Directors Report

More information

MEMORANDUM OF AGREEMENT BETWEEN THE BOARD OF TRUSTEES OF THE UNIVERSITY OF ILLINOIS AND THE ASSOCIATION OF UNIVERSITIES FOR RESEARCH IN ASTRONOMY.

MEMORANDUM OF AGREEMENT BETWEEN THE BOARD OF TRUSTEES OF THE UNIVERSITY OF ILLINOIS AND THE ASSOCIATION OF UNIVERSITIES FOR RESEARCH IN ASTRONOMY. Memorandum of Agreement between The Board of Trustees of the University of Illinois (on behalf of the National Center for Supercomputing Applications NCSA) and the Association of Universities for Research

More information

LSST Data Management plans: Pipeline outputs and Level 2 vs. Level 3

LSST Data Management plans: Pipeline outputs and Level 2 vs. Level 3 LSST Data Management plans: Pipeline outputs and Level 2 vs. Level 3 Mario Juric Robert Lupton LSST DM Project Scien@st Algorithms Lead LSST SAC Name of Mee)ng Loca)on Date - Change in Slide Master 1 Data

More information

Data Literacy For All: Astrophysics and Beyond (Astronomy is evidence-based forensic science, thus it is a data & information science)

Data Literacy For All: Astrophysics and Beyond (Astronomy is evidence-based forensic science, thus it is a data & information science) Data Literacy For All: Astrophysics and Beyond (Astronomy is evidence-based forensic science, thus it is a data & information science) Kirk Borne George Mason University, Fairfax, VA www.kirkborne.net

More information

Queued Service Observations with MegaPrime Phase 1 Proposal Submission for Semester 2010A

Queued Service Observations with MegaPrime Phase 1 Proposal Submission for Semester 2010A CFHT, Instruments, Queue Scheduling Queued Service Observations with MegaPrime Phase 1 Proposal Submission for Semester 2010A Updated 08/24/09 Table of Contents A - Introduction The QSO Project Document

More information

Data analysis of L2-L3 products

Data analysis of L2-L3 products Data analysis of L2-L3 products Emmanuel Gangler UBP Clermont-Ferrand (France) Emmanuel Gangler BIDS 14 1/13 Data management is a pillar of the project : L3 Telescope Caméra Data Management Outreach L1

More information

Science and the Taiwan Airborne Telescope

Science and the Taiwan Airborne Telescope Cosmic Variability Study in Taiwan Wen-Ping Chen Institute of Astronomy National Central University, Taiwan 2010 November 16@Jena/YETI Advantages in Taiwan: - Many high mountains - Western Pacific longitude

More information

The Tonnabytes Big Data Challenge: Transforming Science and Education. Kirk Borne George Mason University

The Tonnabytes Big Data Challenge: Transforming Science and Education. Kirk Borne George Mason University The Tonnabytes Big Data Challenge: Transforming Science and Education Kirk Borne George Mason University Ever since we first began to explore our world humans have asked questions and have collected evidence

More information

The Challenge of Data in an Era of Petabyte Surveys Andrew Connolly University of Washington

The Challenge of Data in an Era of Petabyte Surveys Andrew Connolly University of Washington The Challenge of Data in an Era of Petabyte Surveys Andrew Connolly University of Washington We acknowledge support from NSF IIS-0844580 and NASA 08-AISR08-0081 The science of big data sets Big Questions

More information

How To Use The Wynn Odi

How To Use The Wynn Odi WIYN ODI: Observing Process, Data Analysis and Archiving Pierre Martin Yale Survey Workshop, October 2009 ODI: Scientific Challenges ODI is designed to take advantage of the best seeing conditions at WIYN.

More information

Concept for a JDEM Science Operations Center

Concept for a JDEM Science Operations Center Concept for a JDEM Science Operations Center Erik Gottschalk Fermilab Physics Advisory Committee Meeting November 4, 2008 1 Introduction We developed a conceptual design for SNAP Science Operations that

More information

Challenges in e-science: Research in a Digital World

Challenges in e-science: Research in a Digital World Challenges in e-science: Research in a Digital World Thom Dunning National Center for Supercomputing Applications National Center for Supercomputing Applications University of Illinois at Urbana-Champaign

More information

Data Pipelines & Archives for Large Surveys. Peter Nugent (LBNL)

Data Pipelines & Archives for Large Surveys. Peter Nugent (LBNL) Data Pipelines & Archives for Large Surveys Peter Nugent (LBNL) Overview Major Issues facing any large-area survey/search: Computational power for search - data transfer, processing, storage, databases

More information

Description of the Dark Energy Survey for Astronomers

Description of the Dark Energy Survey for Astronomers Description of the Dark Energy Survey for Astronomers May 1, 2012 Abstract The Dark Energy Survey (DES) will use 525 nights on the CTIO Blanco 4-meter telescope with the new Dark Energy Camera built by

More information

The Murchison Widefield Array Data Archive System. Chen Wu Int l Centre for Radio Astronomy Research The University of Western Australia

The Murchison Widefield Array Data Archive System. Chen Wu Int l Centre for Radio Astronomy Research The University of Western Australia The Murchison Widefield Array Data Archive System Chen Wu Int l Centre for Radio Astronomy Research The University of Western Australia Agenda Dataflow Requirements Solutions & Lessons learnt Open solution

More information

One Degree Imager Pipeline Software and Archive Science Requirements Document

One Degree Imager Pipeline Software and Archive Science Requirements Document One Degree Imager Pipeline Software and Archive Science Requirements Document Version 1.5: 7/23/09!Ian!Dell(Antonio-!Daniel!Durand-!Daniel!1arbeck-!5nut!Olsen-!8ohn!Sal;er! Final!Draft!>dition?!Pierre!Aartin!

More information

Science planning for the Gemini 8m telescopes

Science planning for the Gemini 8m telescopes Science planning for the Gemini 8m telescopes Steve Wampler, Kim Gillies, Phil Puxley, and Shane Walker Gemini 8m Telescopes Project, 950 N. Cherry Ave, Tucson, AZ 85719 ABSTRACT The new 8-meter class

More information

The Mantid Project. The challenges of delivering flexible HPC for novice end users. Nicholas Draper SOS18

The Mantid Project. The challenges of delivering flexible HPC for novice end users. Nicholas Draper SOS18 The Mantid Project The challenges of delivering flexible HPC for novice end users Nicholas Draper SOS18 What Is Mantid A framework that supports high-performance computing and visualisation of scientific

More information

CIAO - CIAO4.1 Programmes, Guidance & GuidanceWriting

CIAO - CIAO4.1 Programmes, Guidance & GuidanceWriting SDS Staffing: Welcome Nina Bonaventura on the Helpdesk team All CIAO tickets now handled by SDS (Liz, Nick, Nina) Focus this year has been (and will be) on source catalog Release of CIAO4 complete, planning

More information

The Data Quality Monitoring Software for the CMS experiment at the LHC

The Data Quality Monitoring Software for the CMS experiment at the LHC The Data Quality Monitoring Software for the CMS experiment at the LHC On behalf of the CMS Collaboration Marco Rovere, CERN CHEP 2015 Evolution of Software and Computing for Experiments Okinawa, Japan,

More information

MS 50547B Microsoft SharePoint 2010 Collection and Site Administration

MS 50547B Microsoft SharePoint 2010 Collection and Site Administration MS 50547B Microsoft SharePoint 2010 Collection and Site Administration Description: Days: 5 Prerequisites: This five-day instructor-led Site Collection and Site Administrator course gives students who

More information

The software development process at the Chandra X-ray Center

The software development process at the Chandra X-ray Center The software development process at the Chandra X-ray Center Janet D. Evans *, Ian N. Evans, Giuseppina Fabbiano Smithsonian Astrophysical Observatory, 60 Garden Street, Cambridge, MA 02138 ABSTRACT Software

More information

Introduction to CCDs and CCD Data Calibration

Introduction to CCDs and CCD Data Calibration Introduction to CCDs and CCD Data Calibration Dr. William Welsh San Diego State University CCD: charge coupled devices integrated circuit silicon chips that can record optical (and X-ray) light pixel =

More information

Using Open Source Software to Manage Policies and Clinical Guidelines. Library & Knowledge Service Derby Teaching Hospitals NHS Foundation Trust

Using Open Source Software to Manage Policies and Clinical Guidelines. Library & Knowledge Service Derby Teaching Hospitals NHS Foundation Trust Using Open Source Software to Manage Policies and Clinical Guidelines Library & Knowledge Service Derby Teaching Hospitals NHS Foundation Trust Overview Background Existing System. Requirements. Implementation

More information

Education and Public Outreach Summary. Suzanne Jacoby EPO Project Manager. October 23, 2013 December 2, 2013 FINAL DESIGN REVIEW

Education and Public Outreach Summary. Suzanne Jacoby EPO Project Manager. October 23, 2013 December 2, 2013 FINAL DESIGN REVIEW Education and Public Outreach Summary Suzanne Jacoby EPO Project Manager October 23, 2013 December 2, 2013 FINAL DESIGN REVIEW October 21-25, 2013 Name of Meeting Location Date Change in Slide Master 1

More information

MANAGING AND MINING THE LSST DATA SETS

MANAGING AND MINING THE LSST DATA SETS MANAGING AND MINING THE LSST DATA SETS Astronomy is undergoing an exciting revolution -- a revolution in the way we probe the universe and the way we answer fundamental questions. New technology enables

More information

Dominique Fouchez. 12 Fevrier 2011

Dominique Fouchez. 12 Fevrier 2011 données données CPPM 12 Fevrier 2011 The Data données one 6.4-gigabyte image every 17 seconds 15 terabytes of raw scientific image data / night 60-petabyte final image data archive 20-petabyte final database

More information

mframe Software Development Platform KEY FEATURES

mframe Software Development Platform KEY FEATURES mframe Software Development Platform mframe is a comprehensive software development platform for building modern modular WEB and B2B applications. It consists of basic core modules as well as other delevoped

More information

COMPARISON OF FIXED & VARIABLE RATES (25 YEARS) CHARTERED BANK ADMINISTERED INTEREST RATES - PRIME BUSINESS*

COMPARISON OF FIXED & VARIABLE RATES (25 YEARS) CHARTERED BANK ADMINISTERED INTEREST RATES - PRIME BUSINESS* COMPARISON OF FIXED & VARIABLE RATES (25 YEARS) 2 Fixed Rates Variable Rates FIXED RATES OF THE PAST 25 YEARS AVERAGE RESIDENTIAL MORTGAGE LENDING RATE - 5 YEAR* (Per cent) Year Jan Feb Mar Apr May Jun

More information

COMPARISON OF FIXED & VARIABLE RATES (25 YEARS) CHARTERED BANK ADMINISTERED INTEREST RATES - PRIME BUSINESS*

COMPARISON OF FIXED & VARIABLE RATES (25 YEARS) CHARTERED BANK ADMINISTERED INTEREST RATES - PRIME BUSINESS* COMPARISON OF FIXED & VARIABLE RATES (25 YEARS) 2 Fixed Rates Variable Rates FIXED RATES OF THE PAST 25 YEARS AVERAGE RESIDENTIAL MORTGAGE LENDING RATE - 5 YEAR* (Per cent) Year Jan Feb Mar Apr May Jun

More information

VLT(I) instrument operations and maintenance at the Paranal Observatory

VLT(I) instrument operations and maintenance at the Paranal Observatory VLT(I) instrument operations and maintenance at the Paranal Observatory A. Kaufer a, J. L. Alvarez a, E. Bendek a, F. Caruso a, R. Castillo a, J. Jimenez a, G. Gillet a, N. Haddad a, A. Leiva a, M. Marchesi

More information

Flexible Scalable Hardware independent. Solutions for Long Term Archiving

Flexible Scalable Hardware independent. Solutions for Long Term Archiving Flexible Scalable Hardware independent Solutions for Long Term Archiving More than 20 years of experience in archival storage 2 OA HPA 2010 1992 2000 2004 2007 Mainframe Tape Libraries Open System Tape

More information

How to Design and Create Your Own Custom Ext Rep

How to Design and Create Your Own Custom Ext Rep Combinatorial Block Designs 2009-04-15 Outline Project Intro External Representation Design Database System Deployment System Overview Conclusions 1. Since the project is a specific application in Combinatorial

More information

ASKAP Science Data Archive: Users and Requirements CSIRO ASTRONOMY AND SPACE SCIENCE (CASS)

ASKAP Science Data Archive: Users and Requirements CSIRO ASTRONOMY AND SPACE SCIENCE (CASS) ASKAP Science Data Archive: Users and Requirements CSIRO ASTRONOMY AND SPACE SCIENCE (CASS) Jessica Chapman, Data Workshop March 2013 ASKAP Science Data Archive Talk outline Data flow in brief Some radio

More information

Constructing the Subaru Advanced Data and Analysis Service on VO

Constructing the Subaru Advanced Data and Analysis Service on VO Constructing the Subaru Advanced Data and Analysis Service on VO Yuji Shirasaki on behalf of ADC National Astronomical Observatory of Japan Astronomy Data Center Contents Subaru Telescope and Instruments

More information

The PACS Software System. (A high level overview) Prepared by : E. Wieprecht, J.Schreiber, U.Klaas November,5 2007 Issue 1.

The PACS Software System. (A high level overview) Prepared by : E. Wieprecht, J.Schreiber, U.Klaas November,5 2007 Issue 1. The PACS Software System (A high level overview) Prepared by : E. Wieprecht, J.Schreiber, U.Klaas November,5 2007 Issue 1.0 PICC-ME-DS-003 1. Introduction The PCSS, the PACS ICC Software System, is the

More information

Statistical Vertical Turbulence Profiles at the Canary Islands Astronomical Sites

Statistical Vertical Turbulence Profiles at the Canary Islands Astronomical Sites Statistical Vertical Turbulence Profiles at the Canary Islands Astronomical Sites B. García-Lorenzo 1, J.J. Fuensalida 1, J. Castro-Almazán 1, & M.A.C. Rodríguez-Hernández 1 (1) Instituto de Astrofísica

More information

Microsoft SharePoint 2010 Site Collection and Site Administration Course 50547A; 5 Days, Instructor-led

Microsoft SharePoint 2010 Site Collection and Site Administration Course 50547A; 5 Days, Instructor-led Lincoln Land Community College Capital City Training Center 130 West Mason Springfield, IL 62702 217-782-7436 www.llcc.edu/cctc Microsoft SharePoint 2010 Site Collection and Site Administration Course

More information

ESO scalable architecture for operational databases

ESO scalable architecture for operational databases ESO scalable architecture for operational databases I. Vera, A. Dobrzycki, A. M. Chavan, P. Nass, J. S. Lockhart European Southern Observatory, Karl-Schwarzschild-Str 2, D-85748 Garching, Germany ABSTRACT

More information

curation, analyses and interpretation of massive datasets opportunities are varied across disciplines

curation, analyses and interpretation of massive datasets opportunities are varied across disciplines ! Efficiency in scientific discovery through curation, analyses and interpretation of massive datasets! Uptake level and concentration on Big Data opportunities are varied across disciplines The nature

More information

Astrophysics with Terabyte Datasets. Alex Szalay, JHU and Jim Gray, Microsoft Research

Astrophysics with Terabyte Datasets. Alex Szalay, JHU and Jim Gray, Microsoft Research Astrophysics with Terabyte Datasets Alex Szalay, JHU and Jim Gray, Microsoft Research Living in an Exponential World Astronomers have a few hundred TB now 1 pixel (byte) / sq arc second ~ 4TB Multi-spectral,

More information

<Insert Picture Here> Pacific Gas and Electric Backup & Recovery Case Study

<Insert Picture Here> Pacific Gas and Electric Backup & Recovery Case Study Pacific Gas and Electric Backup & Recovery Case Study Eugene Psoter Pacific Gas and Electric Company Base Content Slide PG&E Agenda First Level Bullet Second level bullet Introduction

More information

Data Validation and Data Management Solutions

Data Validation and Data Management Solutions FRONTIER TECHNOLOGY, INC. Advanced Technology for Superior Solutions. and Solutions Abstract Within the performance evaluation and calibration communities, test programs are driven by requirements, test

More information

Asset Management System -iasset

Asset Management System -iasset System -i As corporations grow, they create or acquire enablers to generate business results. These enablers and end results of strategy execution, generate value and hence become an asset to an organization.

More information

ns-3 development overview ns-3 GENI Eng. Conf., Nov. 2010 1

ns-3 development overview ns-3 GENI Eng. Conf., Nov. 2010 1 ns-3 development overview ns-3 GENI Eng. Conf., Nov. 2010 1 ns-3 tutorial agenda 3:00-4:30: ns-3 current capabilities Project overview Walkthrough of basic simulation scenario Parallel simulations and

More information

Distributed Database Access in the LHC Computing Grid with CORAL

Distributed Database Access in the LHC Computing Grid with CORAL Distributed Database Access in the LHC Computing Grid with CORAL Dirk Duellmann, CERN IT on behalf of the CORAL team (R. Chytracek, D. Duellmann, G. Govi, I. Papadopoulos, Z. Xie) http://pool.cern.ch &

More information

20462 - Administering Microsoft SQL Server Databases

20462 - Administering Microsoft SQL Server Databases 20462 - Administering Microsoft SQL Server Databases Duration: 5 Days Course Price: $2,975 Software Assurance Eligible Course Description Note: This course is designed for customers who are interested

More information

Web application for detailed realtime database transaction monitoring

Web application for detailed realtime database transaction monitoring Web application for detailed realtime database transaction monitoring for CMS condition data ICCMSE 2009 The 7th International Conference of Computational Methods for Science and Engineering Friday October

More information

GEOSPATIAL DIGITAL ASSET MANAGEMENT A SOLUTION INTEGRATING IMAGERY AND GIS WHERE WILL ALL THE PIXELS GO?(AND HOW WILL WE EVER FIND THEM?

GEOSPATIAL DIGITAL ASSET MANAGEMENT A SOLUTION INTEGRATING IMAGERY AND GIS WHERE WILL ALL THE PIXELS GO?(AND HOW WILL WE EVER FIND THEM? GEOSPATIAL DIGITAL ASSET MANAGEMENT A SOLUTION INTEGRATING IMAGERY AND GIS WHERE WILL ALL THE PIXELS GO?(AND HOW WILL WE EVER FIND THEM?) Dr. Joan Lurie, GCC, Inc. 30 West 61 st Street, Apt 9A New York,

More information

Big Data Analytics Platform @ Nokia

Big Data Analytics Platform @ Nokia Big Data Analytics Platform @ Nokia 1 Selecting the Right Tool for the Right Workload Yekesa Kosuru Nokia Location & Commerce Strata + Hadoop World NY - Oct 25, 2012 Agenda Big Data Analytics Platform

More information

Pro/INTRALINK 9.0/9.1 Curriculum Guide

Pro/INTRALINK 9.0/9.1 Curriculum Guide Pro/INTRALINK 9.0/9.1 Curriculum Guide NOTE: For a graphical depiction of the curriculum based on job role, please visit this page: http://www.ptc.com/services/edserv/learning/paths/ptc/proi_90.htm Web

More information

An Introduction to High Performance Computing in the Department

An Introduction to High Performance Computing in the Department An Introduction to High Performance Computing in the Department Ashley Ford & Chris Jewell Department of Statistics University of Warwick October 30, 2012 1 Some Background 2 How is Buster used? 3 Software

More information

Choosing IT Service Management Software

Choosing IT Service Management Software Choosing IT Service Management Software What to look for in an IT Service Management solution Monitor 24-7 Inc. www.monitor24-7.com sales@monitor24-7.com +1 416 410 2716 +31 23 525 6975 Introduction Service

More information

Big Data :: Big Demand

Big Data :: Big Demand Big Data :: Big Demand Introductions John Martin Director Information Management Children s Hospital of Philadelphia martinjohn@email.chop.edu William Nieczpiel Analytics Development Manager Children s

More information

Quality Assurance Subsystem Design Document

Quality Assurance Subsystem Design Document Quality Assurance Subsystem Design Document Contents 1 Signatures 2 Revision history 3 Document number 4 Introduction 4.1 Description 4.2 Supporting Documentation 4.3 Requirements 4.4 Jargon 5 Institutional

More information

Blackboard Collaborate Web Conferencing Hosted Environment Technical Infrastructure and Security

Blackboard Collaborate Web Conferencing Hosted Environment Technical Infrastructure and Security Overview Blackboard Collaborate Web Conferencing Hosted Environment Technical Infrastructure and Security Blackboard Collaborate web conferencing is available in a hosted environment and this document

More information

LSST Evaluation of REDDnet and LStore

LSST Evaluation of REDDnet and LStore LSST Evaluation of REDDnet and LStore Evaluating data storage and sharing methods for a coming torrent of astronomy data. National Center for Supercomputing Applications University of Illinois at Urbana-Champaign

More information

BLACKBRIDGE SATELLITE IMAGERY THROUGH CLOUD COMPUTING

BLACKBRIDGE SATELLITE IMAGERY THROUGH CLOUD COMPUTING BLACKBRIDGE SATELLITE IMAGERY THROUGH CLOUD COMPUTING Jason Setzer Cloud Product Manager Slide 1 THE RAPID EYE CONSTELLATION 5 Identical Satellites in same obit Up to 5 million km² collected daily 1 billion

More information

SUI Breakout 2.1 Architecture and Tools

SUI Breakout 2.1 Architecture and Tools SUI Breakout 2.1 Architecture and Tools 2:00 SUI Architecture Schuyler Van Dyk 2:15 Firefly Trey Roby 2:35 VOTools Ray Plante 2:55 ASCOT Simon Krughoff 3:15 MW- V UI tool Michael Wood- Vasey 3:30 LintoO

More information

How To Process Data From A Casu.Com Computer System

How To Process Data From A Casu.Com Computer System CASU Processing: Overview and Updates for the VVV Survey Nicholas Walton Eduardo Gonalez-Solares, Simon Hodgkin, Mike Irwin (Institute of Astronomy) Pipeline Processing Summary Data organization (check

More information

ORACLE BUSINESS INTELLIGENCE, ORACLE DATABASE, AND EXADATA INTEGRATION

ORACLE BUSINESS INTELLIGENCE, ORACLE DATABASE, AND EXADATA INTEGRATION ORACLE BUSINESS INTELLIGENCE, ORACLE DATABASE, AND EXADATA INTEGRATION EXECUTIVE SUMMARY Oracle business intelligence solutions are complete, open, and integrated. Key components of Oracle business intelligence

More information

A Practitioner s View

A Practitioner s View Hexaware Business Intelligence & Analytics Blogs Guide to A Practitioner s View Latest Trends and Information on BI/ DW Technologies for 2012 Actionable Intelligence Enabled TOC Trim Tabs in Business Intelligence

More information

Tools and Services for the Long Term Preservation and Access of Digital Archives

Tools and Services for the Long Term Preservation and Access of Digital Archives Tools and Services for the Long Term Preservation and Access of Digital Archives Joseph JaJa, Mike Smorul, and Sangchul Song Institute for Advanced Computer Studies Department of Electrical and Computer

More information

Mule Enterprise Service Bus (ESB) Hosting

Mule Enterprise Service Bus (ESB) Hosting Enterprise web solutions G7 Service Definition Mule Enterprise Service Bus (ESB) Hosting t: 0845 519 5465 e: info@axistwelve.com w: www.axistwelve.com Page 1 of 7 Table of contents Overview... 3 Service...

More information

Architectural patterns for building real time applications with Apache HBase. Andrew Purtell Committer and PMC, Apache HBase

Architectural patterns for building real time applications with Apache HBase. Andrew Purtell Committer and PMC, Apache HBase Architectural patterns for building real time applications with Apache HBase Andrew Purtell Committer and PMC, Apache HBase Who am I? Distributed systems engineer Principal Architect in the Big Data Platform

More information

Assignment 4 CPSC 217 L02 Purpose. Important Note. Data visualization

Assignment 4 CPSC 217 L02 Purpose. Important Note. Data visualization Assignment 4 CPSC 217 L02 Purpose You will be writing a Python program to read data from a file and visualize this data using an external drawing tool. You will structure your program using modules and

More information

EREBOS: CosmoSim Database. CLUES Research Environment. Harry Enke (Kristin Riebe, Jochen Klar, Adrian Partl) CLUES Meeting 2015, Copenhagen

EREBOS: CosmoSim Database. CLUES Research Environment. Harry Enke (Kristin Riebe, Jochen Klar, Adrian Partl) CLUES Meeting 2015, Copenhagen EREBOS: CLUES Research Environment CosmoSim Database Harry Enke (Kristin Riebe, Jochen Klar, Adrian Partl) CLUES Meeting 2015, Copenhagen Collaborative Research Environment (CRE) Elements: - huge data

More information

AT&T Global Network Client for Windows Product Support Matrix January 29, 2015

AT&T Global Network Client for Windows Product Support Matrix January 29, 2015 AT&T Global Network Client for Windows Product Support Matrix January 29, 2015 Product Support Matrix Following is the Product Support Matrix for the AT&T Global Network Client. See the AT&T Global Network

More information

An iphone App for Transient Events

An iphone App for Transient Events An iphone App for Transient Events Bruce Truax Diffraction Limited Design LLC Abstract When the LSST comes online later this decade it should prove very efficient at discovering transient events in the

More information

A LOOK BACK: UNDERGRADUATE COMPUTER SCIENCE EDUCATION: A NEW CURRICULUM PHILOSOPHY & OVERVIEW

A LOOK BACK: UNDERGRADUATE COMPUTER SCIENCE EDUCATION: A NEW CURRICULUM PHILOSOPHY & OVERVIEW A LOOK BACK: UNDERGRADUATE COMPUTER SCIENCE EDUCATION: A NEW CURRICULUM PHILOSOPHY & OVERVIEW John C. Knight, Jane C. Prey, & Wm. A. Wulf Department of Computer Science University of Virginia ABSTRACT

More information

GUIDE TO INTERNATIONAL AP SCANNING

GUIDE TO INTERNATIONAL AP SCANNING GUIDE TO INTERNATIONAL AP SCANNING CNF Accounts Payable Version 1: August, 2005 I Introduction to AP Scanning This Guide to International AP Scanning describes how to scan and archive invoices at CNF s

More information

Simplifying Big Data Deployments in Cloud Environments with Mellanox Interconnects and QualiSystems Orchestration Solutions

Simplifying Big Data Deployments in Cloud Environments with Mellanox Interconnects and QualiSystems Orchestration Solutions Simplifying Big Data Deployments in Cloud Environments with Mellanox Interconnects and QualiSystems Orchestration Solutions 64% of organizations were investing or planning to invest on Big Data technology

More information

Building Views and Charts in Requests Introduction to Answers views and charts Creating and editing charts Performing common view tasks

Building Views and Charts in Requests Introduction to Answers views and charts Creating and editing charts Performing common view tasks Oracle Business Intelligence Enterprise Edition (OBIEE) Training: Working with Oracle Business Intelligence Answers Introduction to Oracle BI Answers Working with requests in Oracle BI Answers Using advanced

More information

TMT SOFTWARE REQUIREMENTS FOR LOW-LEVEL SUBSYSTEMS

TMT SOFTWARE REQUIREMENTS FOR LOW-LEVEL SUBSYSTEMS TMT SOFTWARE REQUIREMENTS FOR LOW-LEVEL SUBSYSTEMS TMT.SFT.DRD.12.001.REL05 October 15, 2012 TMT.SFT.DRD.12.001.REL05 PAGE 2 OF 16 TABLE OF CONTENTS 1 INTRODUCTION 4 1.1 Purpose... 4 1.2 Scope... 4 1.3

More information

APPROACHABLE ANALYTICS MAKING SENSE OF DATA

APPROACHABLE ANALYTICS MAKING SENSE OF DATA APPROACHABLE ANALYTICS MAKING SENSE OF DATA AGENDA SAS DELIVERS PROVEN SOLUTIONS THAT DRIVE INNOVATION AND IMPROVE PERFORMANCE. About SAS SAS Business Analytics Framework Approachable Analytics SAS for

More information

PDS4 and Build 5a Update. Dan Crichton, Emily Law November 2014

PDS4 and Build 5a Update. Dan Crichton, Emily Law November 2014 PDS4 and Build 5a Update Dan Crichton, Emily Law November 2014 1 PDS4 and Related MC Topics PDS4 Report and Build 5a Dan Crichton and Emily Law IM/DDWG Steve Hughes Software Sean Hardman Tool Planning

More information

Whitepaper: Back Up SAP HANA and SUSE Linux Enterprise Server with SEP sesam. info@sepusa.com www.sepusa.com Copyright 2014 SEP

Whitepaper: Back Up SAP HANA and SUSE Linux Enterprise Server with SEP sesam. info@sepusa.com www.sepusa.com Copyright 2014 SEP Whitepaper: Back Up SAP HANA and SUSE Linux Enterprise Server with SEP sesam info@sepusa.com www.sepusa.com Table of Contents INTRODUCTION AND OVERVIEW... 3 SOLUTION COMPONENTS... 4-5 SAP HANA... 6 SEP

More information

Asset Tracking System

Asset Tracking System Asset Tracking System System Description Asset & Person Tracking 1. General The Vizbee platform is a flexible rule based solution for RFID based applications that can adapt to the customer s needs and

More information

Case 2:08-cv-02463-ABC-E Document 1-4 Filed 04/15/2008 Page 1 of 138. Exhibit 8

Case 2:08-cv-02463-ABC-E Document 1-4 Filed 04/15/2008 Page 1 of 138. Exhibit 8 Case 2:08-cv-02463-ABC-E Document 1-4 Filed 04/15/2008 Page 1 of 138 Exhibit 8 Case 2:08-cv-02463-ABC-E Document 1-4 Filed 04/15/2008 Page 2 of 138 Domain Name: CELLULARVERISON.COM Updated Date: 12-dec-2007

More information

Open Source for Cloud Infrastructure

Open Source for Cloud Infrastructure Open Source for Cloud Infrastructure June 29, 2012 Jackson He General Manager, Intel APAC R&D Ltd. Cloud is Here and Expanding More users, more devices, more data & traffic, expanding usages >3B 15B Connected

More information

INTELLECT TM Software Package

INTELLECT TM Software Package AxxonSoft INTELLECT TM Software Package Quick Start Guide Version 1.0.0 Moscow 2010 1 Contents CONTENTS... 2 1 INTRODUCTION... 3 1.1 Document purpose... 3 1.2 Purpose of the Intellect software package...

More information

Importance of Quality Data in Travel Distribution! Jim Barsch! COO, VacationRoost!

Importance of Quality Data in Travel Distribution! Jim Barsch! COO, VacationRoost! Importance of Quality Data in Travel Distribution! Jim Barsch! COO, VacationRoost! Who We Are Founded in Park City, UT in 2001 Leading Ski, Vaca;on Rental and Villa Wholesaler in North America Now serving

More information

University of Arizona REhnu

University of Arizona REhnu University of Arizona REhnu proud to be affiliated with the Solar Energy Research Center Roger Angel Justin Elliott Peter Strittmatter http://www.rehnu.com Research Development Commercialization Astronomy

More information

Achieve Automated, End-to-End Firmware Management with Cisco UCS Manager

Achieve Automated, End-to-End Firmware Management with Cisco UCS Manager Achieve Automated, End-to-End Firmware Management with Cisco UCS Manager What You Will Learn This document describes the operational benefits and advantages of firmware provisioning with Cisco UCS Manager

More information