Data Streaming. Efficient Handling of Large and Small (Detector) Data at the Paul Scherrer Institute

Size: px
Start display at page:

Download "Data Streaming. Efficient Handling of Large and Small (Detector) Data at the Paul Scherrer Institute"

Transcription

1 Data Streaming Efficient Handling of Large and Small (Detector) Data at the Paul Scherrer Institute S. Ebner 1, H. Billich 1, H. Brands 1, Ezequiel Panepucci 1, L. Sala 1 1 Paul Scherrer Institut (PSI), CH-5232 Villigen PSI, Switzerland

2 The Paul Scherrer Institute, PSI, is the largest research centre for natural and engineering sciences within Switzerland SwissFEL Swiss Free Electron Laser SLS Swiss Light Source SINQ Swiss Spallation Neutron Source HIPA The high-intensity proton accelerator...

3 Outline Motivation Objectives Design Lessons Learned Outlook Questions

4 Motivation

5 Motivation Detector Viewer File

6 Motivation Detector Viewer File Detector X Viewer File

7 Motivation File Formats Detector Viewer File Detector X Viewer File

8 Motivation Detector Viewer File

9 Motivation Analysis Detector Viewer File

10 Motivation Analysis Detector Viewer File Processing

11 Motivation Analysis Detector Viewer File I/O Limited Processing

12 Motivation Detector HDF5 Viewer File

13 Motivation Detector HDF5 Viewer File Delay / Concurrency

14 Motivation

15 Objectives

16 Objectives... Dependencies Minimize Code Complexity Design Conflicts

17 Objectives Stability Maintainability Programming Language Exchangeability Parallelization Simplicity Flexibility Maximize Decoupling (Code) Reuse Design Scaleability...

18 Design

19 Design Principles

20 Design FRAMEWORKS SUCK Principles

21 Design FRAMEWORKS SUCK Principles Data on Disks is DEAD

22 Design Control/Data Separation of Concerns Data taking, viewing, analysis, persistence, Data on Disks is DEAD Principles FRAMEWORKS SUCK

23 Design Control/Data Separation of Concerns Data taking, viewing, analysis, persistence, Data on Disks is DEAD Principles FRAMEWORKS SUCK Standardisation/ APIs on the Network

24 Design Detector Persistence

25 Design Detector Persistence

26 Design Detector ZMQ Persistence

27 Design Delivery Scheme: PUSH/PULL PUB/SUB Detector ZMQ Persistence

28 Design Delivery Scheme: PUSH/PULL PUB/SUB Detector ZMQ Persistence HWM (HighWaterMark) HWM

29 Design Control Delivery Scheme: PUSH/PULL PUB/SUB Control Detector ZMQ Persistence HWM (HighWaterMark) HWM

30 Main Header (JSON) {"htype":"array-1.0", "shape":[10,20], "type":"uint16", "frame":0} Sub Message htype defines content of main header as well as the structure of the whole message (sub messages)... Sub Message(s) can be binary or JSON 0..* required Design - Message

31 Design Control Delivery Scheme: PUSH/PULL PUB/SUB Control Detector ZMQ Persistence HWM (HighWaterMark) HWM

32 Design - Receiver Example import zmq context = zmq.context.instance() sock = context.socket(zmq.pull) sock.connect('tcp://hostname:9999') while True: header = sock.recv() print header while socket.getsockopt(zmq.rcvmore) data = sock.recv()

33 Design - Persistence Example import zmq context = zmq.context.instance() sock = context.socket(zmq.pull) sock.connect('tcp://hostname:9999') counter = 0 while True: header = sock.recv() print header while socket.getsockopt(zmq.rcvmore) data = sock.recv() open('file_{}.raw'.format(counter),'wb') f.write(data) f.close() counter += 1

34 Design Control Delivery Scheme: PUSH/PULL PUB/SUB Control Detector ZMQ Persistence HWM (HighWaterMark) HWM

35 Design Detector Persistence

36 Design Detector Persistence

37 Design Detector Splitter PUSH/PULL Persistence PUSH/PULL

38 Design Detector Splitter PUSH/PULL Persistence PUSH/PULL PUB/SUB Viewer(s)

39 Design Analysis PUSH/PULL PUSH/PULL or PUB/SUB Detector Splitter PUSH/PULL Persistence PUSH/PULL PUB/SUB Viewer(s)

40 Design - Advantages No delay in online analysis and viewing Re-use of components (e.g. file writing) Adding/exchange of components (e.g. detector, processing) Dynamic and automatic scaling (e.g. of processing) due to push/pull scheme Easy debugging through JSON header...

41 Design - Disadvantages It is a distributed system with all its challenges...

42 Detectors GigaFROST Pixels: 2016*2016 / 12 bit Exposure: 2µs exposure 1255 Hz Data Rate: 61.21Gbit/s GByte/s Write Stream: 2 GByte/s Preview Stream: 5 Hz PCO Edge Pixels: 2560x2160 / 16 bit Speed: 100 Hz mit dem 286Mhz ADC Rolling Shutter Data Rate: 1GByte/s Write Stream: 1GByte/s Preview Stream

43 Lessons Learned

44 Lessons Learned Keep code of components simple (no all-in-one-components) Failure tolerant design of components/software Automatic restart of components... Take special care when starting and closing a connection Setting ZMQ high watermark (on client and server) "right" is very important Central logging is a must Statistics for all components are needed Messages received Messages dropped...

45 Outlook

46 Outlook - Improvements Improve tooling for Python, Java, Improve (central) debugging and logging Work on the easy configuration and orchestration of the components/modules (black box concept )

47 Interested?

