SlideShare a Scribd company logo
1 of 21
BY
Krian Reddy
Shiva
How to build the World Wide Telescope?
Web Services & Grid Enable Virtual Observatory
http://www.astro.caltech.edu/nvoconf/
http://www.voforum.org/
The Internet will be the world’s best telescope:
It has data on every part of the sky
In every measured spectral band: optical, x-ray, radio..
As deep as the best instruments (2 years ago).
 It is up when you are up.
The “seeing” is always great
(no working at night, no clouds no moons no..).
 It’s a smart telescope:
links objects and data to literature on them.
W3C & IETF standards Provide
 Naming
 Authorization / Security / Privacy
 Distributed Objects
 Discovery, Definition, Invocation, Object Model
 Higher level services: workflow, transactions, DB,..
A great test bed for .NET ideas
Steps to World Wide Telescope
Define a set of Astronomy Objects and methods.
Based on UDDI, WSDL, XSL, SOAP, dataSet
Use them locally to debug ideas
Schema, Units,…
Dataset problems
Typical use scenarios.
Federate different archives
Each archive is a web service
Global query tool accesses them
Working on this with
Sloan Digital Sky Survey and CalTech/Palomar.
Especially Alex Szalay et. al. at JHU
Why Astronomy Data?
It has no commercial value
No privacy concerns
Can freely share results with others
Great for experimenting with algorithms
It is real and well documented
High-dimensional data (with confidence intervals)
Spatial data
Temporal data
Many different instruments from
Many different places and
Many different times
Federation is a goal
The questions are interesting
How did the universe form?
There is a lot of it (petabytes)
IRAS 100µ
ROSAT ~keV
DSS Optical
2MASS 2µ
IRAS 25µ
NVSS 20cm
WENSS 92cm
GB 6cm
Step1 Putting SDSS online Scenario Design
Astronomers proposed 20 questions
 Typical of things they want to do
 Each would require a week of programming in tcl / C++/ FTP
Goal, make it easy to answer questions
DB and tools design motivated by this goal
 Implemented utility procedures
 JHU Built GUI for Linux clients Q11: Find all elliptical galaxies with spectra that have an anomalous
emission line.
Q12: Create a grided count of galaxies with u-g>1 and r<21.5 over
60<declination<70, and 200<right ascension<210, on a grid of 2’,
and create a map of masks over the same grid.
Q13: Create a count of galaxies for each of the HTM triangles which
satisfy a certain color cut, like 0.7u-0.5g-0.2i<1.25 && r<21.75,
output it in a form adequate for visualization.
Q14: Find stars with multiple measurements and have magnitude
variations >0.1. Scan for stars that have a secondary object
(observed at a different time) and compare their magnitudes.
Q15: Provide a list of moving objects consistent with an asteroid.
Q16: Find all objects similar to the colors of a quasar at 5.5<redshift<6.5.
Q17: Find binary stars where at least one of them has the colors of a
white dwarf.
Q18: Find all objects within 30 arcseconds of one another that have very
similar colors: that is where the color ratios u-g, g-r, r-I are less than
0.05m.
Q19: Find quasars with a broad absorption line in their spectra and at
least one galaxy within 10 arcseconds. Return both the quasars and
the galaxies.
Q20: For each galaxy in the BCG data set (brightest color galaxy), in
160<right ascension<170, -25<declination<35 count of galaxies
within 30"of it that have a photoz within 0.05 of that galaxy.
Q1: Find all galaxies without unsaturated pixels within 1' of a given point
of ra=75.327, dec=21.023
Q2: Find all galaxies with blue surface brightness between and 23 and 25
mag per square arcseconds, and -10<super galactic latitude (sgb)
<10, and declination less than zero.
Q3: Find all galaxies brighter than magnitude 22, where the local
extinction is >0.75.
Q4: Find galaxies with an isophotal surface brightness (SB) larger than 24
in the red band, with an ellipticity>0.5, and with the major axis of the
ellipse having a declination of between 30” and 60”arc seconds.
Q5: Find all galaxies with a deVaucouleours profile (r¼
falloff of intensity on
disk) and the photometric colors consistent with an elliptical galaxy.
The deVaucouleours profile
Q6: Find galaxies that are blended with a star, output the deblended
galaxy magnitudes.
Q7: Provide a list of star-like objects that are 1% rare.
Q8: Find all objects with unclassified spectra.
Q9: Find quasars with a line width >2000 km/s and 2.5<redshift<2.7.
Q10: Find galaxies with spectra that have an equivalent width in Ha >40Å
(Ha is the main hydrogen spectral line.)
Two kinds of SDSS data in an SQL DB
(objects and images all in DB)
15M Photo Objects ~ 400 attributes
50K
Spectra with
~30 lines/
spectrum
Spatial Data Access – SQL extension
(Szalay, Kunszt, Brunner) http://www.sdss.jhu.edu/htm
Added Hierarchical Triangular Mesh (HTM)
table-valued function for spatial joins.
Every object has a 20-deep Mesh ID.
Given a spatial definition:
Routine returns up to ~10 covering triangles.
Spatial query is then up to ~10 range queries.
Very fast: 10,000 triangles / second / cpu.
Based onSQL Server Extended Stored Procedure
2
2,2
2,1
2,0
2,3
2,3,0
2,3,1
2,3,2 2,3,3
2
2,2
2,1
2,0
2,32,2
2,1
2,0
2,3
2,3,0
2,3,1
2,3,2 2,3,3
2,3,0
2,3,1
2,3,2 2,3,3
2
Q15: Fast Moving Objects
Find near earth asteroids:

 Finds 3 objects in 11 minutes
 (or 52 seconds with an index)
 Ugly,
but consider the alternatives (c programs an files and…)

SELECT r.objID as rId, g.objId as gId,
dbo.fGetUrlEq(g.ra, g.dec) as url
FROM PhotoObj r, PhotoObj g
WHERE r.run = g.run and r.camcol=g.camcol
and abs(g.field-r.field)<2 -- nearby
-- the red selection criteria
and ((power(r.q_r,2) + power(r.u_r,2)) > 0.111111 )
and r.fiberMag_r between 6 and 22 and r.fiberMag_r < r.fiberMag_g
and r.fiberMag_r < r.fiberMag_i
and r.parentID=0 and r.fiberMag_r < r.fiberMag_u
and r.fiberMag_r < r.fiberMag_z
and r.isoA_r/r.isoB_r > 1.5 and r.isoA_r>2.0
-- the green selection criteria
and ((power(g.q_g,2) + power(g.u_g,2)) > 0.111111 )
and g.fiberMag_g between 6 and 22 and g.fiberMag_g < g.fiberMag_r
and g.fiberMag_g < g.fiberMag_i
and g.fiberMag_g < g.fiberMag_u and g.fiberMag_g < g.fiberMag_z
and g.parentID=0 and g.isoA_g/g.isoB_g > 1.5 and g.isoA_g > 2.0
-- the matchup of the pair
and sqrt(power(r.cx -g.cx,2)+ power(r.cy-g.cy,2)+power(r.cz-g.cz,2))*(10800/PI())< 4.0
and abs(r.fiberMag_r-g.fiberMag_g)< 2.0
Demo
http://SkyServer.SDSS.org/
Performance (on current SDSS data)
Run times: on 15k$ COMPAQ Server
(2 cpu, 1 GB , 8 disk)
Some take 10 minutes
Some take 1 minute
Median ~ 22 sec.
Ghz processors are fast!
(10 mips/IO, 200 ins/byte)
2.5 m rec/s/cpu
time vs queryID
1
10
100
1000
Q08 Q01 Q09 Q10A Q19 Q12 Q10 Q20 Q16 Q02 Q13 Q04 Q06 Q11 Q15B Q17 Q07 Q14 Q15A Q05 Q03 Q18
seconds
cpu
elapsed
ae
cpu vs IO
1E+0
1E+1
1E+2
1E+3
1E+4
1E+5
1E+6
1E+7
0.01 0.1 1. 10. 100. 1,000.CPU sec
IOcount
1,000 IOs/cpu sec
~1,000 IO/cpu sec
~ 64 MB IO/cpu sec
Sequential Scan Speed is Important
 In high-dimension data, best way is to search.
 Sequential scan covering index is 10x faster
