file:///h:/temp/htmlö/analyse+dfsio+write+test.html

Size: px
Start display at page:

Download "file:///h:/temp/htmlö/analyse+dfsio+write+test.html"

Transcription

1 nalyse DFSIO Write Test of :45 Testreihe Ergebnisse: Probleme: Die Ergebnisse können der Inputspezifikation nicht mehr zugeordnet werden ("hier wollte ich so und so viele Dateien mit so und so vielen MB schreiben"), da die Tests nicht mehr vollständig durchlaufen: Zeiten überlappen, da es zu lange dauert, Dateien zu gross sind. Die Jobs beschreiben Sektoren wiederholt. Es Daten von der vielfachen Grösse des Dateisystems beschrieben Schreiben bricht oft ab unklar im Moment ob aufgrund überlappender Jobs (Jobs in der Queue ) Alle files wurden nie geschrieben Die im Design beschriebenen 600GB wurden nie geschrienen, das maximal Erreichte: gute 400GB ### Fragen: Bisher noch nicht mit buffersize gespielt. Bisher immer den Default von 1MB getestet, any ideas? In [ ]: shellscript: jarname="/usr/lib/hadoop-mapreduce/hadoop-mapreduce-client-jobclient-tests.jar" testspec="testdfsio -write -nrfiles ${1} -filesize ${2}MB" now=$(date '+%Y%0m%d-%Hh%M') outfile="/tmp/"${now}.txt hdfsloc="/user/hive/warehouse/dfsiostaged/" cmd="hadoop jar ${jarname} ${testspec} -resfile ${outfile}" echo ${cmd} ${cmd} echo "ran"${cmd} echo "outfile to "${outfile}", move it to "${hdfsloc} hdfs dfs -copyfromlocal ${outfile} ${hdfsloc}

2 nalyse DFSIO Write Test Driven by cront ("at") full-factorial: files MB IM schimmsten Fall also werden 60 Files a 10GB geschrieben - sollte Kapazität überschreiten können - s. cloudera vm beschreibung at now + 5 minutes <<< "sh /home/cloudera/bdcollation/dfsio/runtest.sh 1 1" at now + 10 minutes <<< "sh /home/cloudera/bdcollation/dfsio/runtest.sh 1 10" at now + 15 minutes <<< "sh /home/cloudera/bdcollation/dfsio/runtest.sh 1 100" at now + 20 minutes <<< "sh /home/cloudera/bdcollation/dfsio/runtest.sh " at now + 25 minutes <<< "sh /home/cloudera/bdcollation/dfsio/runtest.sh " at now + 30 minutes <<< "sh /home/cloudera/bdcollation/dfsio/runtest.sh 10 1" at now + 35 minutes <<< "sh /home/cloudera/bdcollation/dfsio/runtest.sh 10 10" at now + 40 minutes <<< "sh /home/cloudera/bdcollation/dfsio/runtest.sh " at now + 45 minutes <<< "sh /home/cloudera/bdcollation/dfsio/runtest.sh " at now + 50 minutes <<< "sh /home/cloudera/bdcollation/dfsio/runtest.sh " at now + 55 minutes <<< "sh /home/cloudera/bdcollation/dfsio/runtest.sh 20 1" at now + 60 minutes <<< "sh /home/cloudera/bdcollation/dfsio/runtest.sh 20 10" at now + 65 minutes <<< "sh /home/cloudera/bdcollation/dfsio/runtest.sh " at now + 70 minutes <<< "sh /home/cloudera/bdcollation/dfsio/runtest.sh " at now + 75 minutes <<< "sh /home/cloudera/bdcollation/dfsio/runtest.sh " at now + 80 minutes <<< "sh /home/cloudera/bdcollation/dfsio/runtest.sh 30 1" at now + 85 minutes <<< "sh /home/cloudera/bdcollation/dfsio/runtest.sh 30 10" at now + 90 minutes <<< "sh /home/cloudera/bdcollation/dfsio/runtest.sh " at now + 95 minutes <<< "sh /home/cloudera/bdcollation/dfsio/runtest.sh " at now minutes <<< "sh /home/cloudera/bdcollation/dfsio/runtest.sh " at now minutes <<< "sh /home/cloudera/bdcollation/dfsio/runtest.sh 40 1" at now minutes <<< "sh /home/cloudera/bdcollation/dfsio/runtest.sh 40 10" at now minutes <<< "sh /home/cloudera/bdcollation/dfsio/runtest.sh " at now minutes <<< "sh /home/cloudera/bdcollation/dfsio/runtest.sh " at now minutes <<< "sh /home/cloudera/bdcollation/dfsio/runtest.sh " at now minutes <<< "sh /home/cloudera/bdcollation/dfsio/runtest.sh 50 1" at now minutes <<< "sh /home/cloudera/bdcollation/dfsio/runtest.sh 50 10" at now minutes <<< "sh /home/cloudera/bdcollation/dfsio/runtest.sh " at now minutes <<< "sh /home/cloudera/bdcollation/dfsio/runtest.sh " at now minutes <<< "sh /home/cloudera/bdcollation/dfsio/runtest.sh " at now minutes <<< "sh /home/cloudera/bdcollation/dfsio/runtest.sh 60 1" at now minutes <<< "sh /home/cloudera/bdcollation/dfsio/runtest.sh 60 10" at now minutes <<< "sh /home/cloudera/bdcollation/dfsio/runtest.sh " at now minutes <<< "sh /home/cloudera/bdcollation/dfsio/runtest.sh " at now minutes <<< "sh /home/cloudera/bdcollation/dfsio/runtest.sh " Die Cloudera vm Filesystem Size Used Avail Use% Mounted on /dev/mapper/vg_quickstart-lv_root 55G 49G 3.1G 95% / tmpfs 1.9G 88K 1.9G 1% /dev/shm /dev/sda1 485M 37M 423M 8% /boot /dev/sr0 57M 57M 0 100% /media/vboxadditions_5.1.14_ RAM: 4GB (4096MB) of :45

3 3 of :45 In [33]: import pandas as pd #infilename = "data/dfsio.csv" infilename = "data/dfsio/part-00000" columnnames = ["date","nf","mbtot","thru","iomean","iosd","dur"] dateparse = lambda x: pd.datetime.strptime(x, '%Y-%m-%d %H:%M:%S') #parse_dates=['datetime'], date_parser=dateparse df = pd.read_csv(infilename, header=0, sep=',', names=columnnames, infer_datetime_format=true, parse_dates=['date'], date_parser = dateparse ) # dies ist die bevorzugte methode "from_csv" print(df.dtypes) mask = (df['date'] >= ' ') mask = (df['date'] > ' ') & (df['date'] <= ' ') mask = (df['date'] > ' :50') & (df['date'] <= ' ') df["gbwritten"]=df['mbtot']*df['nf']/1000 df=df.loc[mask] df.head(40)