48 Contact Us

49 Questions?

50 Slides Contact Simon Ebner Paul Scherrer Institute WBGB/ Villigen PSI

51 Colors

Hardware Aspects, Modularity and Integration of an Event Mode Data Acquisition and Instrument Control for the European Spallation Source (ESS)

Hardware Aspects, Modularity and Integration of an Event Mode Data Acquisition and Instrument Control for the European Spallation Source (ESS) Hardware Aspects, Modularity and Integration of an Event Mode Data Acquisition and Instrument Control for the European Spallation Source (ESS) T Gahl 1,5, M Hagen 1, R Hall-Wilton 1,2, S Kolya 1, M Koennecke

More information

On the Use of CORBA in High Level Software Applications at the SLS

On the Use of CORBA in High Level Software Applications at the SLS PAUL SCHERRER INSTITUT SLS TME TA 2001 0183 November, 2001 On the Use of CORBA in High Level Software Applications at the SLS Michael Böge, Jan Chrin Paul Scherrer Institut CH 5232 Villigen PSI Switzerland

More information

Cosylab Switzerland and SKA

Cosylab Switzerland and SKA Cosylab Switzerland and SKA Diego Casadei diego.casadei@cosylab.com Cosylab and Cosylab Switzerland 11.06.2018 Cosylab Switzerland and SKA 2 qcoslyab: innovator and global leader in software for the world

More information

Monte Carlo simulation for adaptive optics

Monte Carlo simulation for adaptive optics Monte Carlo simulation for adaptive optics R. Valicu 1, P. Böni 1,3, J. Stahn 2, U. Filges 2, T. Panzner 2, Y. Bodenthin 2, M. Schneider 2,3, C.Schanzer 3 1 Physik-Department E21, James-Franck-Strasse,

More information

arxiv: v1 [physics.ins-det] 26 Jul 2018

arxiv: v1 [physics.ins-det] 26 Jul 2018 Prepared for submission to JINST Architecture of the data aggregation and streaming system for the European Spallation Source neutron instrument suite arxiv:1807.10388v1 [physics.ins-det] 26 Jul 2018 A.

More information

STATUS OF PLANS TO USE CONTAINERS IN THE WORLDWIDE LHC COMPUTING GRID

STATUS OF PLANS TO USE CONTAINERS IN THE WORLDWIDE LHC COMPUTING GRID The WLCG Motivation and benefits Container engines Experiments status and plans Security considerations Summary and outlook STATUS OF PLANS TO USE CONTAINERS IN THE WORLDWIDE LHC COMPUTING GRID SWISS EXPERIENCE

More information

NanoUSB3 Evaluation Kit for NanEye XS

NanoUSB3 Evaluation Kit for NanEye XS NanoUSB3 Evaluation Kit for NanEye XS Revision History: Version Date Modifications Author 1.0.0 22/05/17 Document Creation Luciano Calaça 1.0.1 21/06/17 Updated Debug Section 5.4 Luciano Calaça Page: 2/15

More information

Michael Böge, Jan Chrin

Michael Böge, Jan Chrin PAUL SCHERRER INSTITUT SLS-TME-TA-1999-0015 September, 1999 A CORBA Based Client- Model for Beam Dynamics Applications at the SLS Michael Böge, Jan Chrin Paul Scherrer Institut CH-5232 Villigen PSI Switzerland

More information

Member of the ams Group

Member of the ams Group CMOSIS / AWAIBA is now Member of the ams Group The technical content of this CMOSIS / AWAIBA document is still valid. Contact information: Headquarters: ams AG Tobelbader Strasse 30 8141 Premstaetten,

More information

Wir schaffen Wissen heute für morgen. Paul Scherrer Institut X10SA Partner Training Workshop 2014 (New) Features at X10SA

Wir schaffen Wissen heute für morgen. Paul Scherrer Institut X10SA Partner Training Workshop 2014 (New) Features at X10SA Wir schaffen Wissen heute für morgen Paul Scherrer Institut X10SA Partner Training Workshop 2014 (New) Features at X10SA PSI, 1. April 2014 Major Developments Since Last Training (2009) 2010 2011 2012

More information

Scintillators for SwissFEL

Scintillators for SwissFEL P AUL SCHERRER INSTITUT Scintillators for SwissFEL Usage of Scintillators at the SwissFEL Injector Test Facility Rasmus Ischebeck, for the PSI Diagnostics Group Scintillators for SwissFEL Profile monitors

More information

SCDI for EUV photomask metrology RESCAN - Reflective EUV Mask Scanning Lensless Imaging Tool

SCDI for EUV photomask metrology RESCAN - Reflective EUV Mask Scanning Lensless Imaging Tool EUV Litho Workshop 2017 WIR SCHAFFEN WISSEN HEUTE FÜR MORGEN P. Helfenstein a, I. Mochi a, R. Rajendran a, S. Fernandez a, S. Yoshitake b, Y. Ekinci a a Paul Scherrer Institut, Switzerland b NuFlare Technology

More information

Turning Relational Database Tables into Spark Data Sources

Turning Relational Database Tables into Spark Data Sources Turning Relational Database Tables into Spark Data Sources Kuassi Mensah Jean de Lavarene Director Product Mgmt Director Development Server Technologies October 04, 2017 3 Safe Harbor Statement The following

More information

Micro-Research Finland Oy. Timing goes Express. Jukka Pietarinen. EPICS Collaboration Meeting PSI, Villigen, October 2011