Seconds vs minutes
 SQL scans at 2M records/s/cpu (!)
Memory in GB
1.0
10.0
100.0
1000.0
10000.0
100000.0
0 10 20 30 40 50 60 70 80 90 100
No of galaxies in Millions
CPUtime(hrs)
1
4
32
256
year
decade
week
day
month
Cosmo: 64-bit SQL Server & Windows
Computing the Cosmological Constant
Compares simulated & observed galaxy distribution
Measure distance between each pair of galaxies
A lot of work  (108 x
108
= 1016
steps)
Good algorithms make this ~Nlog2N
Needs LARGE main memory
Using Itanium
donated by Compaq
64-bit
Windows & SQL server
 (Alex Szalay, Adrian Pope@ JHU).
Where We Are Today
One Astronomy Archive Web Service works
Federating 3 Web Services (JHU, Cal Tech, Space Telescope)
WWT is a great .Net application
Federating heterogeneous data sources.
Cooperating organizations
An Information At Your Fingertips challenge.
SDSS DB is a data mining challenge:
get your personal copy at http://research.microsoft.com/~gray/sdss
Papers about this at:
http://SkyServer.SDSS.org/
http://research.microsoft.com/~gray/ (see paragraph 1)
DB available for experiments
Sloan Digital Sky Survey
http://www.sdss.org/
For the last 12 years astronomers
have been building a telescope(with funding from Sloan Foundation, NSF, and a dozen universities). 90M$.
Y2000: engineer, calibrate, commission: now public data.
5% of the survey, 600 sq degrees, 15 M objects
60GB, ½ TB raw.
This data includes most of the known high z quasars.
It has a lot of science left in it but….
New the data is arriving:
250GB/nite (20 nights per year) = 5TB/y.
100 M stars, 100 M galaxies, 1 M spectra.
http://www.sdss.org/
What we learned from the 20 Queries
All have fairly short SQL programs --
a substantial advance over (tcl, C++)
Many are sequential
one-pass and two-pass over data
Covering indices make scans run fast
Table valued functions are wonderful
but limitations are painful.
Counting, Binning, Histograms VERY common
Spatial indices helpful,
Materialized view (Neighbors) helpful.
An easy one
Q7: Find rare star-like objects.
Found 14,681 buckets,
first 140 buckets have 99%
time 62 seconds
CPU bound 226 k records/second (2 cpu)
250 KB/s.
Select cast((u-g) as int) as ug,
cast((g-r) as int) as gr,
cast((r-i) as int) as ri,
cast((i-z) as int) as iz,
count(*) as Population
from stars
group by cast((u-g) as int), cast((g-r) as int),
cast((r-i) as int), cast((i-z) as int)
order by count(*)
An Easy One
Q15: Find asteroids
Sounds hard but
there are 5 pictures of the object at 5 different times
(color filters) and so can “see” velocity.
Image pipeline computes velocity.
Computing it from the 5 color x,y would also be fast
Finds 1,303 objects in 3 minutes, 140MBps.
(could go 2x faster with more disks)
select objId, dbo.fGetUrlEq(ra,dec) as url --return object ID & url
sqrt(power(rowv,2)+power(colv,2)) as velocity
from photoObj -- check each object.
where (power(rowv,2) + power(colv, 2)) -- square of velocity
between 50 and 1000 -- huge values =error
World widetelescopetecfest
World widetelescopetecfest
World widetelescopetecfest
World widetelescopetecfest

More Related Content

What's hot

Data Capacitor II at Indiana University
Data Capacitor II at Indiana UniversityData Capacitor II at Indiana University
Data Capacitor II at Indiana Universityinside-BigData.com
 
Quantum nature poli_mi_ddm_200115
Quantum nature poli_mi_ddm_200115Quantum nature poli_mi_ddm_200115
Quantum nature poli_mi_ddm_200115domenico di mola
 
Introduction to Hadron Structure from Lattice QCD
Introduction to Hadron Structure from Lattice QCDIntroduction to Hadron Structure from Lattice QCD
Introduction to Hadron Structure from Lattice QCDChristos Kallidonis
 
Running a GPU burst for Multi-Messenger Astrophysics with IceCube across all ...
Running a GPU burst for Multi-Messenger Astrophysics with IceCube across all ...Running a GPU burst for Multi-Messenger Astrophysics with IceCube across all ...
Running a GPU burst for Multi-Messenger Astrophysics with IceCube across all ...Frank Wuerthwein
 
[241]large scale search with polysemous codes
[241]large scale search with polysemous codes[241]large scale search with polysemous codes
[241]large scale search with polysemous codesNAVER D2
 
OpenStack Summit Boston DMA Appendix
OpenStack Summit Boston DMA AppendixOpenStack Summit Boston DMA Appendix
OpenStack Summit Boston DMA AppendixTomofumi Hayashi
 
Data Mining with Splunk
Data Mining with SplunkData Mining with Splunk
Data Mining with SplunkDavid Carasso
 
Seismic data analysis with u net
Seismic data analysis with u netSeismic data analysis with u net
Seismic data analysis with u netDing Li
 
Rolf huisman programming quantum computers in dot net using q#
Rolf huisman   programming quantum computers in dot net using q#Rolf huisman   programming quantum computers in dot net using q#
Rolf huisman programming quantum computers in dot net using q#Rolf Huisman
 
[232]mist 고성능 iot 스트림 처리 시스템
[232]mist 고성능 iot 스트림 처리 시스템[232]mist 고성능 iot 스트림 처리 시스템
[232]mist 고성능 iot 스트림 처리 시스템NAVER D2
 
Finding New Sub-Atomic Particles on the AWS Cloud (BDT402) | AWS re:Invent 2013
Finding New Sub-Atomic Particles on the AWS Cloud (BDT402) | AWS re:Invent 2013Finding New Sub-Atomic Particles on the AWS Cloud (BDT402) | AWS re:Invent 2013
Finding New Sub-Atomic Particles on the AWS Cloud (BDT402) | AWS re:Invent 2013Amazon Web Services
 
Computer Science Thesis Defense
Computer Science Thesis DefenseComputer Science Thesis Defense
Computer Science Thesis Defensetompitkin
 