4 4 of :45 date datetime64[ns] nf int64 MBtot float64 thru float64 IOmean float64 IOsd float64 dur float64 dtype: object Out[33]: date nf MBtot thru IOmean IOsd dur GBwritten :53: :58: :04: :09: :14: :19: :27: :38: :41: :44: :47: :02: :06: :12: :25: :30: :35: :41: :56: :58: :17: :20: :31:

5 5 of :45 In [3]: df.describe() Out[3]: nf MBtot thru IOmean IOsd dur count mean std min % % % max In [34]: df.hist(bins=50) Out[34]: array([[<matplotlib.axes._subplots.axessubplot object at 0x E2A6EF0>, <matplotlib.axes._subplots.axessubplot object at 0x E9B3B38>, <matplotlib.axes._subplots.axessubplot object at 0x E9D45F8>], [<matplotlib.axes._subplots.axessubplot object at 0x EA40EF0>, <matplotlib.axes._subplots.axessubplot object at 0x EAA1978>, <matplotlib.axes._subplots.axessubplot object at 0x EAA19B0>], [<matplotlib.axes._subplots.axessubplot object at 0x EB66828>, <matplotlib.axes._subplots.axessubplot object at 0x EBBD550>, <matplotlib.axes._subplots.axessubplot object at 0x EC20F60>]], dtype=object) Duration Je mehr Dateien geschrieben, desto länger dauert es, unabhängig von der Dateigrösse (unabhängig von der insgesamt geschriebenen Anzahl MB)

6 6 of :45 In [39]: %matplotlib inline import seaborn as sns sns.set(color_codes=true) df.plot.scatter(x="nf", y="dur",s=df['mbtot']/50) df.plot.scatter(x="nf", y="dur",c='mbtot') Out[39]: <matplotlib.axes._subplots.axessubplot at 0xf6b7f28>

7 7 of :45 In [43]: df.plot.scatter(x="nf", y="iomean", s=df['mbtot']/50) #date nf thru IOmean IOsd dur df.plot.scatter(x="gbwritten",y="thru",s=df['mbtot']/50) MBtot Out[43]: <matplotlib.axes._subplots.axessubplot at 0x10c08fd0> Helpfile hadoop jar /usr/lib/hadoop-mapreduce/hadoop-mapreduce-client-jobclient-tests.jar DF SCIOTest [-nrfiles N] [-filesize MB] [-resfile resultfilename] [-buffersize Bytes] -nrfiles Number of files to generate within HDFS. This is also equivialvent to the number of map tasks that will get executed. -filesize Genterate a file for each map task ( -nrfiles ) with this size. Examp le -nrfiles 10 -filesize 250GB would generate 2500GB of data in HDFS cluster -resfile Path to local file system ( not hdfs ) where TestDFSIO will store the resutls for the test -buffersize Buffer size in bytes for each map tasks when reading and writing IO. Defaults to bytes ( about 1MB )

8 8 of :45 In [44]: pd.tools.plotting.scatter_matrix(df[["nf","mbtot","thru","iomean","dur"]], alpha =0.2, diagonal='hist') Out[44]: array([[<matplotlib.axes._subplots.axessubplot object at 0x C70320>, <matplotlib.axes._subplots.axessubplot object at 0x D13400>, <matplotlib.axes._subplots.axessubplot object at 0x D77F28>, <matplotlib.axes._subplots.axessubplot object at 0x DD0C88>, <matplotlib.axes._subplots.axessubplot object at 0x E3D5F8>], [<matplotlib.axes._subplots.axessubplot object at 0x E3D630>, <matplotlib.axes._subplots.axessubplot object at 0x EFDDD8>, <matplotlib.axes._subplots.axessubplot object at 0x F5ADA0>, <matplotlib.axes._subplots.axessubplot object at 0x FC8828>, <matplotlib.axes._subplots.axessubplot object at 0x A128>], [<matplotlib.axes._subplots.axessubplot object at 0x ED68>, <matplotlib.axes._subplots.axessubplot object at 0x E9BA8>, <matplotlib.axes._subplots.axessubplot object at 0x D8>, <matplotlib.axes._subplots.axessubplot object at 0x AF668>, <matplotlib.axes._subplots.axessubplot object at 0x C0B8>], [<matplotlib.axes._subplots.axessubplot object at 0x >, <matplotlib.axes._subplots.axessubplot object at 0x D6B38>, <matplotlib.axes._subplots.axessubplot object at 0x A8>, <matplotlib.axes._subplots.axessubplot object at 0x C91518>, <matplotlib.axes._subplots.axessubplot object at 0x FAED2E8>], [<matplotlib.axes._subplots.axessubplot object at 0x FBA0E48>, <matplotlib.axes._subplots.axessubplot object at 0x F94CF60>, <matplotlib.axes._subplots.axessubplot object at 0x F880CC0>, <matplotlib.axes._subplots.axessubplot object at 0x F2903C8>, <matplotlib.axes._subplots.axessubplot object at 0x F4BDCF8>]], dtype=object)

Ulrich Stärk

Ulrich Stärk < Ulrich Stärk ulrich.staerk@fu-berlin.de http://www.plat-forms.org 2 Einige Vorurteile Everything in the box is kind of weird and quirky, but maybe not enough to make it completely worthless. PHP: a fractal

More information

WHITEPAPER. Improve Hadoop Performance with Memblaze PBlaze SSD

WHITEPAPER. Improve Hadoop Performance with Memblaze PBlaze SSD Improve Hadoop Performance with Memblaze PBlaze SSD Improve Hadoop Performance with Memblaze PBlaze SSD Exclusive Summary We live in the data age. It s not easy to measure the total volume of data stored

More information

Getting Started with Pentaho and Cloudera QuickStart VM

Getting Started with Pentaho and Cloudera QuickStart VM Getting Started with Pentaho and Cloudera QuickStart VM This page intentionally left blank. Contents Overview... 1 Before You Begin... 1 Prerequisites... 1 Use Case: Development Sandbox for Pentaho and

More information

AUTOMATISIERUNG DER INFRASTRUKTUR