Micro-Research Finland Oy. Timing goes Express. Jukka Pietarinen. EPICS Collaboration Meeting PSI, Villigen, October 2011 Timing goes Express Jukka Pietarinen EPICS Collaboration Meeting PSI, Villigen, October 2011 PCIe-EVR-300 Based on cpci-evr-300 design PCI replaced with PCIe (Lattice IP core) Lattice ECP3 FPGA I/O on

More information

Image Acquisition and Processing at the Swiss Light Source

Image Acquisition and Processing at the Swiss Light Source 10th ICALEPCS Int. Conf. on Accelerator & Large Expt. Physics Control Systems. Geneva, 10-14 Oct 2005, PO2.095-5 (2005) Image Acquisition and Processing at the Swiss Light Source A. Aladwan, A. Bertrand,

More information

ØMQ and PyØMQ. Simple and Fast Messaging. Brian Granger SciPy 2010

ØMQ and PyØMQ. Simple and Fast Messaging. Brian Granger SciPy 2010 ØMQ and PyØMQ Simple and Fast Messaging Brian Granger SciPy 2010 Message passing Message = binary data, csv, structured data, Python objects, files, XML, JSON, video frames, audio streams, etc. Passing

More information

Blended Learning Outline: Developer Training for Apache Spark and Hadoop (180404a)

Blended Learning Outline: Developer Training for Apache Spark and Hadoop (180404a) Blended Learning Outline: Developer Training for Apache Spark and Hadoop (180404a) Cloudera s Developer Training for Apache Spark and Hadoop delivers the key concepts and expertise need to develop high-performance

More information

Java Oriented Object Programming II Files II - Binary I/O Lesson 3

Java Oriented Object Programming II Files II - Binary I/O Lesson 3 Java Oriented Object Programming II Files II - Binary I/O Lesson 3 The objectives in this lesson are: Convert Binary to Hexadecimals (vice versa) Understand Binary Code Use Hex Editors Explain how Streams

More information

AGIPD1.0 -> AGIPD1.1 Status / Plans

AGIPD1.0 -> AGIPD1.1 Status / Plans AGIPD1.0 -> AGIPD1.1 Status / Plans A. Allahgholi 2, J. Becker 2, R. Dinapoli 1, P. Goettlicher 2, M. Gronewald 4, H. Graafsma 2,5, D. Greiffenberg 1, H. Hirsemann 2, S. Jack 2, R. Klanner 3, A. Klyuev

More information

Characterization of cracks in cement-based materials by microscopy and image analysis

Characterization of cracks in cement-based materials by microscopy and image analysis Willkommen Welcome Bienvenue Characterization of cracks in cement-based materials by microscopy and image analysis M. Griffa 1, B. Münch 1, A. Leemann 1, G. Igarashi 2,1, R. Mokso 3, P. Lura 1,4 1 Concrete

More information

20486: Developing ASP.NET MVC 4 Web Applications

20486: Developing ASP.NET MVC 4 Web Applications 20486: Developing ASP.NET MVC 4 Web Applications Length: 5 days Audience: Developers Level: 300 OVERVIEW In this course, students will learn to develop advanced ASP.NET MVC applications using.net Framework

More information

Microservice-Based Agile Architectures:

Microservice-Based Agile Architectures: Microservice-Based Agile Architectures: An Opportunity for Specialized Niche Technologies Stefano Munari, Sebastiano Valle, Tullio Vardanega University of Padua, Department of Mathematics Ada-Europe 2018

More information

ACCELERATOR MODELLING AND MESSAGE LOGGING WITH ZeroMQ

ACCELERATOR MODELLING AND MESSAGE LOGGING WITH ZeroMQ Proceedings of ICALEPCS05, Melbourne, Australia - Pre-Press Release -Oct-05 :00WEBO04 ACCELERATOR MODELLING AND MESSAGE LOGGING WITH ZeroMQ J. Chrin, M. Aiba, A. Rawat, Z. Wang, Paul Scherrer Institut,

More information

Basic Concepts of the Energy Lab 2.0 Co-Simulation Platform

Basic Concepts of the Energy Lab 2.0 Co-Simulation Platform Basic Concepts of the Energy Lab 2.0 Co-Simulation Platform Jianlei Liu KIT Institute for Applied Computer Science (Prof. Dr. Veit Hagenmeyer) KIT University of the State of Baden-Wuerttemberg and National

More information

Developing ASP.NET MVC 4 Web Applications

Developing ASP.NET MVC 4 Web Applications Developing ASP.NET MVC 4 Web Applications Duration: 5 Days Course Code: 20486B About this course In this course, students will learn to develop advanced ASP.NET MVC applications using.net Framework 4.5

More information

Course 20486B: Developing ASP.NET MVC 4 Web Applications

Course 20486B: Developing ASP.NET MVC 4 Web Applications Course 20486B: Developing ASP.NET MVC 4 Web Applications Overview In this course, students will learn to develop advanced ASP.NET MVC applications using.net Framework 4.5 tools and technologies. The focus

More information

Visual Studio Course Developing ASP.NET MVC 5 Web Applications

Visual Studio Course Developing ASP.NET MVC 5 Web Applications Visual Studio Course - 20486 Developing ASP.NET MVC 5 Web Applications Length 5 days Prerequisites Before attending this course, students must have: In this course, students will learn to develop advanced

More information

AN UPGRADE OF MAGNET-FIELD-DRIVEN TIMING SYSTEMS AT THE AGS *

AN UPGRADE OF MAGNET-FIELD-DRIVEN TIMING SYSTEMS AT THE AGS * 10th ICALEPCS Int. Conf. on Accelerator & Large Expt. Physics Control Systems. Geneva, 10-14 Oct 2005, PO2.054-4 (2005) AN UPGRADE OF MAGNET-FIELD-DRIVEN TIMING SYSTEMS AT THE AGS * Y. Tian, B. Oerter