CIFAR-10 for DAWNBench: Wide ResNets, Mixup Augmentation and "Super Convergen...
CIFAR-10 for DAWNBench: Wide ResNets, Mixup Augmentation and "Super Convergen...CIFAR-10 for DAWNBench: Wide ResNets, Mixup Augmentation and "Super Convergen...
CIFAR-10 for DAWNBench: Wide ResNets, Mixup Augmentation and "Super Convergen...Thom Lane
 
The Weather of the Century Part 2: High Performance
The Weather of the Century Part 2: High PerformanceThe Weather of the Century Part 2: High Performance
The Weather of the Century Part 2: High PerformanceMongoDB
 
유연하고 확장성 있는 빅데이터 처리
유연하고 확장성 있는 빅데이터 처리유연하고 확장성 있는 빅데이터 처리
유연하고 확장성 있는 빅데이터 처리NAVER D2
 
Weather of the Century: Design and Performance
Weather of the Century: Design and PerformanceWeather of the Century: Design and Performance
Weather of the Century: Design and PerformanceMongoDB
 

What's hot (16)

Data Capacitor II at Indiana University
Data Capacitor II at Indiana UniversityData Capacitor II at Indiana University
Data Capacitor II at Indiana University
 
Quantum nature poli_mi_ddm_200115
Quantum nature poli_mi_ddm_200115Quantum nature poli_mi_ddm_200115
Quantum nature poli_mi_ddm_200115
 
Introduction to Hadron Structure from Lattice QCD
Introduction to Hadron Structure from Lattice QCDIntroduction to Hadron Structure from Lattice QCD
Introduction to Hadron Structure from Lattice QCD
 
Running a GPU burst for Multi-Messenger Astrophysics with IceCube across all ...
Running a GPU burst for Multi-Messenger Astrophysics with IceCube across all ...Running a GPU burst for Multi-Messenger Astrophysics with IceCube across all ...
Running a GPU burst for Multi-Messenger Astrophysics with IceCube across all ...
 
[241]large scale search with polysemous codes
[241]large scale search with polysemous codes[241]large scale search with polysemous codes
[241]large scale search with polysemous codes
 
OpenStack Summit Boston DMA Appendix
OpenStack Summit Boston DMA AppendixOpenStack Summit Boston DMA Appendix
OpenStack Summit Boston DMA Appendix
 
Data Mining with Splunk
Data Mining with SplunkData Mining with Splunk
Data Mining with Splunk
 
Seismic data analysis with u net
Seismic data analysis with u netSeismic data analysis with u net
Seismic data analysis with u net
 
Rolf huisman programming quantum computers in dot net using q#
Rolf huisman   programming quantum computers in dot net using q#Rolf huisman   programming quantum computers in dot net using q#
Rolf huisman programming quantum computers in dot net using q#
 
[232]mist 고성능 iot 스트림 처리 시스템
[232]mist 고성능 iot 스트림 처리 시스템[232]mist 고성능 iot 스트림 처리 시스템
[232]mist 고성능 iot 스트림 처리 시스템
 
Finding New Sub-Atomic Particles on the AWS Cloud (BDT402) | AWS re:Invent 2013
Finding New Sub-Atomic Particles on the AWS Cloud (BDT402) | AWS re:Invent 2013Finding New Sub-Atomic Particles on the AWS Cloud (BDT402) | AWS re:Invent 2013
Finding New Sub-Atomic Particles on the AWS Cloud (BDT402) | AWS re:Invent 2013
 
Computer Science Thesis Defense
Computer Science Thesis DefenseComputer Science Thesis Defense
Computer Science Thesis Defense
 
CIFAR-10 for DAWNBench: Wide ResNets, Mixup Augmentation and "Super Convergen...
CIFAR-10 for DAWNBench: Wide ResNets, Mixup Augmentation and "Super Convergen...CIFAR-10 for DAWNBench: Wide ResNets, Mixup Augmentation and "Super Convergen...
CIFAR-10 for DAWNBench: Wide ResNets, Mixup Augmentation and "Super Convergen...
 
The Weather of the Century Part 2: High Performance
The Weather of the Century Part 2: High PerformanceThe Weather of the Century Part 2: High Performance
The Weather of the Century Part 2: High Performance
 
유연하고 확장성 있는 빅데이터 처리
유연하고 확장성 있는 빅데이터 처리유연하고 확장성 있는 빅데이터 처리
유연하고 확장성 있는 빅데이터 처리
 
Weather of the Century: Design and Performance
Weather of the Century: Design and PerformanceWeather of the Century: Design and Performance
Weather of the Century: Design and Performance
 

Viewers also liked

Wifi vignan final
Wifi vignan finalWifi vignan final
Wifi vignan finalPREMKUMAR
 
4 g communications
4 g communications4 g communications
4 g communicationsPREMKUMAR
 
Einstein chrismason
Einstein chrismasonEinstein chrismason
Einstein chrismasonPREMKUMAR
 
Thermal Power Plant
Thermal Power PlantThermal Power Plant
Thermal Power PlantPREMKUMAR
 
Q1) In what ways does your media product use, develop or challenge forms and ...
Q1) In what ways does your media product use, develop or challenge forms and ...Q1) In what ways does your media product use, develop or challenge forms and ...
Q1) In what ways does your media product use, develop or challenge forms and ...khaledjim
 
Mobile jamming
Mobile jammingMobile jamming
Mobile jammingPREMKUMAR
 
Albert einstein
Albert einsteinAlbert einstein
Albert einsteinPREMKUMAR
 
Pathways academy powerpoint 2017
Pathways academy powerpoint 2017Pathways academy powerpoint 2017
Pathways academy powerpoint 2017John Sprague
 
Securing Mobile
Securing Mobile Securing Mobile
Securing Mobile PREMKUMAR
 
Network security
Network securityNetwork security
Network securityPREMKUMAR
 
network security
network securitynetwork security
network securityPREMKUMAR
 
Nano technology
Nano technologyNano technology
Nano technologyPREMKUMAR
 
Googledriverlesscar
GoogledriverlesscarGoogledriverlesscar
GoogledriverlesscarPREMKUMAR
 

Viewers also liked (20)

Wifi vignan final
Wifi vignan finalWifi vignan final
Wifi vignan final
 
Media Star 2015
Media Star 2015Media Star 2015
Media Star 2015
 
4 g communications
4 g communications4 g communications
4 g communications
 
Einstein chrismason
Einstein chrismasonEinstein chrismason
Einstein chrismason
 
Thermal Power Plant
Thermal Power PlantThermal Power Plant
Thermal Power Plant
 
Q1) In what ways does your media product use, develop or challenge forms and ...
Q1) In what ways does your media product use, develop or challenge forms and ...Q1) In what ways does your media product use, develop or challenge forms and ...
Q1) In what ways does your media product use, develop or challenge forms and ...
 
Peace, Love, and Respect
Peace, Love, and RespectPeace, Love, and Respect
Peace, Love, and Respect
 
Chord waktu yang salah
Chord waktu yang salahChord waktu yang salah
Chord waktu yang salah
 
Wi-Fi
Wi-FiWi-Fi
Wi-Fi
 