AUTOMATISIERUNG DER INFRASTRUKTUR AUTOMATISIERUNG DER INFRASTRUKTUR NÄCHSTER HALT: STORAGE! ULRICH HÖLSCHER SYSTEMS ENGINEER 1 ES GIBT EINE MENGE ARBEIT WIE GEHEN WIR ES AN? Cloud Management Systems Automatisierung, IT-Prozesse Cloud Readiness/Transformation

More information

Modern and Lucid C++ for Professional Programmers. Week 15 Exam Preparation. Department I - C Plus Plus

Modern and Lucid C++ for Professional Programmers. Week 15 Exam Preparation. Department I - C Plus Plus Department I - C Plus Plus Modern and Lucid C++ for Professional Programmers Week 15 Exam Preparation Thomas Corbat / Prof. Peter Sommerlad Rapperswil, 08.01.2019 HS2018 Prüfung 2 Durchführung Mittwoch

More information

T4 ein Performance Tool?

T4 ein Performance Tool? T4 ein Performance Tool? peter ranisch email: openvms@chello.at T4 Was ist das? Freeware Tool der OpenVMS Performance Group Tabular Timeline Tracking Tool = T4 Ansammlung von Kommando Prozeduren Läuft

More information

DATA VISUALIZATION. In [2]: %matplotlib inline. import numpy as np import pandas as pd. import matplotlib.pyplot as plt

DATA VISUALIZATION. In [2]: %matplotlib inline. import numpy as np import pandas as pd. import matplotlib.pyplot as plt DATA VISUALIZATION In [2]: %matplotlib inline import numpy as np import pandas as pd import matplotlib.pyplot as plt In [3]: # CASE 1: Potasium Ion Channel Kv1.2 # the input file has been generated by

More information

Java runtime environment windows xp. Java runtime environment windows xp.zip

Java runtime environment windows xp. Java runtime environment windows xp.zip Java runtime environment 1 6 24 windows xp Java runtime environment 1 6 24 windows xp.zip Java Runtime Environment 1.6.0.24. By Oracle included as part of the Java 2 Runtime Environment, Windows XP 64-bit

More information

Oliver Basarke

Oliver Basarke Oliver Basarke 15.06.2016 Über den Trainer Oliver Basarke (Baujahr 1968) Microsoft Senior PreSales Consultant Microsoft Certified Trainer Fachinformatiker (Systemintegration) Schwerpunkte: Windows Server

More information

imetos LoRa Data payload structure

imetos LoRa Data payload structure imetos LoRa Data payload structure Pessl Instruments, GmbH Version 1.0, 06-2018 Content 1. SCOPE OF THIS DOCUMENT... 2 2. PARSING THE DATA FROM THE PAYLOAD VERSUS API DATA ACCESS... 3 3. IMETOS LORA FIRMWARE

More information

Oracle In-Memory and all that

Oracle In-Memory and all that Oracle In-Memory and all that Paolo Kreth, DBA, Head of team Datamanagement, paolo.kreth@mobiliar.ch Andreas Wyssenbach, Senior DBA andreas.wyssenbach@mobiliar.ch July 2017 1 Agenda 1. Swiss Mobiliar in

More information

RS-232 Control of the Advantage EQ281/8, EQ282/8 and Advantage SMS200

RS-232 Control of the Advantage EQ281/8, EQ282/8 and Advantage SMS200 RS-232 Control of the Advantage EQ281/8, EQ282/8 and Advantage SMS200 Biamp Systems, 14130 N.W. Science Park, Portland, Oregon 97229 U.S.A. (503) 641-7287 an affiliate of Rauland-Borg Corp. Introduction

More information

Technical Specification. Third Party Control Protocol. AV Revolution

Technical Specification. Third Party Control Protocol. AV Revolution Technical Specification Third Party Control Protocol AV Revolution Document AM-TS-120308 Version 1.0 Page 1 of 31 DOCUMENT DETAILS Document Title: Technical Specification, Third Party Control Protocol,

More information

SAM-FS Tools. machen

SAM-FS Tools. machen SAM Users Group 8.-10. Mai 2009 SAM-FS Tools Die das Leben leichter machen Extend the Power of SAM-FS SAM-FS Add-on Tools & Services SAM-NeT SAM-WeB Media Refresh HSM Migration ERS SAM Monitoring NTFS

More information

GNetPlus Communication Protocol

GNetPlus Communication Protocol Basic Package (BINARY VERSION) Master Query Package (HOST) Field Header Address Query Function Data length DATA BYTES Error Check Desc SOH 0~255 0~255 0~255 CRC16_Low CRC16_Hi Size 1 BYTE 1 BYTE 1 BYTE

More information

4. Multicast Multicast Principles. Why is Multicast Important for. Multimedia? Definition of Multicast

4. Multicast Multicast Principles. Why is Multicast Important for. Multimedia? Definition of Multicast 4.3 Multicast 4.3.1 Multicast Principles efinition of Multicast Multicast is defined as the transmission of a data stream from one sender to many receivers with packet duplication and forwarding inside

More information

TI-No. 4002TI05.doc PAGE NO. : 1/1. Settings after Installation of the Firmware Version 74

TI-No. 4002TI05.doc PAGE NO. : 1/1. Settings after Installation of the Firmware Version 74 TI-No. 4002TI05.doc PAGE NO. : 1/1 DEVELOP Technical Information MODEL NAME : D 4500/5500iD MODEL CODE : 4002/4003 TI-INFO-NO. : 05 DATE : 13.07.2001 SUBJECT : Firmware MSC/Message/IR Version 74 PERFORMANCE

More information

2/26/2017. For instance, consider running Word Count across 20 splits

2/26/2017. For instance, consider running Word Count across 20 splits Based on the slides of prof. Pietro Michiardi Hadoop Internals https://github.com/michiard/disc-cloud-course/raw/master/hadoop/hadoop.pdf Job: execution of a MapReduce application across a data set Task:

More information

Integration of Ongoing Integers into PostgreSQL

Integration of Ongoing Integers into PostgreSQL Department of Informatics, University of Zürich BSc Thesis Integration of Ongoing Integers into PostgreSQL Timothy Pescatore Matrikelnummer: 14-916-886 Email: timothy.pescatore@uzh.ch September 15, 2018

More information

M/R for MR. Bild. Market Research powered by Hadoop. nurago - applied research technologies 1. nurago - applied research technologies