More information

Before proceeding with this tutorial, you must have a good understanding of Core Java and any of the Linux flavors.

Before proceeding with this tutorial, you must have a good understanding of Core Java and any of the Linux flavors. About the Tutorial Storm was originally created by Nathan Marz and team at BackType. BackType is a social analytics company. Later, Storm was acquired and open-sourced by Twitter. In a short time, Apache

More information

ASP.NET MVC Training

ASP.NET MVC Training TRELLISSOFT ASP.NET MVC Training About This Course: Audience(s): Developers Technology: Visual Studio Duration: 6 days (48 Hours) Language(s): English Overview In this course, students will learn to develop

More information

Product information. Hi-Tech Electronics Pte Ltd

Product information. Hi-Tech Electronics Pte Ltd Product information Introduction TEMA Motion is the world leading software for advanced motion analysis. Starting with digital image sequences the operator uses TEMA Motion to track objects in images,

More information

Overview. Prerequisites. Course Outline. Course Outline :: Apache Spark Development::

Overview. Prerequisites. Course Outline. Course Outline :: Apache Spark Development:: Title Duration : Apache Spark Development : 4 days Overview Spark is a fast and general cluster computing system for Big Data. It provides high-level APIs in Scala, Java, Python, and R, and an optimized

More information

Developing ASP.NET MVC 5 Web Applications. Course Outline

Developing ASP.NET MVC 5 Web Applications. Course Outline Developing ASP.NET MVC 5 Web Applications Course Outline Module 1: Exploring ASP.NET MVC 5 The goal of this module is to outline to the students the components of the Microsoft Web Technologies stack,

More information

An Introduction to Apache Spark

An Introduction to Apache Spark An Introduction to Apache Spark 1 History Developed in 2009 at UC Berkeley AMPLab. Open sourced in 2010. Spark becomes one of the largest big-data projects with more 400 contributors in 50+ organizations

More information

COURSE 20486B: DEVELOPING ASP.NET MVC 4 WEB APPLICATIONS

COURSE 20486B: DEVELOPING ASP.NET MVC 4 WEB APPLICATIONS ABOUT THIS COURSE In this course, students will learn to develop advanced ASP.NET MVC applications using.net Framework 4.5 tools and technologies. The focus will be on coding activities that enhance the

More information

SAS Platform Strategy Prepared for FANS usergroup. Mike Frost, Director, Product Management Fiona McNeill, Global Product Marketing

SAS Platform Strategy Prepared for FANS usergroup. Mike Frost, Director, Product Management Fiona McNeill, Global Product Marketing SAS Platform Strategy Prepared for FANS usergroup Mike Frost, Director, Product Management Fiona McNeill, Global Product Marketing Information is subject to change. Q1 2017 Q2 2017 Q3 2017 Q4 2017 H1

More information

Developing ASP.Net MVC 4 Web Application

Developing ASP.Net MVC 4 Web Application Developing ASP.Net MVC 4 Web Application About this Course In this course, students will learn to develop advanced ASP.NET MVC applications using.net Framework 4.5 tools and technologies. The focus will

More information

20486: Developing ASP.NET MVC 4 Web Applications (5 Days)

20486: Developing ASP.NET MVC 4 Web Applications (5 Days) www.peaklearningllc.com 20486: Developing ASP.NET MVC 4 Web Applications (5 Days) About this Course In this course, students will learn to develop advanced ASP.NET MVC applications using.net Framework

More information

Wir schaffen Wissen heute für morgen REUSABLE PATIENT SAFETY SYSTEM FRAMEWORK FOR THE PROTON THERAPY CENTRE AT PSI

Wir schaffen Wissen heute für morgen REUSABLE PATIENT SAFETY SYSTEM FRAMEWORK FOR THE PROTON THERAPY CENTRE AT PSI Wir schaffen Wissen heute für morgen REUSABLE PATIENT SAFETY SYSTEM FRAMEWORK FOR THE PROTON THERAPY CENTRE AT PSI P. Fernandez Carmona, M. Eichin, M. Grossmann, E. Johansen, A. Mayor, H.A. Regele ICALEPCS15,

More information

Developing ASP.NET MVC 4 Web Applications

Developing ASP.NET MVC 4 Web Applications Developing ASP.NET MVC 4 Web Applications Course 20486B; 5 days, Instructor-led Course Description In this course, students will learn to develop advanced ASP.NET MVC applications using.net Framework 4.5

More information

NanoUSB3 Evaluation Kit for NanEye GS

NanoUSB3 Evaluation Kit for NanEye GS NanoUSB3 Evaluation Kit for NanEye GS Table of Contents 1 Overview...3 2 USB3 Evaluation Board...4 3 Operating Instructions...6 3.1 Recommended Equipment...6 3.2 Basic operational instructions...6 3.3

More information

PROSCAN CONTROL SYSTEM STATUS REPORT

PROSCAN CONTROL SYSTEM STATUS REPORT 10th ICALEPCS Int. Conf. on Accelerator & Large Expt. Physics Control Systems. Geneva, 10-14 Oct 2005, PO1.010-1 (2005) ABSTRACT PROSCAN CONTROL SYSTEM STATUS REPORT D.Anicic, G.Dave, M.Gasche, T.Korhonen,

More information

An Introduction to Software Architecture. David Garlan & Mary Shaw 94

An Introduction to Software Architecture. David Garlan & Mary Shaw 94 An Introduction to Software Architecture David Garlan & Mary Shaw 94 Motivation Motivation An increase in (system) size and complexity structural issues communication (type, protocol) synchronization data