Mobile jamming
Mobile jammingMobile jamming
Mobile jamming
 
Albert einstein
Albert einsteinAlbert einstein
Albert einstein
 
Pathways academy powerpoint 2017
Pathways academy powerpoint 2017Pathways academy powerpoint 2017
Pathways academy powerpoint 2017
 
Alcohol Awareness Month
Alcohol Awareness MonthAlcohol Awareness Month
Alcohol Awareness Month
 
SAP
SAPSAP
SAP
 
Securing Mobile
Securing Mobile Securing Mobile
Securing Mobile
 
Network security
Network securityNetwork security
Network security
 
Test proj
Test projTest proj
Test proj
 
network security
network securitynetwork security
network security
 
Nano technology
Nano technologyNano technology
Nano technology
 
Googledriverlesscar
GoogledriverlesscarGoogledriverlesscar
Googledriverlesscar
 

Similar to World widetelescopetecfest

Round Table Introduction: Analytics on 100 TB+ catalogs
Round Table Introduction: Analytics on 100 TB+ catalogsRound Table Introduction: Analytics on 100 TB+ catalogs
Round Table Introduction: Analytics on 100 TB+ catalogsMario Juric
 
Astronomical Data Processing on the LSST Scale with Apache Spark
Astronomical Data Processing on the LSST Scale with Apache SparkAstronomical Data Processing on the LSST Scale with Apache Spark
Astronomical Data Processing on the LSST Scale with Apache SparkDatabricks
 
Frossie Economou & Angelo Fausti [Vera C. Rubin Observatory] | How InfluxDB H...
Frossie Economou & Angelo Fausti [Vera C. Rubin Observatory] | How InfluxDB H...Frossie Economou & Angelo Fausti [Vera C. Rubin Observatory] | How InfluxDB H...
Frossie Economou & Angelo Fausti [Vera C. Rubin Observatory] | How InfluxDB H...InfluxData
 
Objects as points (CenterNet) review [CDM]
Objects as points (CenterNet) review [CDM]Objects as points (CenterNet) review [CDM]
Objects as points (CenterNet) review [CDM]Dongmin Choi
 
Virus, Vaccines, Genes and Quantum - 2020-06-18
Virus, Vaccines, Genes and Quantum - 2020-06-18Virus, Vaccines, Genes and Quantum - 2020-06-18
Virus, Vaccines, Genes and Quantum - 2020-06-18Aritra Sarkar
 
Distributed Data Processing using Spark by Panos Labropoulos_and Sarod Yataw...
Distributed Data Processing using Spark by  Panos Labropoulos_and Sarod Yataw...Distributed Data Processing using Spark by  Panos Labropoulos_and Sarod Yataw...
Distributed Data Processing using Spark by Panos Labropoulos_and Sarod Yataw...Spark Summit
 
Morgan osg user school 2016 07-29 dist
Morgan osg user school 2016 07-29 distMorgan osg user school 2016 07-29 dist
Morgan osg user school 2016 07-29 distddm314
 
120_SEM_Special_Topics.ppt
120_SEM_Special_Topics.ppt120_SEM_Special_Topics.ppt
120_SEM_Special_Topics.pptzaki194502
 
E Science As A Lens On The World Lazowska
E Science As A Lens On The World   LazowskaE Science As A Lens On The World   Lazowska
E Science As A Lens On The World Lazowskaguest43b4df3
 
E Science As A Lens On The World Lazowska
E Science As A Lens On The World   LazowskaE Science As A Lens On The World   Lazowska
E Science As A Lens On The World LazowskaWCET
 
Burst data retrieval after 50k GPU Cloud run
Burst data retrieval after 50k GPU Cloud runBurst data retrieval after 50k GPU Cloud run
Burst data retrieval after 50k GPU Cloud runIgor Sfiligoi
 
AdS Biology and Quantum Information Science
AdS Biology and Quantum Information ScienceAdS Biology and Quantum Information Science
AdS Biology and Quantum Information ScienceMelanie Swan
 
Scratch to Supercomputers: Bottoms-up Build of Large-scale Computational Lens...
Scratch to Supercomputers: Bottoms-up Build of Large-scale Computational Lens...Scratch to Supercomputers: Bottoms-up Build of Large-scale Computational Lens...
Scratch to Supercomputers: Bottoms-up Build of Large-scale Computational Lens...inside-BigData.com
 
Chris Hillman – Beyond Mapreduce Scientific Data Processing in Real-time
Chris Hillman – Beyond Mapreduce Scientific Data Processing in Real-timeChris Hillman – Beyond Mapreduce Scientific Data Processing in Real-time
Chris Hillman – Beyond Mapreduce Scientific Data Processing in Real-timeFlink Forward
 
Science and Cyberinfrastructure in the Data-Dominated Era
Science and Cyberinfrastructure in the Data-Dominated EraScience and Cyberinfrastructure in the Data-Dominated Era
Science and Cyberinfrastructure in the Data-Dominated EraLarry Smarr
 
Better Information Faster: Programming the Continuum
Better Information Faster: Programming the ContinuumBetter Information Faster: Programming the Continuum
Better Information Faster: Programming the ContinuumIan Foster
 
[RakutenTechConf2013] [A-3] TSUBAME2.5 to 3.0 and Convergence with Extreme Bi...
[RakutenTechConf2013] [A-3] TSUBAME2.5 to 3.0 and Convergence with Extreme Bi...[RakutenTechConf2013] [A-3] TSUBAME2.5 to 3.0 and Convergence with Extreme Bi...
[RakutenTechConf2013] [A-3] TSUBAME2.5 to 3.0 and Convergence with Extreme Bi...Rakuten Group, Inc.
 

Similar to World widetelescopetecfest (20)

Round Table Introduction: Analytics on 100 TB+ catalogs
Round Table Introduction: Analytics on 100 TB+ catalogsRound Table Introduction: Analytics on 100 TB+ catalogs
Round Table Introduction: Analytics on 100 TB+ catalogs
 
Astronomical Data Processing on the LSST Scale with Apache Spark
Astronomical Data Processing on the LSST Scale with Apache SparkAstronomical Data Processing on the LSST Scale with Apache Spark
Astronomical Data Processing on the LSST Scale with Apache Spark
 
Frossie Economou & Angelo Fausti [Vera C. Rubin Observatory] | How InfluxDB H...
Frossie Economou & Angelo Fausti [Vera C. Rubin Observatory] | How InfluxDB H...Frossie Economou & Angelo Fausti [Vera C. Rubin Observatory] | How InfluxDB H...
Frossie Economou & Angelo Fausti [Vera C. Rubin Observatory] | How InfluxDB H...
 
Objects as points (CenterNet) review [CDM]
Objects as points (CenterNet) review [CDM]Objects as points (CenterNet) review [CDM]
Objects as points (CenterNet) review [CDM]
 
Virus, Vaccines, Genes and Quantum - 2020-06-18
Virus, Vaccines, Genes and Quantum - 2020-06-18Virus, Vaccines, Genes and Quantum - 2020-06-18
Virus, Vaccines, Genes and Quantum - 2020-06-18
 