M/R for MR. Bild. Market Research powered by Hadoop. nurago - applied research technologies 1. nurago - applied research technologies M/R for MR Market Research powered by Hadoop Bild 1 Who is nurago? founded in early 2007 technology for usability and ad efficiancy research part of USYS Nutzenforschung: Hanover, Hamburg, Berlin, Munich,

More information

Filesystem. Disclaimer: some slides are adopted from book authors slides with permission

Filesystem. Disclaimer: some slides are adopted from book authors slides with permission Filesystem Disclaimer: some slides are adopted from book authors slides with permission 1 Recap Directory A special file contains (inode, filename) mappings Caching Directory cache Accelerate to find inode

More information

Search Engines Chapter 2 Architecture Felix Naumann

Search Engines Chapter 2 Architecture Felix Naumann Search Engines Chapter 2 Architecture 28.4.2009 Felix Naumann Overview 2 Basic Building Blocks Indexing Text Acquisition iti Text Transformation Index Creation Querying User Interaction Ranking Evaluation

More information

MixApart: Decoupled Analytics for Shared Storage Systems. Madalin Mihailescu, Gokul Soundararajan, Cristiana Amza University of Toronto and NetApp

MixApart: Decoupled Analytics for Shared Storage Systems. Madalin Mihailescu, Gokul Soundararajan, Cristiana Amza University of Toronto and NetApp MixApart: Decoupled Analytics for Shared Storage Systems Madalin Mihailescu, Gokul Soundararajan, Cristiana Amza University of Toronto and NetApp Hadoop Pig, Hive Hadoop + Enterprise storage?! Shared storage

More information

Connection Guide Link ECU

Connection Guide Link ECU Connection Guide Link ECU Can Bus Connection Atom/Monsun: Pin 28 (Can High) + Pin 29 (CAN Low) Storm (Black)/Fury/Xtreme/Force GDI: Pin B27 (Can2 High) + Pin B28 (CAN2 Low) Kurofune: Pin JST3 (Can High)

More information

MTR-4. C8 Command to MODBUS Bridge User Manual F-1, No. 631, Chung Der Road, Sec 1, Taichung Taiwan.

MTR-4. C8 Command to MODBUS Bridge User Manual F-1, No. 631, Chung Der Road, Sec 1, Taichung Taiwan. MTR-4 C8 Command to MODBUS Bridge User Manual 404 19F-1, No. 631, Chung Der Road, Sec 1, Taichung Taiwan. TEL:886-4-2238-0698 FAX:886-4-2238-0891 Web Site:http://www.monicon.com.tw E-mail: sales@monicon.com.tw

More information

AC500. Application Note. Scalable PLC for Individual Automation. AC500-S safety PLC - Overview of changes in Automation Builder 2.1.x and 2.0.

AC500. Application Note. Scalable PLC for Individual Automation. AC500-S safety PLC - Overview of changes in Automation Builder 2.1.x and 2.0. Application Note AC500 Scalable PLC for Individual Automation AC500-S safety PLC - Overview of changes in Automation Builder 2.1.x and 2.0.x ABB Automation Products GmbH Wallstadter Str. 59 D-68526 Ladenburg

More information

APPENDIX- A REFERENCE IMPLEMENTATION OF BSF-128 ===============================================================

APPENDIX- A REFERENCE IMPLEMENTATION OF BSF-128 =============================================================== APPENDICES A p p e n d i c e s P a g e 144 A p p e n d i c e s P a g e 145 APPENDIX- A REFERENCE IMPLEMENTATION OF BSF-128 =============================================================== REFERENCE IMPLEMENTATION

More information

Logging on to the Hadoop Cluster Nodes. To login to the Hadoop cluster in ROGER, a user needs to login to ROGER first, for example:

Logging on to the Hadoop Cluster Nodes. To login to the Hadoop cluster in ROGER, a user needs to login to ROGER first, for example: Hadoop User Guide Logging on to the Hadoop Cluster Nodes To login to the Hadoop cluster in ROGER, a user needs to login to ROGER first, for example: ssh username@roger-login.ncsa. illinois.edu after entering

More information