More information

Status and future of beamline control software at ESRF. Beamline Control Unit

Status and future of beamline control software at ESRF. Beamline Control Unit Status and future of beamline control software at ESRF E.Papillon, Beamline Control Unit ISDD Instrument Services and Development Divisions SOFTWARE GROUP A.Goetz Data Analysis Unit C.Ferrero Accelerator

More information

CSC 4900 Computer Networks: Transport Layer

CSC 4900 Computer Networks: Transport Layer CSC 4900 Computer Networks: Transport Layer Professor Henry Carter Fall 2017 Last Time... Sockets programming API TCP and UDP look different. Remember, there is no connect() in UDP - just start sending

More information

Voldemort. Smruti R. Sarangi. Department of Computer Science Indian Institute of Technology New Delhi, India. Overview Design Evaluation

Voldemort. Smruti R. Sarangi. Department of Computer Science Indian Institute of Technology New Delhi, India. Overview Design Evaluation Voldemort Smruti R. Sarangi Department of Computer Science Indian Institute of Technology New Delhi, India Smruti R. Sarangi Leader Election 1/29 Outline 1 2 3 Smruti R. Sarangi Leader Election 2/29 Data

More information

Developing an interface between MCNPX and McStas for simulation of neutron moderators. Bent Lauritzen Erik Nonbøl Esben Klinkby Peter Willendrup

Developing an interface between MCNPX and McStas for simulation of neutron moderators. Bent Lauritzen Erik Nonbøl Esben Klinkby Peter Willendrup Developing an interface between MCNPX and McStas for simulation of neutron moderators Bent Lauritzen Erik Nonbøl Esben Klinkby Peter Willendrup Motivation Traditionally two decoupled Monte Carlo codes

More information

ImageJ: binary files and HDF5 files exploration of the bullet volume. To prepare:

ImageJ: binary files and HDF5 files exploration of the bullet volume. To prepare: ImageJ: binary files and HDF5 files exploration of the bullet volume To prepare: cartridge 1) Moodle: download Week 1/bullet dataset (binary, 26.8 MB) 2) Moodle: download Week 2/bullet dataset (HDF5, 107

More information

Next Paradigm for Decentralized Apps. Table of Contents 1. Introduction 1. Color Spectrum Overview 3. Two-tier Architecture of Color Spectrum 4

Next Paradigm for Decentralized Apps. Table of Contents 1. Introduction 1. Color Spectrum Overview 3. Two-tier Architecture of Color Spectrum 4 Color Spectrum: Next Paradigm for Decentralized Apps Table of Contents Table of Contents 1 Introduction 1 Color Spectrum Overview 3 Two-tier Architecture of Color Spectrum 4 Clouds in Color Spectrum 4

More information

arxiv:cond-mat/ Oct 2002

arxiv:cond-mat/ Oct 2002 21 October 2002 The application of the NeXus data format to ISIS muon data arxiv:cond-mat/0210439 21 Oct 2002 S.P. Cottrell, D. Flannery, G. Porter, A.D. Hillier and P.J.C. King ISIS Facility, Rutherford

More information

Developing ASP.NET MVC 5 Web Applications

Developing ASP.NET MVC 5 Web Applications Developing ASP.NET MVC 5 Web Applications Course 20486C; 5 days, Instructor-led Course Description In this course, students will learn to develop advanced ASP.NET MVC applications using.net Framework tools

More information

PCAN-PC/104 CAN Interface for PC/104. User Manual V2.2.3

PCAN-PC/104 CAN Interface for PC/104. User Manual V2.2.3 PCAN-PC/104 CAN Interface for PC/104 User Manual V2.2.3 Products taken into account Product Name Model Part number PCAN-PC/104 Single Channel One CAN channel IPEH-002054 PCAN-PC/104 Dual Channel Two CAN

More information

Developing ASP.NET MVC 4 Web Applications

Developing ASP.NET MVC 4 Web Applications Developing ASP.NET MVC 4 Web Applications Código del curso: 20486 Duración: 5 días Acerca de este curso In this course, students will learn to develop advanced ASP.NET MVC applications using.net Framework

More information

NanEye GS USB3 Evaluation Kit

NanEye GS USB3 Evaluation Kit Revision History: Version Date 1.0.0 20/03/15 Document creation Fátima Gouveia 1.0.1 Updated Document Fátima Gouveia Modifications Author 2/16 Table of Contents 1 Overview...5 2 USB3 Evaluation Board...6

More information

UV-NIR LASER BEAM PROFILER

UV-NIR LASER BEAM PROFILER CinCam CMOS - Technical Data - CMOS-1201 CMOS-1202 CMOS-1203 CMOS-1204 Standard Series Standard Series Standard Series Standard Series SENSOR DATA Format: 1/2 1/1.8 1/1.8 1/2.5 Active area (without cover

More information

Charged particle detection performances of CMOS Pixel Sensors designed in a 0.18 µm CMOS process based on a high resistivity epitaxial layer

Charged particle detection performances of CMOS Pixel Sensors designed in a 0.18 µm CMOS process based on a high resistivity epitaxial layer Charged particle detection performances of CMOS Pixel Sensors designed in a 0.18 µm CMOS process based on a high resistivity epitaxial layer Jérôme Baudot on behalf of the PICSEL team of IPHC-Strasbourg

More information

THE ATLAS DISTRIBUTED DATA MANAGEMENT SYSTEM & DATABASES

THE ATLAS DISTRIBUTED DATA MANAGEMENT SYSTEM & DATABASES 1 THE ATLAS DISTRIBUTED DATA MANAGEMENT SYSTEM & DATABASES Vincent Garonne, Mario Lassnig, Martin Barisits, Thomas Beermann, Ralph Vigne, Cedric Serfon Vincent.Garonne@cern.ch ph-adp-ddm-lab@cern.ch XLDB

More information

CONCURRENT DISTRIBUTED TASK SYSTEM IN PYTHON. Created by Moritz Wundke

CONCURRENT DISTRIBUTED TASK SYSTEM IN PYTHON. Created by Moritz Wundke CONCURRENT DISTRIBUTED TASK SYSTEM IN PYTHON Created by Moritz Wundke INTRODUCTION Concurrent aims to be a different type of task distribution system compared to what MPI like system do. It adds a simple

More information

Modern Metadata Modelling

Modern Metadata Modelling Modern Metadata Modelling Tobias Richter European Spallation Source, Lund, Sweden Workshop Scientific Data Management for Photon and Neutron Facilities HZB, Berlin, March 2018 1 Modern Metadata Modelling?

More information

Transformation-free Data Pipelines by combining the Power of Apache Kafka and the Flexibility of the ESB's

Transformation-free Data Pipelines by combining the Power of Apache Kafka and the Flexibility of the ESB's Building Agile and Resilient Schema Transformations using Apache Kafka and ESB's Transformation-free Data Pipelines by combining the Power of Apache Kafka and the Flexibility of the ESB's Ricardo Ferreira

More information

CORBA EXPERIENCE AT THE SLS

CORBA EXPERIENCE AT THE SLS SLS-TME-TA-2002-0216 September 18, 2002 CORBA EXPERIENCE AT THE SLS C. Beny, M. Böge, J. Chrin, M. Grunder, M. Janousch, R. Krempaská, M. Muñoz, A. Streun Paul Scherrer Institut, CH-5232 Villigen PSI,

More information

The WaveDAQ system: Picosecond measurements with channels

The WaveDAQ system: Picosecond measurements with channels Stefan Ritt :: Muon Physics :: Paul Scherrer Institute The WaveDAQ system: Picosecond measurements with 10 000 channels Workshop on pico-second photon sensors, Kansas City, Sept. 2016 0.2-2 ns DRS4 Chip

More information

NeXus Software Status Mark Könnecke, Uwe Filges Laboratory for Neutron Scattering Paul Scherrer Institute CH 5232 Villigen PSI Switzerland

NeXus Software Status Mark Könnecke, Uwe Filges Laboratory for Neutron Scattering Paul Scherrer Institute CH 5232 Villigen PSI Switzerland NeXus Software Status Mark Könnecke, Uwe Filges Laboratory for Neutron Scattering Paul Scherrer Institute CH 5232 Villigen PSI Switzerland Abstract NeXus is a joint effort of both the synchrotron and neutron

More information

20486 Developing ASP.NET MVC 5 Web Applications

20486 Developing ASP.NET MVC 5 Web Applications Course Overview In this course, students will learn to develop advanced ASP.NET MVC applications using.net Framework tools and technologies. The focus will be on coding activities that enhance the performance

More information

Chapter 4: Apache Spark

Chapter 4: Apache Spark Chapter 4: Apache Spark Lecture Notes Winter semester 2016 / 2017 Ludwig-Maximilians-University Munich PD Dr. Matthias Renz 2015, Based on lectures by Donald Kossmann (ETH Zürich), as well as Jure Leskovec,

More information

A Configurable Parallel Hardware Architecture for Efficient Integral Histogram Image Computing

A Configurable Parallel Hardware Architecture for Efficient Integral Histogram Image Computing A Configurable Parallel Hardware Architecture for Efficient Integral Histogram Image Computing Abstract: Integral histogram image can accelerate the computing process of feature algorithm in computer vision,

More information

Reliability, load-balancing, monitoring and all that: deployment aspects of UNICORE. Bernd Schuller UNICORE Summit 2016 June 23, 2016

Reliability, load-balancing, monitoring and all that: deployment aspects of UNICORE. Bernd Schuller UNICORE Summit 2016 June 23, 2016 Mitglied der Helmholtz-Gemeinschaft Reliability, load-balancing, monitoring and all that: deployment aspects of UNICORE Bernd Schuller UNICORE Summit 2016 Outline Clustering recent progress Monitoring

More information

Vista Controls Vsystem * at the ISIS pulsed neutron facility Bob Mannix, Tim Gray ISIS Controls Group STFC, Rutherford Appleton Laboratory UK

Vista Controls Vsystem * at the ISIS pulsed neutron facility Bob Mannix, Tim Gray ISIS Controls Group STFC, Rutherford Appleton Laboratory UK Vista Controls Vsystem * at the ISIS pulsed neutron facility Bob Mannix, Tim Gray ISIS Controls Group STFC, Rutherford Appleton Laboratory UK ICALEPCS 2007, Knoxville TN, October 2007 * www.vista-control.com

More information

Install and Known Issues

Install and Known Issues Autodesk A360 Collaboration for Revit version 2015.5 Install and Known Issues Introduction: Autodesk A360 Collaboration for Revit version 2015.5 Autodesk A360 Collaboration for Revit version 2015.5 can

More information

Apache Spark is a fast and general-purpose engine for large-scale data processing Spark aims at achieving the following goals in the Big data context

Apache Spark is a fast and general-purpose engine for large-scale data processing Spark aims at achieving the following goals in the Big data context 1 Apache Spark is a fast and general-purpose engine for large-scale data processing Spark aims at achieving the following goals in the Big data context Generality: diverse workloads, operators, job sizes

More information

Conference The Data Challenges of the LHC. Reda Tafirout, TRIUMF

Conference The Data Challenges of the LHC. Reda Tafirout, TRIUMF Conference 2017 The Data Challenges of the LHC Reda Tafirout, TRIUMF Outline LHC Science goals, tools and data Worldwide LHC Computing Grid Collaboration & Scale Key challenges Networking ATLAS experiment

More information

BUILDING A SCALABLE MOBILE GAME BACKEND IN ELIXIR. Petri Kero CTO / Ministry of Games

BUILDING A SCALABLE MOBILE GAME BACKEND IN ELIXIR. Petri Kero CTO / Ministry of Games BUILDING A SCALABLE MOBILE GAME BACKEND IN ELIXIR Petri Kero CTO / Ministry of Games MOBILE GAME BACKEND CHALLENGES Lots of concurrent users Complex interactions between players Persistent world with frequent

More information

Intra-cluster Replication for Apache Kafka. Jun Rao

Intra-cluster Replication for Apache Kafka. Jun Rao Intra-cluster Replication for Apache Kafka Jun Rao About myself Engineer at LinkedIn since 2010 Worked on Apache Kafka and Cassandra Database researcher at IBM Outline Overview of Kafka Kafka architecture

More information

Photonfocus AG 3D Laser Triangulation with CMOS Cameras

Photonfocus AG 3D Laser Triangulation with CMOS Cameras Photonfocus AG 3D Laser Triangulation with CMOS Cameras Dr. Peter Mario Schwider, CTO 01.11.2016 Index CMOS Cameras for Laser Triangulation General product overview Photonfocus AG Laser triangulation with

More information

PCAN-PCI PCI to CAN Interface. User Manual V2.1.0

PCAN-PCI PCI to CAN Interface. User Manual V2.1.0 PCAN-PCI PCI to CAN Interface User Manual V2.1.0 Products taken into account Product Name Model Part Number PCAN-PCI Single Channel One CAN channel IPEH-002064 PCAN-PCI Dual Channel Two CAN channels IPEH-002065

More information

Branding. Customer Preferences

Branding. Customer Preferences Branding The following guide shows you how to do standard branding of your events within Proclaim Enterprise. It looks at the internal set up pages related to the logo and branding colors and then shows

More information

Implementing and Maintaining Microsoft SQL Server 2008 Integration Services

Implementing and Maintaining Microsoft SQL Server 2008 Integration Services Implementing and Maintaining Microsoft SQL Server 2008 Integration Services Course 6235A: Three days; Instructor-Led Introduction This three-day instructor-led course teaches students how to implement

More information

CLAS12 Offline Software Tools. G.Gavalian (Jlab) CLAS Collaboration Meeting (June 15, 2016)

CLAS12 Offline Software Tools. G.Gavalian (Jlab) CLAS Collaboration Meeting (June 15, 2016) CLAS12 Offline Software Tools G.Gavalian (Jlab) Overview Data Formats: RAW data decoding from EVIO. Reconstruction output banks in EVIO. Reconstruction output convertor to ROOT (coming soon). Data preservation

More information

Protocol Buffers, grpc

Protocol Buffers, grpc Protocol Buffers, grpc Szolgáltatásorientált rendszerintegráció Service-Oriented System Integration Dr. Balázs Simon BME, IIT Outline Remote communication application level vs. transport level protocols

More information

PYTHON TRAINING COURSE CONTENT

PYTHON TRAINING COURSE CONTENT SECTION 1: INTRODUCTION What s python? Why do people use python? Some quotable quotes A python history lesson Advocacy news What s python good for? What s python not good for? The compulsory features list

More information

REST. Lecture BigData Analytics. Julian M. Kunkel. University of Hamburg / German Climate Computing Center (DKRZ)

REST. Lecture BigData Analytics. Julian M. Kunkel. University of Hamburg / German Climate Computing Center (DKRZ) REST Lecture BigData Analytics Julian M. Kunkel julian.kunkel@googlemail.com University of Hamburg / German Climate Computing Center (DKRZ) 11-12-2015 Outline 1 REST APIs 2 Julian M. Kunkel Lecture BigData

More information

Network configuration management at CERN

Network configuration management at CERN Arkadiy Shevrikuko Stefan Stancu Network configuration management at CERN 10/8/2018 1 Outline Network overview Current solution: cfmgr Overview of open-source platforms Evolution plan 10/8/2018 2 Network

More information

Face detection and recognition. Many slides adapted from K. Grauman and D. Lowe

Face detection and recognition. Many slides adapted from K. Grauman and D. Lowe Face detection and recognition Many slides adapted from K. Grauman and D. Lowe Face detection and recognition Detection Recognition Sally History Early face recognition systems: based on features and distances

More information

20486C: Developing ASP.NET MVC 5 Web Applications

20486C: Developing ASP.NET MVC 5 Web Applications 20486C: Developing ASP.NET MVC 5 Web Course Details Course Code: Duration: Notes: 20486C 5 days This course syllabus should be used to determine whether the course is appropriate for the students, based

More information

Building loosely coupled and scalable systems using Event-Driven Architecture. Jonas Bonér Patrik Nordwall Andreas Källberg

Building loosely coupled and scalable systems using Event-Driven Architecture. Jonas Bonér Patrik Nordwall Andreas Källberg Building loosely coupled and scalable systems using Event-Driven Architecture Jonas Bonér Patrik Nordwall Andreas Källberg Why is EDA Important for Scalability? What building blocks does EDA consists of?

More information

NOVEMBER 19, 2018 FLI KELPER SCMOS CAMERA ASCOM DRIVERS PETER OLEYNIKOV

NOVEMBER 19, 2018 FLI KELPER SCMOS CAMERA ASCOM DRIVERS PETER OLEYNIKOV NOVEMBER 19, 2018 FLI KELPER SCMOS CAMERA ASCOM DRIVERS PETER OLEYNIKOV Conventions The following conventions are used in this manual: This icon denotes a note that contains an important information. Bold

More information

New Software-Designed Instruments

New Software-Designed Instruments 1 New Software-Designed Instruments Nicholas Haripersad Field Applications Engineer National Instruments South Africa Agenda What Is a Software-Designed Instrument? Why Software-Designed Instrumentation?

More information

Outline Background Jaluna-1 Presentation Jaluna-2 Presentation Overview Use Cases Architecture Features Copyright Jaluna SA. All rights reserved

Outline Background Jaluna-1 Presentation Jaluna-2 Presentation Overview Use Cases Architecture Features Copyright Jaluna SA. All rights reserved C5 Micro-Kernel: Real-Time Services for Embedded and Linux Systems Copyright 2003- Jaluna SA. All rights reserved. JL/TR-03-31.0.1 1 Outline Background Jaluna-1 Presentation Jaluna-2 Presentation Overview

More information

Microsoft Developing ASP.NET MVC 4 Web Applications

Microsoft Developing ASP.NET MVC 4 Web Applications 1800 ULEARN (853 276) www.ddls.com.au Microsoft 20486 - Developing ASP.NET MVC 4 Web Applications Length 5 days Price $4290.00 (inc GST) Version C Overview In this course, students will learn to develop

More information

Distributed Systems Exam 1 Review Paul Krzyzanowski. Rutgers University. Fall 2016

Distributed Systems Exam 1 Review Paul Krzyzanowski. Rutgers University. Fall 2016 Distributed Systems 2015 Exam 1 Review Paul Krzyzanowski Rutgers University Fall 2016 1 Question 1 Why did the use of reference counting for remote objects prove to be impractical? Explain. It s not fault

More information

Library for IMage Acquisition

Library for IMage Acquisition UK US Llama SP Library for IMage Acquisition UK - Overview - HowTo: e.g. Pilatus detector - What next? - LIMA for MCA? Lima, Peru US FP၇ WP၁၀ Workshop: ၁၃-၁၄/၀၁/၂၀၁၁ LImA Overview Unified control of 2D

More information

2/26/2017. Originally developed at the University of California - Berkeley's AMPLab

2/26/2017. Originally developed at the University of California - Berkeley's AMPLab Apache is a fast and general engine for large-scale data processing aims at achieving the following goals in the Big data context Generality: diverse workloads, operators, job sizes Low latency: sub-second

More information

Kandao Live. User Guide

Kandao Live. User Guide Kandao Live User Guide Contents 1. Product Introduction 1.1 Function 2. Hardware Requirement 3. Directions 3.1 Connect 3.1.1 Connecting via Router 3.1.2 Connecting via DHCP 3.2 Live Streaming Setting 3.2.1

More information

PCAN-ExpressCard ExpressCard to CAN Interface. User Manual V2.0.0

PCAN-ExpressCard ExpressCard to CAN Interface. User Manual V2.0.0 PCAN-ExpressCard ExpressCard to CAN Interface User Manual V2.0.0 Products taken into account Product Name Model Item Number PCAN-ExpressCard Single One CAN channel IPEH-003000 Channel PCAN-ExpressCard

More information

The Evolution of Big Data Platforms and Data Science

The Evolution of Big Data Platforms and Data Science IBM Analytics The Evolution of Big Data Platforms and Data Science ECC Conference 2016 Brandon MacKenzie June 13, 2016 2016 IBM Corporation Hello, I m Brandon MacKenzie. I work at IBM. Data Science - Offering

More information

Qunar Performs Real-Time Data Analytics up to 300x Faster with Alluxio

Qunar Performs Real-Time Data Analytics up to 300x Faster with Alluxio CASE STUDY Qunar Performs Real-Time Data Analytics up to 300x Faster with Alluxio Xueyan Li, Lei Xu, and Xiaoxu Lv Software Engineers at Qunar At Qunar, we have been running Alluxio in production for over

More information

Altera SDK for OpenCL

Altera SDK for OpenCL Altera SDK for OpenCL A novel SDK that opens up the world of FPGAs to today s developers Altera Technology Roadshow 2013 Today s News Altera today announces its SDK for OpenCL Altera Joins Khronos Group

More information

Maximizing Performance of IBM DB2 Backups

Maximizing Performance of IBM DB2 Backups Maximizing Performance of IBM DB2 Backups This IBM Redbooks Analytics Support Web Doc describes how to maximize the performance of IBM DB2 backups. Backing up a database is a critical part of any disaster

More information

Photoneo's brand new PhoXi 3D Camera is the highest resolution and highest accuracy area based 3D

Photoneo's brand new PhoXi 3D Camera is the highest resolution and highest accuracy area based 3D Company: Photoneo s.r.o. Germany Contact: Veronika Pulisova E-mail: pulisova@photoneo.com PhoXi 3D Camera Author: Tomas Kovacovsky & Jan Zizka Description of the innovation: General description Photoneo's

More information

The Use of LabVIEW FPGA in Accelerator Instrumentation.

The Use of LabVIEW FPGA in Accelerator Instrumentation. The Use of LabVIEW FPGA in Accelerator Instrumentation. Willem Blokland Research Accelerator Division Spallation Neutron Source Introduction Spallation Neutron Source at Oak Ridge National Laboratory:

More information