Distributed Data Processing using Spark by Panos Labropoulos_and Sarod Yataw...
Distributed Data Processing using Spark by  Panos Labropoulos_and Sarod Yataw...Distributed Data Processing using Spark by  Panos Labropoulos_and Sarod Yataw...
Distributed Data Processing using Spark by Panos Labropoulos_and Sarod Yataw...
 
Morgan osg user school 2016 07-29 dist
Morgan osg user school 2016 07-29 distMorgan osg user school 2016 07-29 dist
Morgan osg user school 2016 07-29 dist
 
preskill.pptx
preskill.pptxpreskill.pptx
preskill.pptx
 
120_SEM_Special_Topics.ppt
120_SEM_Special_Topics.ppt120_SEM_Special_Topics.ppt
120_SEM_Special_Topics.ppt
 
E Science As A Lens On The World Lazowska
E Science As A Lens On The World   LazowskaE Science As A Lens On The World   Lazowska
E Science As A Lens On The World Lazowska
 
E Science As A Lens On The World Lazowska
E Science As A Lens On The World   LazowskaE Science As A Lens On The World   Lazowska
E Science As A Lens On The World Lazowska
 
Burst data retrieval after 50k GPU Cloud run
Burst data retrieval after 50k GPU Cloud runBurst data retrieval after 50k GPU Cloud run
Burst data retrieval after 50k GPU Cloud run
 
AdS Biology and Quantum Information Science
AdS Biology and Quantum Information ScienceAdS Biology and Quantum Information Science
AdS Biology and Quantum Information Science
 
Scratch to Supercomputers: Bottoms-up Build of Large-scale Computational Lens...
Scratch to Supercomputers: Bottoms-up Build of Large-scale Computational Lens...Scratch to Supercomputers: Bottoms-up Build of Large-scale Computational Lens...
Scratch to Supercomputers: Bottoms-up Build of Large-scale Computational Lens...
 
Chris Hillman – Beyond Mapreduce Scientific Data Processing in Real-time
Chris Hillman – Beyond Mapreduce Scientific Data Processing in Real-timeChris Hillman – Beyond Mapreduce Scientific Data Processing in Real-time
Chris Hillman – Beyond Mapreduce Scientific Data Processing in Real-time
 
Science and Cyberinfrastructure in the Data-Dominated Era
Science and Cyberinfrastructure in the Data-Dominated EraScience and Cyberinfrastructure in the Data-Dominated Era
Science and Cyberinfrastructure in the Data-Dominated Era
 
Quantum Computers.ppt
Quantum Computers.pptQuantum Computers.ppt
Quantum Computers.ppt
 
Quantum Computers.ppt
Quantum Computers.pptQuantum Computers.ppt
Quantum Computers.ppt
 
Better Information Faster: Programming the Continuum
Better Information Faster: Programming the ContinuumBetter Information Faster: Programming the Continuum
Better Information Faster: Programming the Continuum
 
[RakutenTechConf2013] [A-3] TSUBAME2.5 to 3.0 and Convergence with Extreme Bi...
[RakutenTechConf2013] [A-3] TSUBAME2.5 to 3.0 and Convergence with Extreme Bi...[RakutenTechConf2013] [A-3] TSUBAME2.5 to 3.0 and Convergence with Extreme Bi...
[RakutenTechConf2013] [A-3] TSUBAME2.5 to 3.0 and Convergence with Extreme Bi...
 

More from PREMKUMAR

Global wireless e-voting
Global wireless e-votingGlobal wireless e-voting
Global wireless e-votingPREMKUMAR
 
Steganography
SteganographySteganography
SteganographyPREMKUMAR
 
Wireless sensor network
Wireless sensor networkWireless sensor network
Wireless sensor networkPREMKUMAR
 
3G technology
3G technology3G technology
3G technologyPREMKUMAR
 
Face Morphing
Face MorphingFace Morphing
Face MorphingPREMKUMAR
 
NANO ROBOTICS
NANO ROBOTICSNANO ROBOTICS
NANO ROBOTICSPREMKUMAR
 
nuclear BATTERY
nuclear BATTERYnuclear BATTERY
nuclear BATTERYPREMKUMAR
 
Memristor techonolgy
Memristor techonolgyMemristor techonolgy
Memristor techonolgyPREMKUMAR
 
11 brain finger printing
11 brain finger printing11 brain finger printing
11 brain finger printingPREMKUMAR
 
Non conventional energy sources
Non conventional energy sourcesNon conventional energy sources
Non conventional energy sourcesPREMKUMAR
 
Widescreen PowerPoint
 Widescreen PowerPoint Widescreen PowerPoint
Widescreen PowerPointPREMKUMAR
 
Power aware cloud metering
Power aware cloud meteringPower aware cloud metering
Power aware cloud meteringPREMKUMAR
 
Agriculture field monitoring
Agriculture field monitoringAgriculture field monitoring
Agriculture field monitoringPREMKUMAR
 
Canal of design
Canal of designCanal of design
Canal of designPREMKUMAR
 

More from PREMKUMAR (18)

Redtacton
RedtactonRedtacton
Redtacton
 
Global wireless e-voting
Global wireless e-votingGlobal wireless e-voting
Global wireless e-voting
 
Steganography
SteganographySteganography
Steganography
 
Wireless sensor network
Wireless sensor networkWireless sensor network
Wireless sensor network
 
Android
AndroidAndroid
Android
 
3G technology
3G technology3G technology
3G technology
 
Robotics
RoboticsRobotics
Robotics
 
Face Morphing
Face MorphingFace Morphing
Face Morphing
 
NANO ROBOTICS
NANO ROBOTICSNANO ROBOTICS
NANO ROBOTICS
 
nuclear BATTERY
nuclear BATTERYnuclear BATTERY
nuclear BATTERY
 
Memristor techonolgy
Memristor techonolgyMemristor techonolgy
Memristor techonolgy
 
11 brain finger printing
11 brain finger printing11 brain finger printing
11 brain finger printing
 
Non conventional energy sources
Non conventional energy sourcesNon conventional energy sources
Non conventional energy sources
 
Widescreen PowerPoint
 Widescreen PowerPoint Widescreen PowerPoint
Widescreen PowerPoint
 
4G
4G4G
4G
 
Power aware cloud metering
Power aware cloud meteringPower aware cloud metering
Power aware cloud metering
 
Agriculture field monitoring
Agriculture field monitoringAgriculture field monitoring
Agriculture field monitoring
 
Canal of design
Canal of designCanal of design
Canal of design
 

Recently uploaded

pdfcoffee.com_business-ethics-q3m7-pdf-free.pdf
pdfcoffee.com_business-ethics-q3m7-pdf-free.pdfpdfcoffee.com_business-ethics-q3m7-pdf-free.pdf
pdfcoffee.com_business-ethics-q3m7-pdf-free.pdfJOHNBEBONYAP1
 
20240507 QFM013 Machine Intelligence Reading List April 2024.pdf
20240507 QFM013 Machine Intelligence Reading List April 2024.pdf20240507 QFM013 Machine Intelligence Reading List April 2024.pdf
20240507 QFM013 Machine Intelligence Reading List April 2024.pdfMatthew Sinclair
 