Proxy Pattern (et Relata) (seen from someone still living in the '70, the '80 and, partly, in the '90)

Proxy Pattern (et Relata) (seen from someone still living in the '70, the '80 and, partly, in the '90) Proxy Pattern (et Relata) (seen from someone still living in the '70, the '80 and, partly, in the '90) 1 Proxy Pattern Pattern Name and Classification (Kategorisierung) Intent (Zweck) Motivation/ Forces

More information

MCW Application Notes 24 th February 2017

MCW Application Notes 24 th February 2017 MCW Application Notes 24 th February 2017 www.motorcontrolwarehouse.co.uk Document number MCW-HEDY-001 Revision 0.1 Author Gareth Lloyd Product HEDY HD700 Title Summary HEDY HD700 Modbus Serial Communications

More information

USB. USB Sticks in Design und Qualität

USB. USB Sticks in Design und Qualität USB Sticks in Design und Qualität 148 149 USB Touch Pen touch pen OTG (On-The-Go) USB Stick OTG (On-The-Go) USB Drive USB microsd Karte microsd card Werbefläche advertising space 1, 2, 4, 8, 16, 32 GB

More information

Exchange 2016 Mailbox Move Request

Exchange 2016 Mailbox Move Request Hier einige Powershell Beispiele zur Abfrage des Status, Größe, Fortschritt, Details, Reporte usw. # Move Übersicht Get-MoveRequest Group-Object -Property:Status Select-Object Name,Count Format- Table

More information

Keywords: CRC, CRC-7, cyclic redundancy check, industrial output, PLC, programmable logic controller, C code, CRC generation, microprocessor, switch

Keywords: CRC, CRC-7, cyclic redundancy check, industrial output, PLC, programmable logic controller, C code, CRC generation, microprocessor, switch Keywords: CRC, CRC-7, cyclic redundancy check, industrial output, PLC, programmable logic controller, C code, CRC generation, microprocessor, switch APPLICATION NOTE 6002 CRC PROGRAMMING FOR THE MAX14900E

More information

CTT MODBUS-RTU COMMUNICATION PROTOCOL TEMPERATURE MONITOR DEVICE

CTT MODBUS-RTU COMMUNICATION PROTOCOL TEMPERATURE MONITOR DEVICE INSTRUCTION MANUAL IM149-U v0.92 CTT MODBUS-RTU COMMUNICATION PROTOCOL TEMPERATURE MONITOR DEVICE Firmware version: v3.0 or higher MODBUS PROTOCOL Modbus is a master-slave communication protocol able to

More information

DULCOMETER Multi-parameter Controller dialog DACa

DULCOMETER Multi-parameter Controller dialog DACa Software manual DULCOMETER Multi-parameter Controller dialog DACa Modbus RTU EN Valid only in combination with the operating instructions for the Multi-parameter Controller dialog DACa. A2100 Please carefully

More information

ProCANopen Questions & Answers Version Application Note AN-ION

ProCANopen Questions & Answers Version Application Note AN-ION Version 1.3 2011-07-21 Author(s) Restrictions Abstract Juergen Klueser Public Document This Document gives answers on typical questions on ProCANopen application. Table of Contents 1.0 Overview...1 2.0

More information

Code Snippets für VS Lab Test

Code Snippets für VS Lab Test Code Snippets für VS Lab Test Beinhaltet TCP, UDP, RMI sowie diverse Security Dinger. Großteils wurde der Code von Lab1 Lab2 genommen, bzw. aus dem TUWEL Faq. Es kann natürlich sein, dass Fehler enthalten

More information

Weigl Elektronik & Mediaprojekte

Weigl Elektronik & Mediaprojekte Weigl-EM +43 650 84 333 48 www.weigl-em.at Office@Weigl-EM.at Weigl-EM is the headquarters and hardware manufacturer Weigl Works, LLC +1 440 941 5849 www.weiglworks.com Info@WeiglWorks.com Weigl Works,

More information

Übungsblatt 2. Aufgabe 1 (Klassifikationen von Betriebssystemen)

Übungsblatt 2. Aufgabe 1 (Klassifikationen von Betriebssystemen) Übungsblatt 2 Aufgabe 1 (Klassifikationen von Betriebssystemen) 1. Zu jedem Zeitpunkt kann nur ein einziges Programm laufen. Wie ist der passende Fachbegriff für diese Betriebsart? 2. Was versteht man

More information

Donaubauer CRM to Online - EXE

Donaubauer CRM to Online - EXE Donaubauer CRM to Online - EXE User manual CRM to Online - EXE for Microsoft Dynamics 365 Versions 8.4.0/9.4.0 Table of contents 1 Preface... 3 2 Requirements... 4 2.1 Preparing the target system... 4

More information

SIMCom_3G_CSD_Application Note_V1.00

SIMCom_3G_CSD_Application Note_V1.00 SIMCom_3G_CSD_Application Note_V1.00 Document Title: SIMCom_3G_CSD_Application Note Version: 1.00 Date: Status: Document Control ID: Release SIMCom_3G_CSD_Application Note_V1.00 General Notes SIMCom offers

More information

Anleitung zur Schnellinstallation TEW-684UB 1.01

Anleitung zur Schnellinstallation TEW-684UB 1.01 Anleitung zur Schnellinstallation TEW-684UB 1.01 Table of Contents Deutsch 1 1. Bevor Sie anfangen 1 2. Installation 2 3. Verwendung des drahtlosen Adapters 5 Troubleshooting 7 Wireless Tips 8 Version

More information

Lotus Connections Architektur und Installation IBM Corporation

Lotus Connections Architektur und Installation IBM Corporation Lotus Connections Architektur und Installation Architektur Connections WebSphere Application Server incl Lotus Connections HTTP Server Benutzer mit Browser LDAP Tivoli Directory Integrator DatenbankSystem,

More information

Weigl-EM +43 (0) Weigl-EM is the hardware manufacturer and European distributor

Weigl-EM +43 (0) Weigl-EM is the hardware manufacturer and European distributor Weigl-EM +43 (0) 650 84 333 48 www.weigl-em.at Office@Weigl-EM.at Weigl-EM is the hardware manufacturer and European distributor Weigl Works, LLC 440-941-5849 www.weiglworks.com Info@WeiglWorks.com Weigl

More information

RS232C Serial Interface for Pirani Diaphragm and Pirani Standard Gauges. Caution. binary 8 data bits 1 stop bit no parity bit no handshake

RS232C Serial Interface for Pirani Diaphragm and Pirani Standard Gauges. Caution. binary 8 data bits 1 stop bit no parity bit no handshake General Information The Serial Interface allows the communication of the digital Agilent Pirani Capacitance Diaphragm Gauges (PCG-750, PCG-752) and the digital Agilent Pirani Standard Gauges (PVG-550,

More information

Manual Update V

Manual Update V Manual Update V4.02.04 This document contains the latest information about PRISMAproduction, which has not been integrated into the handbooks so far or which we want to emphasize as changes. Dieses Dokument

More information

Data Sharing Made Easier through Programmable Metadata. University of Wisconsin-Madison

Data Sharing Made Easier through Programmable Metadata. University of Wisconsin-Madison Data Sharing Made Easier through Programmable Metadata Zhe Zhang IBM Research! Remzi Arpaci-Dusseau University of Wisconsin-Madison How do applications share data today? Syncing data between storage systems:

More information

Continuous Delivery. für Java Anwendungen. Axel Fontaine Software Development Expert

Continuous Delivery. für Java Anwendungen. Axel Fontaine Software Development Expert 07.04.2011 Continuous Delivery für Java Anwendungen Axel Fontaine Software Development Expert twitter.com/axelfontaine www.axelfontaine.com business@axelfontaine.com Ceci n est pas une build tool. Ceci

More information

1. Implemented CM11 protocol

1. Implemented CM11 protocol 1. Implemented CM11 protocol 1.1. Housecodes and Device Codes. The housecodes and device codes range from A to P and 1 to 16 respectively although they do not follow a binary sequence. The encoding format

More information

Pivotal Capgemini Just Do It Training HDFS-NFS Gateway Labs

Pivotal Capgemini Just Do It Training HDFS-NFS Gateway Labs Pivotal Capgemini Just Do It Training HDFS-NFS Gateway Labs In this lab exercise you will have an opportunity to explore HDFS as well as become familiar with using the HDFS- NFS Bridge. First we will go

More information

Python for Data Analysis. Prof.Sushila Aghav-Palwe Assistant Professor MIT

Python for Data Analysis. Prof.Sushila Aghav-Palwe Assistant Professor MIT Python for Data Analysis Prof.Sushila Aghav-Palwe Assistant Professor MIT Four steps to apply data analytics: 1. Define your Objective What are you trying to achieve? What could the result look like? 2.

More information

Aufgabe 2. Join-Methoden Differential Snapshots. Ulf Leser Wissensmanagement in der Bioinformatik

Aufgabe 2. Join-Methoden Differential Snapshots. Ulf Leser Wissensmanagement in der Bioinformatik Aufgabe 2 Join-Methoden Differential Snapshots Ulf Leser Wissensmanagement in der Bioinformatik Join Operator JOIN: Most important relational operator Potentially very expensive Required in all practical

More information

Spark Over RDMA: Accelerate Big Data SC Asia 2018 Ido Shamay Mellanox Technologies

Spark Over RDMA: Accelerate Big Data SC Asia 2018 Ido Shamay Mellanox Technologies Spark Over RDMA: Accelerate Big Data SC Asia 2018 Ido Shamay 1 Apache Spark - Intro Spark within the Big Data ecosystem Data Sources Data Acquisition / ETL Data Storage Data Analysis / ML Serving 3 Apache

More information

CANOpen DS402 at KEBA

CANOpen DS402 at KEBA CANOpen DS402 at KEBA Description author: sue version date: 26.5.2008 actual version: V 1.0 printed: 26.5.08 23:14 filename: d:\projekte\cn\canopen_ds402_driver\canopen-ds402 at keba.doc Index of changes

More information

Übersicht über Außenbildschirme. SERVICE- MANAGEMENT Frank Schulze e.k. Kraftstraße 2a D Gera Germany Tel.: +49 (0)

Übersicht über Außenbildschirme. SERVICE- MANAGEMENT Frank Schulze e.k. Kraftstraße 2a D Gera Germany Tel.: +49 (0) Übersicht über Außenbildschirme SERVICE- MANAGEMENT Frank Schulze e.k. Kraftstraße 2a D-07548 Gera Germany Tel.: +49 (0)365-811678 info@sf-light.de sf-light.de Bring alles näher!!! Die Outdoor-LED-Anzeigen

More information

Mozilla firefox für xbox 360 downloaden

Mozilla firefox für xbox 360 downloaden Cerca Mozilla firefox für xbox 360 downloaden Internet Explorer is a series of graphical web browsers developed by Microsoft and included in the Microsoft Windows line of operating systems, starting in

More information

1 enum class -- scoped and strongly typed enums

1 enum class -- scoped and strongly typed enums enum class -- scoped and strongly typed enums C - enums mit Problemen: konvertierbar nach int exportieren ihre Aufzählungsbezeichner in den umgebenden Bereich (name clashes) schwach typisiert (z.b. keine

More information

AdminCamp. IBM Connections. Arnd Layer IBM Collaboration Solutions Competency Leader Web 2.0 & Social SW Gelsenkirchen,

AdminCamp. IBM Connections. Arnd Layer IBM Collaboration Solutions Competency Leader Web 2.0 & Social SW Gelsenkirchen, Arnd Layer IBM Collaboration Solutions Competency Leader Web 2.0 & Social SW Gelsenkirchen, 2012-06-19 AdminCamp IBM Connections 2012 IBM Corporation Arnd Layer Competency Leader Web 2.0 & Socail SW IBM

More information

Cloning and Repartitioning sessionmgr Disks

Cloning and Repartitioning sessionmgr Disks This chapter describes the steps needed to repartition the sessionmgr disks so that the increased number of subscribers (> 10 million) can be accommodated. Cloning and Disk Repartitioning of Sessionmgr01

More information

1. Übungsblatt. Vorlesung Embedded System Security SS 2017 Trusted Computing Konzepte. Beispiellösung

1. Übungsblatt. Vorlesung Embedded System Security SS 2017 Trusted Computing Konzepte. Beispiellösung Technische Universität Darmstadt Fachbereich Informatik System Security Lab Prof. Dr.-Ing. Ahmad-Reza Sadeghi Raad Bahmani 1. Übungsblatt Vorlesung Embedded System Security SS 2017 Trusted Computing Konzepte

More information

Modbus Protocol Guide for ZP2 Series Control Panels

Modbus Protocol Guide for ZP2 Series Control Panels Modbus Protocol Guide for ZP2 Series Control Panels P/N 00-3243-505-2603-01 ISS 14DEC15 Copyright Trademarks and patents Manufacturer Version REV 01 Certification 2015 UTC Fire & Security. All rights reserved.

More information

SXH Protocol by Spinel Version 3.0 Date:

SXH Protocol by Spinel Version 3.0 Date: SXH Protocol by Spinel Version 3.0 Date:.8 Revision History Vision Date Description V.0 V.0 V3.0 September, 6 December, 6 April, 8 Initial release Added LED control, OSD, Cmd 0x30 Added all ratio image

More information

Video-Livestreaming bei den Chemnitzer Linux-Tagen

Video-Livestreaming bei den Chemnitzer Linux-Tagen Video-Livestreaming bei den Chemnitzer Linux-Tagen Agenda 1. Grundlagen 2. Hardware & Software 3. Aufbau vor 2017 viel VLC Scripte Hintergründe 4. Aufbau ab 2017/18 5. Live-Demo 6. Ausblick Grundlagen

More information

Verve IPAC Plug-in Wireless AC Module. Software Setup 3. DolphinView Software 3. Preparations 4 Transmit LINK Signals 4.

Verve IPAC Plug-in Wireless AC Module. Software Setup 3. DolphinView Software 3. Preparations 4 Transmit LINK Signals 4. Verve IPAC Plug-in Wireless AC Module Wireless Linking & Configuration Guide Table of Contents IPAC Configuration Settings 2 Configuration Settings Reference Table 2 Software Setup 3 DolphinView Software

More information

Spark on Ceph at UPSud/LAL

Spark on Ceph at UPSud/LAL Spark on Ceph at UPSud/LAL. What Spark is about. Why Spark on Ceph?. Implementation ideas Julien Nauroy Spark on Ceph . What Spark is about Spark is a computing framework Siminar to Hadoop MapReduce from

More information

Heat meter PolluStat M-bus communication protocol description

Heat meter PolluStat M-bus communication protocol description Heat meter PolluStat M-bus communication protocol description 1 1. General structure of protocol 1.1. General features of protocol Meter uses a M-bus protocol. Default baud rate: 2400 bps, Even, 1 Stop.

More information

metric = bandwidth + delay Beispiel

metric = bandwidth + delay Beispiel Beispiel http://www.cisco.com/en/us/tech/tk365/technologies_white_paper09186a0080094cb7.shtml EIGRP Metrics EIGRP uses the minimum bandwidth on the path to a destination network and the total delay to

More information

FXD A new exchange format for fault symptom descriptions

FXD A new exchange format for fault symptom descriptions FXD A new exchange format for fault symptom descriptions Helmut Wellnhofer, Matthias Stampfer, Michael Hedenus, Michael Käsbauer Abstract A new format called FXD (=Fault symptom exchange Description) was

More information

F_Thingspeak INNEN DG Temperatur- und Druckmessung V1_00. F_Thingspeak INNEN DG Temperatur- und Druckmessung V1_00.ino

F_Thingspeak INNEN DG Temperatur- und Druckmessung V1_00. F_Thingspeak INNEN DG Temperatur- und Druckmessung V1_00.ino F_Thingspeak INNEN DG Temperatur- und Druckmessung V1_00 F_Thingspeak INNEN DG Temperatur- und Druckmessung V1_00.ino 1 /* 2 TEMPERATURMESSUNG INNEN über Thingspeak 3 V1.00 23.06.2015 Übernahme des Programms

More information

Filesystem. Disclaimer: some slides are adopted from book authors slides with permission 1

Filesystem. Disclaimer: some slides are adopted from book authors slides with permission 1 Filesystem Disclaimer: some slides are adopted from book authors slides with permission 1 Storage Subsystem in Linux OS Inode cache User Applications System call Interface Virtual File System (VFS) Filesystem

More information

HOW THE INTERNET OF THINGS IS CHANGING THE WAY WE WORK

HOW THE INTERNET OF THINGS IS CHANGING THE WAY WE WORK GLOBAL SPONSORS HOW THE INTERNET OF THINGS IS CHANGING THE WAY WE WORK MARTIN PERZL LEAD GLOBAL ARCHITECT, DELL EMC @PERZLM MARTIN.PERZL@DELL.COM How the Internet of Things is changing the way we work

More information

Big Data Analytics - an infrastructure and datamanagement perspective

Big Data Analytics - an infrastructure and datamanagement perspective Big Data Analytics - an infrastructure and datamanagement perspective BDCA; Kick Off User Group Cross Meetup March 3 rd, 2015 Jürgen Türk, CSE Netapp 1 2014 NetApp, Inc. All rights reserved. NetApp Proprietary

More information

Highlights. FP51 (FPGA based 1T 8051 core)

Highlights. FP51 (FPGA based 1T 8051 core) Copyright 2017 PulseRain Technology, LLC. FP51 (FPGA based 1T 8051 core) 10555 Scripps Trl, San Diego, CA 92131 858-877-3485 858-408-9550 http://www.pulserain.com Highlights 1T 8051 Core Intel MCS-51 Compatible

More information

CS 4400 Fall 2018 Midterm Exam 2 Practice (Version 2)

CS 4400 Fall 2018 Midterm Exam 2 Practice (Version 2) CS 4400 Fall 2018 Midterm Exam 2 Practice (Version 2) Name: Instructions You will have eighty minutes to complete the actual open-book, opennote exam. Electronic devices will be allowed only to consult

More information

XSP / XSR DMX Splitter / RDM Hub. User Manual

XSP / XSR DMX Splitter / RDM Hub. User Manual XSP / XSR DMX Splitter & RDM Hub User Manual XSP / XSR DMX Splitter / RDM Hub User Manual Issue 4 (2010-06-15) Copyright 2010 SWISSON AG No part of this documentation may be reproduced or transmitted in

More information

Hadoop Virtualization Extensions on VMware vsphere 5 T E C H N I C A L W H I T E P A P E R

Hadoop Virtualization Extensions on VMware vsphere 5 T E C H N I C A L W H I T E P A P E R Hadoop Virtualization Extensions on VMware vsphere 5 T E C H N I C A L W H I T E P A P E R Table of Contents Introduction... 3 Topology Awareness in Hadoop... 3 Virtual Hadoop... 4 HVE Solution... 5 Architecture...

More information

Cloud Computing and Hadoop Distributed File System. UCSB CS170, Spring 2018

Cloud Computing and Hadoop Distributed File System. UCSB CS170, Spring 2018 Cloud Computing and Hadoop Distributed File System UCSB CS70, Spring 08 Cluster Computing Motivations Large-scale data processing on clusters Scan 000 TB on node @ 00 MB/s = days Scan on 000-node cluster

More information

RS-232 Control of the Advantage DRI

RS-232 Control of the Advantage DRI RS-232 Control of the Advantage DRI Biamp Systems, 14130 N.W. Science Park, Portland, Oregon 97229 U.S.A. (503) 641-7287 an affiliate of Rauland-Borg Corp. Introduction This document contains technical

More information

Neuigkeiten aus dem Oracle-Cloud-Portfolio - Fokus auf Infrastructure-as-a-Service

Neuigkeiten aus dem Oracle-Cloud-Portfolio - Fokus auf Infrastructure-as-a-Service Neuigkeiten aus dem Oracle-Cloud-Portfolio - Fokus auf Infrastructure-as-a-Service Oliver Zandner, Leitender System-Berater Architect for Oracle-Cloud- & -On-Premise-Tech. Oracle Deutschland Copyright

More information

variable 1. Start of Packet - is used to provide synchronization when parsing packets. Always 0xFC

variable 1. Start of Packet - is used to provide synchronization when parsing packets. Always 0xFC DreamScreen V2 WiFi UDP Protocol The DreamScreen-WiFi platform uses UDP unicasting and broadcasting over the WLAN to provide communication. Port 8888 is used for both sending and receiving. The DreamScreen

More information

Quick Talking to ControlLogix (PCCC-style)

Quick Talking to ControlLogix (PCCC-style) Quick Talking to ControlLogix (PCCC-style) 1 Packet Formats 1.1 TCP Socket The explicit unconnected messaging we are doing uses a normal TCP socket opened to remote TCP port xaf12 ( or 44818 decimal).

More information

RTX64. Supported Network Interface Cards

RTX64. Supported Network Interface Cards RTX64 Supported Network Interface Cards 2017 IntervalZero, Inc. IZ-DOC-X64-0088-R34 October 2017 The Supported Network Interface Cards guide lists the NIC drivers that are provided with RTX64 for use with

More information

Auskunftsbegehren gemäß Art 15 DSGVO (Facebook Version englisch) - V1.0

Auskunftsbegehren gemäß Art 15 DSGVO (Facebook Version englisch) - V1.0 Auskunftsbegehren gemäß Art 15 DSGVO (Facebook Version englisch) - V1.0 Inhalt 1. Versionsstand dieses Dokuments... 1 1.1 V1.0 Stammfassung... 1 2. Hinweise zu diesem Muster... 1 3. Musterbrief... 2 1.

More information

RTX64. Supported Network Interface Cards

RTX64. Supported Network Interface Cards RTX64 Supported Network Interface Cards 2016 IntervalZero, Inc. IZ-DOC-X64-0088-R31 November 2016 This document provides a listing of the NIC drivers that are provided with RTX64 for use with the RT-TCP/IP

More information

RTX64. Supported Network Interface Cards IntervalZero, Inc. IZ-DOC-X R32 March 2017

RTX64. Supported Network Interface Cards IntervalZero, Inc. IZ-DOC-X R32 March 2017 RTX64 Supported Network Interface Cards 2017 IntervalZero, Inc. IZ-DOC-X64-0088-R32 March 2017 The Supported Network Interface Cards guide lists the NIC drivers that are provided with RTX64 for use with

More information

Copyright (C) Fujitsu Siemens Computers GmbH 2005 *3 All rights reserved *3

Copyright (C) Fujitsu Siemens Computers GmbH 2005 *3 All rights reserved *3 Fujitsu Siemens Computers GmbH CRTE (BS2000/OSD) Version 2.4C *4 October 2005 *4 Release Notice Copyright (C) Fujitsu Siemens Computers GmbH 2005 *3 All rights reserved *3 Release Notice CRTE V2.4C 1 General.....................

More information

on a 35 mm top-hat rail (in accordance with DIN EN TH35) Ambient temperature Operation: C Storage: C

on a 35 mm top-hat rail (in accordance with DIN EN TH35) Ambient temperature Operation: C Storage: C Data sheet PCD1.B1020-A20 E-Line RIO 16DI, 4Rel Starting with FW 1.08.xx The L-Serie E-Line RIO modules are controlled via the RS-485 serial communication protocols S-Bus and Modbus for decentralised automation

More information

Rib Design to Increase Stiffness of Housings

Rib Design to Increase Stiffness of Housings Rib Design to Increase Stiffness of Housings R. Helfrich, M. Klein, A. Schünemann INTES GmbH, Stuttgart, Germany www.intes.de; info@intes.de Summary: Crank housings and transmission housings need sufficient

More information

CIS 76 SSH Brute Force. SSH Brute Force Attack

CIS 76 SSH Brute Force. SSH Brute Force Attack SSH Brute Force Attack Last updated 9/10/2017 1 Admonition 2 Unauthorized hacking is a crime. The hacking methods and activities learned in this course can result in prison terms, large fines and lawsuits

More information

EVShield Interface Specifications

EVShield Interface Specifications EVShield Advanced Development Guide v1.0 EVShield Interface Specifications Power Specs: EVShield can be powered from external power supply. Max Power Rating: 10.5 Volts DC Minimum 6.6 Volts DC needed to

More information

Diagnostic Port Serial Interface for Capacitance Diaphragm Gauges

Diagnostic Port Serial Interface for Capacitance Diaphragm Gauges Communication Protocol Diagnostic Port Serial Interface for Capacitance Diaphragm Gauges CDG025D-X3 4-20 ma Current Loop Stripe CDG045Dhs Stripe CDG100Dhs tira84e1 (2017-05) 1 General Information The Diagnostic

More information

Stephan Aiche AG Algorithmische Bioinformatik Fachbereich Mathematik und Informatik. Coding Convention

Stephan Aiche AG Algorithmische Bioinformatik Fachbereich Mathematik und Informatik. Coding Convention Stephan Aiche AG Algorithmische Bioinformatik Fachbereich Mathematik und Informatik Coding Convention Allgemein Eine aktuelle Version findet man hier http://www-bs2.informatik.uni-tuebingen.de/services/openms/openms-internal/

More information

xxx xxx AT/PT xxxx x x..xx weitere Varianten siehe Anhang des Zertifikats further variations see annex of certificate

xxx xxx AT/PT xxxx x x..xx weitere Varianten siehe Anhang des Zertifikats further variations see annex of certificate Powered by TCPDF (www.tcpdf.org) Certificate Nr./No.: V 246.21/15 Prüfgegenstand Pneumatischer Schwenkantrieb für Armaturen mit Sicherheitsfunktion Pneumatic actuator for valves with safety function (std.

More information

Technical Information. Command overview of Vision Systems

Technical Information. Command overview of Vision Systems Technical Information Command overview of Vision Systems Image analysis command Grab image 0x01 X X X X Shutter speed 0x07 X X X X Synchronous flash 0x49 X X X X Video mode 0x00 X X Display 0x05 X X X

More information

TecCom Trader Guide for

TecCom Trader Guide for ... connecting the Automotive Aftermarket TecCom Trader Guide for Synchronous CAP Rush Order Process Document version 1.0 Interface description March 2007 Bei der Zusammenstellung von Texten und Abbildungen

More information

Interface Control Document

Interface Control Document Interface Control Document CR8200 Engine-based products D026166 CR8200 Interface Control Document ICD.docx Page 1 of 14 TABLE OF CONTENTS 1 Scope... 3 2 Communication Medium... 3 3 Reader to Host Communication...

More information

Installation, Storage and Compute with Windows Server Online-Training Examen 740. Ausbildungsinhalte. ITKservice

Installation, Storage and Compute with Windows Server Online-Training Examen 740. Ausbildungsinhalte. ITKservice Installation, Storage and Compute with Windows Server 2016 Online-Training Examen 740 Ausbildungsinhalte ITKservice EXAM Technische Trainings Microsoft Installation, Storage and Compute with Windows Server

More information

Übersicht Port-Liste. Workstation. Liste der in SeMSy III verwendeten Netzwerk-Ports

Übersicht Port-Liste. Workstation.  Liste der in SeMSy III verwendeten Netzwerk-Ports Übersicht -Liste Liste der in SeMSy III verwendeten Netzwerk-s SeMSy III ist ein hochperformantes und zukunftssicheres Videomanagementsystem mit höchstem Bedienkomfort. Es bietet umfangreiche Funktionen,

More information

AquaCER with TTL OUTPUT

AquaCER with TTL OUTPUT INSTRUCTION MANUAL AquaCER with TTL OUTPUT DESCRIPTION: The AquaCER TTL is a hydrostatic pressure transmitter, with a capacitive ceramic sensor, and can withstand very high burst pressures. The applied

More information

Windows Update error code list

Windows Update error code list Die Überprüfung von Update-Fehler-Codes aus dem %systemroot%\windowsupdate.log ist recht mühsam. Hier mal einige Fehler-Codes mit Klartextausgabe zur weiteren und erleichterten Analyse. Windows Update

More information