Bietet vorhersagbare Reaktionszeiten unter Verwendung von Java-Standards
Mit WebSphere Real Time können Sie jetzt bei der Entwicklung von Anwendungen, die auf eine exakte Reaktionszeit angewiesen sind, von standardisierter Java-Technologie profitieren, ohne dafür den Determinismus opfern zu müssen.
WebSphere Real Time 2.0 ist eine Java-Laufzeitumgebung (Java Runtime Environment, JRE) mit Software-Development-Kit (SDK) und bietet folgende Leistungsmerkmale:
- Garbage-Collection in Echtzeit: Die Programmierung nach dem Java-Standard vereinfacht die Entwicklung echtzeitorientierter Anwendungen erheblich.
- Echtzeitspezifikation für Java: IBM stellt eine mit der Real Time Specification for Java (RTSJ) 1.0.2 kompatible Klassenbibliothek bereit.
- Kompilierung vor der Ausführung: Anwendungsentwickler können Code vorkompilieren, damit er so deterministisch wie möglich ausgeführt wird, d. h. bedeutend schneller als interpretierter Code.
- Unterstützung für gemeinsame Klassennutzung: Diese Unterstützung beschleunigt das dynamische Laden von Klassen und reduziert den Speicherbedarf in Szenarien mit mehreren Java Virtual Machines (JVMs).
Produktmerkmale und Vorteile
WebSphere Real Time ist eine Entwicklungs- und Ausführungsumgebung für die Erstellung von Anwendungen, die auf eine exakte Reaktionszeit angewiesen sind. Sie bietet ein deterministisches Zeitverhalten und ist mit der Programmiersprache Java kompatibel. Benutzer von WebSphere Real Time profitieren von verbesserter Produktivität und Zuverlässigkeit. Sie können ihre Java-bezogenen Ressourcen und Kenntnisse wiederverwenden, ohne die deterministischen Eigenschaften maschinennäherer Sprachen zu opfern. WebSphere Real Time ist eine eigenständige Ausführungsumgebung und ein Entwicklungskit mit Unterstützung für deterministisches Ausführungsverhalten.
- Gemessene Reaktionszeiten in Millisekunden, wenn die Kenndaten kritischer Anwendungen Reaktionen innerhalb von Sekundenbruchteilen erfordern.
- Eine realistische Alternative für die Echtzeit-Programmierung, die anstelle maschinennäherer Sprachen wie Ada 95, C oder C++ das Programmiermodell Java 6.0 unterstützt.
- Erweitert das Programmiermodell Java, sodass es Echtzeit-Anwendungen durch die Real Time Specification for Java (RTSJ) 1.0.2 unterstützt.
- Version 2 führt „sanfte“ Echtzeit-Unterstützung bei Standard-Linux-Varianten ein: Die neue Unterstützung verbessert das deterministische Verhalten bei der Verwendung von Linux-Kernels ohne Echtzeit-Erweiterungen.
WebSphere Real Time ist für den Einsatz im Rahmen einer integrierten Lösung vorgesehen, die aus IBM Hardware und einer Linux-Variante mit echtzeitorientierten Kernelerweiterungen besteht. Version 2 kann auch auf IBM Hardware mit Standard-Linux-Varianten ausgeführt werden, um Anwendungen mit weniger strikten Determinismusanforderungen zu unterstützen.
Weitere Informationen zu WebSphere Real Time (US)
Erfahren Sie mehr
Kaufen Sie WebSphere Real Time
IBM Software Subscription und Support ist für das erste Jahr im Software-Preis enthalten.
Sie können die Software nach dem Kauf online herunterladen - keine Lieferkosten
Description
WebSphere Real Time V3.0 is a Java Runtime Environment and Software Development Kit designed to provide more consistent performance for Java applications, enabling customers to develop applications with low latency and highly predictable response times. Commercial Java Runtime Environments (JRE) are not able to deliver this predictable, or real-time behavior because of the unpredictability of application execution time. Two areas that can give rise to such unpredictability are:
Garbage collection (GC), where the Java Virtual Machine (JVM) unpredictability interrupts the application execution to manage memory, freeing portions of Java-managed memory that are of no further use to an application for use by other applications.
Just-in-time (JIT) compiler, which will improve the performance of Java applications when compared to the traditional interpreted mode by compiling sections of code that are in frequent use. While JIT compilation dramatically improves application performance, it also gives rise to unpredictability of application execution time because early runs of the application can be interrupted to allow the compiler to execute.
WebSphere Real Time V3.0 can be used in servers or other Java applications with “soft” real-time goals such as consistent performance and service quality on Linux and IBM AIX systems.
WebSphere Real Time V3.0 can also be used to build “hard” real-time systems with aggressive and stringent timing constraints using the Java language running on real-time Linux , with lower development costs than using more traditional real-time system languages like ADA, C, and C++.
| WebSphere Real Time v3.0 | WebSphere Real Time v2.0 |
|---|---|
| Support for Java Standard Edition (JSE 7.0) | Support for Java Standard Edition (JSE 6.0) |
| Platform support for standard Linux, IBM AIX, Real-time Linux distributions | Platform support for standard Linux, IBM AIX (v2 SR3), and Real-time Linux distributions |
| Configurable Garbage Collection pause times as short as 1ms (default 3ms) | Less than 3ms Garbage Collection pause times |
| Compressed and non-compressed 64-bit support | Compressed references for 64-bit |
| No limit for heap size | Heap size < 28MB |
| Improved throughput performance on server workload | Performance baseline |
The key advantage to WebSphere Real Time is that it is designed to reduce or eliminate the primary source of unpredictable application pauses via its “Metronome” Garbage Collection technology while preserving the benefits of using the Java language.
When using WebSphere Real Time, typical applications can expect average garbage collection pauses less than 1ms on Red Hat MRG / Novell SLERT real-time operating systems and configurable pause time target (1ms and up) on other supported operating systems, defaulting to under 3ms. By preserving the garbage collection model, memory management remains transparent to developers, unlike an alternative approach called "scoped memory." Scoped memory can be extremely difficult to use, introducing complexities in programming and forcing developers to determine their memory requirements prior to runtime. Further, by utilizing existing Java class libraries, WebSphere Real Time retains the productivity and reusability aspects that make Java so attractive.
WebSphere Real Time reduces the problem with class loading through the use of the shared class cache to store classes in an internal format close to that used by its virtual machine at runtime. Ahead-of-time (AOT) and just-in-time (JIT) compilation can be further used to optimize the execution environment. In particular, AOT code can be stored into a shared class cache before program runtime and can be loaded into the virtual machine as classes are loaded, to provide the highest level of deterministic performance. The JIT compiler runs asynchronously on a low-priority thread so that it can dynamically improve the performance of an application while giving system designers a simple way to prevent the compiler from interfering with higher-priority application tasks.
For applications that require even lower latency than provided by the real-time garbage collection, WebSphere Real Time supports the Real Time specification for Java (RTSJ). Programmers can use the many standard features, including priority-based thread scheduling, high-resolution timers, and asynchronous event handlers.
The RTSJ, also known as Java Specification Request 1 (JSR-1), extends the Java language to support real-time behavior. It defines a number of language constructs similar to the traditional real-time programming languages. In doing so, it extends the Java programming model by allowing the application programmer to control memory areas ("Scoped Memory"), thread scheduling, and asynchronous event handling. While features such as scoped memory are incredibly powerful, and are required for applications that require sub-millisecond worst-case delays, they require much more significant programming skills, in particular for managing memory. WebSphere Real Time enables customers to write the majority of their application using standard Java, dipping into the powerful constructs in RTSJ as required. For many applications, features such as scoped memory will not be required, but the other features of RTSJ are fully available.
WebSphere Real Time is comprised of the following components:
Real-time garbage collection
Shared Classes support
Full support for Java Standard Edition (JSE 7.0)
Full support for JCP Real-time Specification for Java 1.0.2
A well-defined list of JDK classes that are No-Heap Real-Time Thread (NHRT) safe
Support for SMP multiprocessor x86 Linux platforms (including IBM BladeCenter)
WebSphere Real Time is supported on IBM hardware that has firmware compatible with real-time requirements. The firmware has been designed to eliminate system management events that may interrupt the processing of real-time applications and result in nondeterministic behavior.
A core feature of the real-time environment is the underlying open source real-time operating system. WebSphere Real Time supports an enhanced Linux kernel using system libraries and binaries available from Red Hat and Novell. IBM worked with the Linux community to develop the real-time operating system capabilities needed to obtain required performance for WebSphere Real Time and has subsequently made them available via the open source community.
Section 508 of the U.S. Rehabilitation Act
WebSphere Real Time satisfies the applicable requirements of Section 508 of the Rehabilitation Act, provided that any assistive technology used with the product properly interoperates with it. A U.S. Section 508 Voluntary Product Accessibility Template (VPAT), containing details on the products accessibility compliance, can be requested at http://www.ibm.com/able/product_accessibility/index.html
IPLA and Subscription and Support considerations
IPLA licenses can be transferred from one machine to another within, but not limited to an enterprise. You may aggregate the capacity for all the processors the product is operated on to achieve a more economic price. This will result in a single Proof of Entitlement (PoE). It is your responsibility to manage the distribution of Value Units within the limits of the entitlement of the product license.
Subscription and Support must cover the same capacity as the product license entitlement. Subscription and Support will be available in the country in which the agreement is made.
System requirements
Software prerequisites:
Red Hat Enterprise MRG V1
SUSE Linux Enterprise Real Time (SLERT) 10
WebSphere Real Time is supported on the following though without the benefit of the RTSJ support.
Red Hat Enterprise Linux AS Version 5.0 Update 4
Red Hat Enterprise Linux AS Version 6.0
SUSE Linux Enterprise Server Version 11
IBM AIX V6.1
IBM AIX V7.1
Certified hardware:
WebSphere Real Time for Linux is certified on multiprocessor variants of the following systems:
IBM BladeCenter® LS20 (Types 8850-76U, 8850-55U, 7971, 7972)
IBM eServertm xSeries® 326m (Types 7969-65U, 7969-85U, 7984-52U, 7984-6AU)
IBM BladeCenter LS21 (Type 7971-6AU)
IBM BladeCenter HS21 XM Dual Quad Core (Type 7995)
WebSphere Real Time for Linux is supported on hardware that runs a supported operating system, and that has these characteristics:
A minimum of 512 MB of physical memory.
AMD Opteron, Intel® Pentium® processor, or Intel EM64T running at 800 MHz or faster
WebSphere Real Time for Linux for 32-bit: minimum Intel Pentium 3, AMD Opteron, or Intel Atom Processor.
WebSphere Real Time for Linux for 64-bit: Intel 64, AMD Opteron, or Intel Atom Processor 230 or 330.
WebSphere Real Time for AIX is certified on multiprocessor variants of Common Hardware Reference Platform (chrp) systems. A system is a CHRP system if the command:
lscfg -p | fgrep Architectures
replies with:
Model Architecture: chrp
-
Flexibles Caching
- WebSphere eXtreme Scale
- WebSphere Real Time
Haben Sie Fragen?
Wir helfen Ihnen gerne.
Haben Sie Fragen?
- Angebot anfordern
- E-Mail an IBM
- oder rufen Sie uns an: 0800-4267947
Nennen Sie diesen Code: 109HE03W