20240508 QFM014 Elixir Reading List April 2024.pdf
20240508 QFM014 Elixir Reading List April 2024.pdf20240508 QFM014 Elixir Reading List April 2024.pdf
20240508 QFM014 Elixir Reading List April 2024.pdfMatthew Sinclair
 
Indian Escort in Abu DHabi 0508644382 Abu Dhabi Escorts
Indian Escort in Abu DHabi 0508644382 Abu Dhabi EscortsIndian Escort in Abu DHabi 0508644382 Abu Dhabi Escorts
Indian Escort in Abu DHabi 0508644382 Abu Dhabi EscortsMonica Sydney
 
Trump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts SweatshirtTrump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts Sweatshirtrahman018755
 
best call girls in Hyderabad Finest Escorts Service 📞 9352988975 📞 Available ...
best call girls in Hyderabad Finest Escorts Service 📞 9352988975 📞 Available ...best call girls in Hyderabad Finest Escorts Service 📞 9352988975 📞 Available ...
best call girls in Hyderabad Finest Escorts Service 📞 9352988975 📞 Available ...kajalverma014
 
Russian Escort Abu Dhabi 0503464457 Abu DHabi Escorts
Russian Escort Abu Dhabi 0503464457 Abu DHabi EscortsRussian Escort Abu Dhabi 0503464457 Abu DHabi Escorts
Russian Escort Abu Dhabi 0503464457 Abu DHabi EscortsMonica Sydney
 
Abu Dhabi Escorts Service 0508644382 Escorts in Abu Dhabi
Abu Dhabi Escorts Service 0508644382 Escorts in Abu DhabiAbu Dhabi Escorts Service 0508644382 Escorts in Abu Dhabi
Abu Dhabi Escorts Service 0508644382 Escorts in Abu DhabiMonica Sydney
 
20240510 QFM016 Irresponsible AI Reading List April 2024.pdf
20240510 QFM016 Irresponsible AI Reading List April 2024.pdf20240510 QFM016 Irresponsible AI Reading List April 2024.pdf
20240510 QFM016 Irresponsible AI Reading List April 2024.pdfMatthew Sinclair
 
Ballia Escorts Service Girl ^ 9332606886, WhatsApp Anytime Ballia
Ballia Escorts Service Girl ^ 9332606886, WhatsApp Anytime BalliaBallia Escorts Service Girl ^ 9332606886, WhatsApp Anytime Ballia
Ballia Escorts Service Girl ^ 9332606886, WhatsApp Anytime Balliameghakumariji156
 
一比一原版(Offer)康考迪亚大学毕业证学位证靠谱定制
一比一原版(Offer)康考迪亚大学毕业证学位证靠谱定制一比一原版(Offer)康考迪亚大学毕业证学位证靠谱定制
一比一原版(Offer)康考迪亚大学毕业证学位证靠谱定制pxcywzqs
 
Nagercoil Escorts Service Girl ^ 9332606886, WhatsApp Anytime Nagercoil
Nagercoil Escorts Service Girl ^ 9332606886, WhatsApp Anytime NagercoilNagercoil Escorts Service Girl ^ 9332606886, WhatsApp Anytime Nagercoil
Nagercoil Escorts Service Girl ^ 9332606886, WhatsApp Anytime Nagercoilmeghakumariji156
 
APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...
APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...
APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...APNIC
 
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
20240509 QFM015 Engineering Leadership Reading List April 2024.pdfMatthew Sinclair
 
在线制作约克大学毕业证(yu毕业证)在读证明认证可查
在线制作约克大学毕业证(yu毕业证)在读证明认证可查在线制作约克大学毕业证(yu毕业证)在读证明认证可查
在线制作约克大学毕业证(yu毕业证)在读证明认证可查ydyuyu
 
Story Board.pptxrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr
Story Board.pptxrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrStory Board.pptxrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr
Story Board.pptxrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrHenryBriggs2
 
Tadepalligudem Escorts Service Girl ^ 9332606886, WhatsApp Anytime Tadepallig...
Tadepalligudem Escorts Service Girl ^ 9332606886, WhatsApp Anytime Tadepallig...Tadepalligudem Escorts Service Girl ^ 9332606886, WhatsApp Anytime Tadepallig...
Tadepalligudem Escorts Service Girl ^ 9332606886, WhatsApp Anytime Tadepallig...meghakumariji156
 
Real Men Wear Diapers T Shirts sweatshirt
Real Men Wear Diapers T Shirts sweatshirtReal Men Wear Diapers T Shirts sweatshirt
Real Men Wear Diapers T Shirts sweatshirtrahman018755
 
Russian Call girls in Abu Dhabi 0508644382 Abu Dhabi Call girls
Russian Call girls in Abu Dhabi 0508644382 Abu Dhabi Call girlsRussian Call girls in Abu Dhabi 0508644382 Abu Dhabi Call girls
Russian Call girls in Abu Dhabi 0508644382 Abu Dhabi Call girlsMonica Sydney
 

Recently uploaded (20)

pdfcoffee.com_business-ethics-q3m7-pdf-free.pdf
pdfcoffee.com_business-ethics-q3m7-pdf-free.pdfpdfcoffee.com_business-ethics-q3m7-pdf-free.pdf
pdfcoffee.com_business-ethics-q3m7-pdf-free.pdf
 
20240507 QFM013 Machine Intelligence Reading List April 2024.pdf
20240507 QFM013 Machine Intelligence Reading List April 2024.pdf20240507 QFM013 Machine Intelligence Reading List April 2024.pdf
20240507 QFM013 Machine Intelligence Reading List April 2024.pdf
 
20240508 QFM014 Elixir Reading List April 2024.pdf
20240508 QFM014 Elixir Reading List April 2024.pdf20240508 QFM014 Elixir Reading List April 2024.pdf
20240508 QFM014 Elixir Reading List April 2024.pdf
 
Indian Escort in Abu DHabi 0508644382 Abu Dhabi Escorts
Indian Escort in Abu DHabi 0508644382 Abu Dhabi EscortsIndian Escort in Abu DHabi 0508644382 Abu Dhabi Escorts
Indian Escort in Abu DHabi 0508644382 Abu Dhabi Escorts
 
Trump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts SweatshirtTrump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts Sweatshirt
 
call girls in Anand Vihar (delhi) call me [🔝9953056974🔝] escort service 24X7
call girls in Anand Vihar (delhi) call me [🔝9953056974🔝] escort service 24X7call girls in Anand Vihar (delhi) call me [🔝9953056974🔝] escort service 24X7
call girls in Anand Vihar (delhi) call me [🔝9953056974🔝] escort service 24X7
 
best call girls in Hyderabad Finest Escorts Service 📞 9352988975 📞 Available ...
best call girls in Hyderabad Finest Escorts Service 📞 9352988975 📞 Available ...best call girls in Hyderabad Finest Escorts Service 📞 9352988975 📞 Available ...
best call girls in Hyderabad Finest Escorts Service 📞 9352988975 📞 Available ...
 
Russian Escort Abu Dhabi 0503464457 Abu DHabi Escorts
Russian Escort Abu Dhabi 0503464457 Abu DHabi EscortsRussian Escort Abu Dhabi 0503464457 Abu DHabi Escorts
Russian Escort Abu Dhabi 0503464457 Abu DHabi Escorts
 
Abu Dhabi Escorts Service 0508644382 Escorts in Abu Dhabi
Abu Dhabi Escorts Service 0508644382 Escorts in Abu DhabiAbu Dhabi Escorts Service 0508644382 Escorts in Abu Dhabi
Abu Dhabi Escorts Service 0508644382 Escorts in Abu Dhabi
 
20240510 QFM016 Irresponsible AI Reading List April 2024.pdf
20240510 QFM016 Irresponsible AI Reading List April 2024.pdf20240510 QFM016 Irresponsible AI Reading List April 2024.pdf
20240510 QFM016 Irresponsible AI Reading List April 2024.pdf
 
Ballia Escorts Service Girl ^ 9332606886, WhatsApp Anytime Ballia
Ballia Escorts Service Girl ^ 9332606886, WhatsApp Anytime BalliaBallia Escorts Service Girl ^ 9332606886, WhatsApp Anytime Ballia
Ballia Escorts Service Girl ^ 9332606886, WhatsApp Anytime Ballia
 
一比一原版(Offer)康考迪亚大学毕业证学位证靠谱定制
一比一原版(Offer)康考迪亚大学毕业证学位证靠谱定制一比一原版(Offer)康考迪亚大学毕业证学位证靠谱定制
一比一原版(Offer)康考迪亚大学毕业证学位证靠谱定制
 
Nagercoil Escorts Service Girl ^ 9332606886, WhatsApp Anytime Nagercoil
Nagercoil Escorts Service Girl ^ 9332606886, WhatsApp Anytime NagercoilNagercoil Escorts Service Girl ^ 9332606886, WhatsApp Anytime Nagercoil
Nagercoil Escorts Service Girl ^ 9332606886, WhatsApp Anytime Nagercoil
 
APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...
APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...
APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...
 
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
 
在线制作约克大学毕业证(yu毕业证)在读证明认证可查
在线制作约克大学毕业证(yu毕业证)在读证明认证可查在线制作约克大学毕业证(yu毕业证)在读证明认证可查
在线制作约克大学毕业证(yu毕业证)在读证明认证可查
 
Story Board.pptxrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr
Story Board.pptxrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrStory Board.pptxrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr
Story Board.pptxrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr
 
Tadepalligudem Escorts Service Girl ^ 9332606886, WhatsApp Anytime Tadepallig...
Tadepalligudem Escorts Service Girl ^ 9332606886, WhatsApp Anytime Tadepallig...Tadepalligudem Escorts Service Girl ^ 9332606886, WhatsApp Anytime Tadepallig...
Tadepalligudem Escorts Service Girl ^ 9332606886, WhatsApp Anytime Tadepallig...
 
Real Men Wear Diapers T Shirts sweatshirt
Real Men Wear Diapers T Shirts sweatshirtReal Men Wear Diapers T Shirts sweatshirt
Real Men Wear Diapers T Shirts sweatshirt
 
Russian Call girls in Abu Dhabi 0508644382 Abu Dhabi Call girls
Russian Call girls in Abu Dhabi 0508644382 Abu Dhabi Call girlsRussian Call girls in Abu Dhabi 0508644382 Abu Dhabi Call girls
Russian Call girls in Abu Dhabi 0508644382 Abu Dhabi Call girls
 

World widetelescopetecfest

  • 2. How to build the World Wide Telescope? Web Services & Grid Enable Virtual Observatory http://www.astro.caltech.edu/nvoconf/ http://www.voforum.org/ The Internet will be the world’s best telescope: It has data on every part of the sky In every measured spectral band: optical, x-ray, radio.. As deep as the best instruments (2 years ago).  It is up when you are up. The “seeing” is always great (no working at night, no clouds no moons no..).  It’s a smart telescope: links objects and data to literature on them. W3C & IETF standards Provide  Naming  Authorization / Security / Privacy  Distributed Objects  Discovery, Definition, Invocation, Object Model  Higher level services: workflow, transactions, DB,.. A great test bed for .NET ideas
  • 3. Steps to World Wide Telescope Define a set of Astronomy Objects and methods. Based on UDDI, WSDL, XSL, SOAP, dataSet Use them locally to debug ideas Schema, Units,… Dataset problems Typical use scenarios. Federate different archives Each archive is a web service Global query tool accesses them Working on this with Sloan Digital Sky Survey and CalTech/Palomar. Especially Alex Szalay et. al. at JHU
  • 4. Why Astronomy Data? It has no commercial value No privacy concerns Can freely share results with others Great for experimenting with algorithms It is real and well documented High-dimensional data (with confidence intervals) Spatial data Temporal data Many different instruments from Many different places and Many different times Federation is a goal The questions are interesting How did the universe form? There is a lot of it (petabytes) IRAS 100µ ROSAT ~keV DSS Optical 2MASS 2µ IRAS 25µ NVSS 20cm WENSS 92cm GB 6cm
  • 5. Step1 Putting SDSS online Scenario Design Astronomers proposed 20 questions  Typical of things they want to do  Each would require a week of programming in tcl / C++/ FTP Goal, make it easy to answer questions DB and tools design motivated by this goal  Implemented utility procedures  JHU Built GUI for Linux clients Q11: Find all elliptical galaxies with spectra that have an anomalous emission line. Q12: Create a grided count of galaxies with u-g>1 and r<21.5 over 60<declination<70, and 200<right ascension<210, on a grid of 2’, and create a map of masks over the same grid. Q13: Create a count of galaxies for each of the HTM triangles which satisfy a certain color cut, like 0.7u-0.5g-0.2i<1.25 && r<21.75, output it in a form adequate for visualization. Q14: Find stars with multiple measurements and have magnitude variations >0.1. Scan for stars that have a secondary object (observed at a different time) and compare their magnitudes. Q15: Provide a list of moving objects consistent with an asteroid. Q16: Find all objects similar to the colors of a quasar at 5.5<redshift<6.5. Q17: Find binary stars where at least one of them has the colors of a white dwarf. Q18: Find all objects within 30 arcseconds of one another that have very similar colors: that is where the color ratios u-g, g-r, r-I are less than 0.05m. Q19: Find quasars with a broad absorption line in their spectra and at least one galaxy within 10 arcseconds. Return both the quasars and the galaxies. Q20: For each galaxy in the BCG data set (brightest color galaxy), in 160<right ascension<170, -25<declination<35 count of galaxies within 30"of it that have a photoz within 0.05 of that galaxy. Q1: Find all galaxies without unsaturated pixels within 1' of a given point of ra=75.327, dec=21.023 Q2: Find all galaxies with blue surface brightness between and 23 and 25 mag per square arcseconds, and -10<super galactic latitude (sgb) <10, and declination less than zero. Q3: Find all galaxies brighter than magnitude 22, where the local extinction is >0.75. Q4: Find galaxies with an isophotal surface brightness (SB) larger than 24 in the red band, with an ellipticity>0.5, and with the major axis of the ellipse having a declination of between 30” and 60”arc seconds. Q5: Find all galaxies with a deVaucouleours profile (r¼ falloff of intensity on disk) and the photometric colors consistent with an elliptical galaxy. The deVaucouleours profile Q6: Find galaxies that are blended with a star, output the deblended galaxy magnitudes. Q7: Provide a list of star-like objects that are 1% rare. Q8: Find all objects with unclassified spectra. Q9: Find quasars with a line width >2000 km/s and 2.5<redshift<2.7. Q10: Find galaxies with spectra that have an equivalent width in Ha >40Å (Ha is the main hydrogen spectral line.)
  • 6. Two kinds of SDSS data in an SQL DB (objects and images all in DB) 15M Photo Objects ~ 400 attributes 50K Spectra with ~30 lines/ spectrum
  • 7. Spatial Data Access – SQL extension (Szalay, Kunszt, Brunner) http://www.sdss.jhu.edu/htm Added Hierarchical Triangular Mesh (HTM) table-valued function for spatial joins. Every object has a 20-deep Mesh ID. Given a spatial definition: Routine returns up to ~10 covering triangles. Spatial query is then up to ~10 range queries. Very fast: 10,000 triangles / second / cpu. Based onSQL Server Extended Stored Procedure 2 2,2 2,1 2,0 2,3 2,3,0 2,3,1 2,3,2 2,3,3 2 2,2 2,1 2,0 2,32,2 2,1 2,0 2,3 2,3,0 2,3,1 2,3,2 2,3,3 2,3,0 2,3,1 2,3,2 2,3,3 2
  • 8. Q15: Fast Moving Objects Find near earth asteroids:   Finds 3 objects in 11 minutes  (or 52 seconds with an index)  Ugly, but consider the alternatives (c programs an files and…)  SELECT r.objID as rId, g.objId as gId, dbo.fGetUrlEq(g.ra, g.dec) as url FROM PhotoObj r, PhotoObj g WHERE r.run = g.run and r.camcol=g.camcol and abs(g.field-r.field)<2 -- nearby -- the red selection criteria and ((power(r.q_r,2) + power(r.u_r,2)) > 0.111111 ) and r.fiberMag_r between 6 and 22 and r.fiberMag_r < r.fiberMag_g and r.fiberMag_r < r.fiberMag_i and r.parentID=0 and r.fiberMag_r < r.fiberMag_u and r.fiberMag_r < r.fiberMag_z and r.isoA_r/r.isoB_r > 1.5 and r.isoA_r>2.0 -- the green selection criteria and ((power(g.q_g,2) + power(g.u_g,2)) > 0.111111 ) and g.fiberMag_g between 6 and 22 and g.fiberMag_g < g.fiberMag_r and g.fiberMag_g < g.fiberMag_i and g.fiberMag_g < g.fiberMag_u and g.fiberMag_g < g.fiberMag_z and g.parentID=0 and g.isoA_g/g.isoB_g > 1.5 and g.isoA_g > 2.0 -- the matchup of the pair and sqrt(power(r.cx -g.cx,2)+ power(r.cy-g.cy,2)+power(r.cz-g.cz,2))*(10800/PI())< 4.0 and abs(r.fiberMag_r-g.fiberMag_g)< 2.0
  • 10. Performance (on current SDSS data) Run times: on 15k$ COMPAQ Server (2 cpu, 1 GB , 8 disk) Some take 10 minutes Some take 1 minute Median ~ 22 sec. Ghz processors are fast! (10 mips/IO, 200 ins/byte) 2.5 m rec/s/cpu time vs queryID 1 10 100 1000 Q08 Q01 Q09 Q10A Q19 Q12 Q10 Q20 Q16 Q02 Q13 Q04 Q06 Q11 Q15B Q17 Q07 Q14 Q15A Q05 Q03 Q18 seconds cpu elapsed ae cpu vs IO 1E+0 1E+1 1E+2 1E+3 1E+4 1E+5 1E+6 1E+7 0.01 0.1 1. 10. 100. 1,000.CPU sec IOcount 1,000 IOs/cpu sec ~1,000 IO/cpu sec ~ 64 MB IO/cpu sec
  • 11. Sequential Scan Speed is Important  In high-dimension data, best way is to search.  Sequential scan covering index is 10x faster Seconds vs minutes  SQL scans at 2M records/s/cpu (!)
  • 12. Memory in GB 1.0 10.0 100.0 1000.0 10000.0 100000.0 0 10 20 30 40 50 60 70 80 90 100 No of galaxies in Millions CPUtime(hrs) 1 4 32 256 year decade week day month Cosmo: 64-bit SQL Server & Windows Computing the Cosmological Constant Compares simulated & observed galaxy distribution Measure distance between each pair of galaxies A lot of work  (108 x 108 = 1016 steps) Good algorithms make this ~Nlog2N Needs LARGE main memory Using Itanium donated by Compaq 64-bit Windows & SQL server  (Alex Szalay, Adrian Pope@ JHU).
  • 13. Where We Are Today One Astronomy Archive Web Service works Federating 3 Web Services (JHU, Cal Tech, Space Telescope) WWT is a great .Net application Federating heterogeneous data sources. Cooperating organizations An Information At Your Fingertips challenge. SDSS DB is a data mining challenge: get your personal copy at http://research.microsoft.com/~gray/sdss Papers about this at: http://SkyServer.SDSS.org/ http://research.microsoft.com/~gray/ (see paragraph 1) DB available for experiments
  • 14. Sloan Digital Sky Survey http://www.sdss.org/ For the last 12 years astronomers have been building a telescope(with funding from Sloan Foundation, NSF, and a dozen universities). 90M$. Y2000: engineer, calibrate, commission: now public data. 5% of the survey, 600 sq degrees, 15 M objects 60GB, ½ TB raw. This data includes most of the known high z quasars. It has a lot of science left in it but…. New the data is arriving: 250GB/nite (20 nights per year) = 5TB/y. 100 M stars, 100 M galaxies, 1 M spectra. http://www.sdss.org/
  • 15. What we learned from the 20 Queries All have fairly short SQL programs -- a substantial advance over (tcl, C++) Many are sequential one-pass and two-pass over data Covering indices make scans run fast Table valued functions are wonderful but limitations are painful. Counting, Binning, Histograms VERY common Spatial indices helpful, Materialized view (Neighbors) helpful.
  • 16. An easy one Q7: Find rare star-like objects. Found 14,681 buckets, first 140 buckets have 99% time 62 seconds CPU bound 226 k records/second (2 cpu) 250 KB/s. Select cast((u-g) as int) as ug, cast((g-r) as int) as gr, cast((r-i) as int) as ri, cast((i-z) as int) as iz, count(*) as Population from stars group by cast((u-g) as int), cast((g-r) as int), cast((r-i) as int), cast((i-z) as int) order by count(*)
  • 17. An Easy One Q15: Find asteroids Sounds hard but there are 5 pictures of the object at 5 different times (color filters) and so can “see” velocity. Image pipeline computes velocity. Computing it from the 5 color x,y would also be fast Finds 1,303 objects in 3 minutes, 140MBps. (could go 2x faster with more disks) select objId, dbo.fGetUrlEq(ra,dec) as url --return object ID & url sqrt(power(rowv,2)+power(colv,2)) as velocity from photoObj -- check each object. where (power(rowv,2) + power(colv, 2)) -- square of velocity between 50 and 1000 -- huge values =error