On Scalable Information Retrieval Systems

Total Page:16

File Type:pdf, Size:1020Kb

On Scalable Information Retrieval Systems On Scalable Information Retrieval Systems Ophir Frieder [email protected] www.ir.iit.edu 1 © Ophir Frieder 2002 “Scalable Search” Structured Semi-structured Answer Text, video, etc. Engine 2 © Ophir Frieder 2002 Scalable Information Systems: “Characteristics” n Ingest data from multiple sources – Duplicate document detection n Process multiple type data sources – Structured & unstructured data integration (SIRE) n Use scalable (parallel) technology systems – Parallel SIRE n Integrate retrieved data to yield answers – IIT Mediator 3 © Ophir Frieder 2002 Duplicate Document Detection n Union of data obtained from multiple sources often contains duplicates n Duplicates affect both retrieval effectiveness and retrieval efficiency n Duplicate detection is either syntactic or semantic, where semantic is far more challenging. 4 © Ophir Frieder 2002 What is a Duplicate Document? • Semantic Similarity If a document contains roughly the same semantic content it is a duplicate whether or not it is a precise syntactic match. 5 © Ophir Frieder 2002 Duplicate Detection Techniques Main duplicate detection approaches: – Hash based approaches (syntactic) – Information retrieval techniques – Resemblance S ( A ) Ç S ( B ) r ( A, B ) = S ( A ) È S ( B ) 6 © Ophir Frieder 2002 Duplicate Detection with IR n Using documents as queries, rank all documents in the collection with similar terms – Documents with equivalent weights are duplicates n For each query term, the corresponding posting list entries must be retrieved – for large collections, I/O costs are prohibitive 7 © Ophir Frieder 2002 Duplicate Detection with Resemblance n Calculate the resemblance of each document to every other document with matching features n Divide the document into shingles (X terms) used to create a unique hash n Calculate the resemblance based on hashes rather than terms n N2 comparison approaches not feasible for large collections n Optimizations, filter which shingles to use – E.g., every 25th shingle or a combination of multiple shingles 8 © Ophir Frieder 2002 Issues with Prior Approaches n Hash techniques not resilient to small changes in document representation. n IR techniques - slow for large collections. n Resemblance – documents are clustered into multiple clusters due to partitioning – duplicate classification is difficult. 9 © Ophir Frieder 2002 Combined (I-Match) Algorithm n Tokenize document n Create list of unique tokens n Filter tokens - What to filter? n Create a unique hash of remaining tokens n Search collection for duplicate hashes 10 © Ophir Frieder 2002 Filtration Based On Collection Statistics Hi & Low 25% Low 25% High 25% Mid 50% æ N ö 1. Sort according to idf = logç ÷ è n ø N = Number _ Of _ Documents _ In _ Collection n = Number _ Of _ Documents _Term _ Occurs _ In 2. Filter unwanted components 11 © Ophir Frieder 2002 LA Times Collection n Create random duplicates to test effectiveness. n For every ith word, pick a random number from one to ten. n If the number is higher than the random threshold (call it alpha) then pick a number from 1 to 3. n If the random number chosen is a one then remove the word. n If the number is a two then flip it with a word at position i+1. n If it is a three, add a word (randomly pick one from the term list). n Insert duplicate into the collection. 12 © Ophir Frieder 2002 Document Clusters Formed Document Resemblance Resemblance-Opt Combined LA 123190-0013 9 9 7 LA 123190-0022 6 9 2 LA 123190-0025 9 11 3 LA 123190-0037 10 11 1 LA 123190-0043 8 11 2 LA 123190-0053 10 9 2 LA 123190-0058 7 11 3 LA 123190-0073 6 11 3 LA 123190-0074 11 11 1 LA 123190-0080 9 11 9 Average 8.5 10.4 3.3 I-Match did not produce any false positives while Resemblance did. 13 © Ophir Frieder 2002 Processing Time – 2GB Algorithm MEAN Std Deviation Median Time Time Resemblance 31838.22 807.9 30862.5 Resemblance - Opt 24514.7 1042.1 24475.5 I-Match 3815.8 975.8 3598.8 Syntactic 65 N/A N/A 14 © Ophir Frieder 2002 Scalable Information Systems: “Characteristics” n Ingest data from multiple sources – Duplicate document detection n Process multiple type data sources – Structured & unstructured data integration (SIRE) n Use scalable (parallel) technology systems – Parallel SIRE n Integrate retrieved data to yield answers – IIT Mediator 15 © Ophir Frieder 2002 SIRE Goals § Integrate structured and semi-structured data using a framework that also integrates unstructured data. § Improve accuracy of retrieved results § Support scalability: – data volume – retrieval speeds § Support legacy data 16 © Ophir Frieder 2002 Portability The information retrieval prototype was implemented on the following relational platforms: – NCR Teradata DBC-machines – Microsoft SQL Server – Sybase – Oracle – IBM DB2 and SQL/DS 17 © Ophir Frieder 2002 Relational Inverted Index All inverted index entries <term> <list of documents> e.g., vehicle D1, D3, D4 results in: term docID vehicle D1 vehicle D3 vehicle D4 18 © Ophir Frieder 2002 Text Retrieval Conference (TREC) Sample Document <DOC> <DOCNO> AP881214-0028 </DOCNO> <FILEID>AP-NR-12-14-88 0117EST</FILEID> <FIRST>u i BC-Japan-Stocks 12-14 0027</FIRST> <SECOND>BC-Japan-Stocks,0026</SECOND> <HEAD>Stocks Up In Tokyo</HEAD> <DATELINE>TOKYO (AP) </DATELINE> <TEXT> The Nikkei Stock Average closed at 29,754.73 points up 156.92 points on the Tokyo Stock Exchange Wednesday. </TEXT> </DOC> 19 © Ophir Frieder 2002 Relational Document Representation (Term Processing) DOCUMENT docID docname headline dateline 28 AP881214-0028 Stocks Up In Tokyo TOKYO (AP) INDEX TERM docID termcnt term term df idf 28 1 nikkei average 2265 1.08 28 2 stock closed 2208 1.08 28 1 average exchange 2790 1.00 28 1 closed nikkei 234 2.07 28 2 points points 1627 1.23 28 1 up stock 2674 1.00 28 1 tokyo tokyo 725 1.58 28 1 exchange up 12746 0.30 28 1 wednesday wednesday 6417 0.60 20 © Ophir Frieder 2002 Simplistic Models: Keyword and Boolean Searches 21 © Ophir Frieder 2002 Relational Approach: Keyword Search Techniques § Keyword search select i.docID from INDEX i, QUERY q where i.term = q.term § Keyword search with stop word list select i.docID from INDEX i, QUERY q, STOPLIST s where (i.term = q.term) and (i.term <> s.term) 22 © Ophir Frieder 2002 Relational Approach: Boolean Search Techniques § OR query select docID select docID from INDEX from INDEX where term = term1 where term = term1 OR union term = term2 OR select docID term = term3 OR from INDEX .... where term = term2 term = termN union select docID from INDEX where term = term3 .... union select docID from INDEX where term = termN 23 © Ophir Frieder 2002 Relational Approach: Boolean Search Techniques § AND query select docID select docID from INDEX from INDEX a, INDEX b, INDEX c, ... INDEX N where term = term1 where a.term = term1 AND intersect b.term = term2 AND select docID c.term = term3 AND from INDEX .... where term = term2 n.term = termN AND intersect a.docID = b.docID AND select docID b.docID = c.docID AND from INDEX .... where term = term3 N-1.docID = N.docID .... intersect select docID from INDEX where term = termN 24 © Ophir Frieder 2002 Fixed Join-Count AND Queries Find all documents that contain all of the terms found in the QUERY relation: select i.docID from INDEX i, QUERY q where i.term = q.term group by i.docID having count (distinct (i.term)) = select count(*) from QUERY 25 © Ophir Frieder 2002 TAND Queries Find all documents that contain at least X of the terms found in the QUERY relation: select i.docID from INDEX i, QUERY q where i.term = q.term group by i.docID having count (distinct (i.term)) >= X 26 © Ophir Frieder 2002 Relevance Ranking: Vector Space & Probabilistic Models 27 © Ophir Frieder 2002 Vector Space Model § Term Frequency (tfik): – number of occurrences of term tk in document i § Document Frequency (dfj ): – number of documents which contain tj § Inverse Document Frequency (idfj): – log(d/dfj) where d is the total number of documents § Notes: – idf is a measure of uniqueness of a term across the collection – tf is the frequency of a term in a given document 28 © Ophir Frieder 2002 Vector Space Model: Sample Relational Query List all documents in the order of their similarity coefficient where the coefficient is computed using the dot product. SELECT d.docID, d.docname, SUM(i.termcnt * t.idf * q.termcnt * t.idf) FROM DOCUMENT d, QUERY q, INDEX i, TERM t WHERE q.term = i.term AND q.term = t.term AND d.docID = i.docID GROUP BY d.docID, d.docname ORDER BY 3 DESC 29 © Ophir Frieder 2002 Similarity Coefficients § Several similarity coefficients based on the query vector X and the document vector Y are defined: t Inner Prod uct å xi × yi i=1 t å xiyi Cosine Coefficient i=1 t t 2 2 å xi · å yi i=1 i=1 30 © Ophir Frieder 2002 SQL for “Probabilistic” Similarity Measure num _ terms æ (numdocs-dfi )+.5ö æ 2.2*tfid ö å logç ÷*ç ÷*qtf i=1 è (dfi +.5) ø è.3+(.75*doclength/ avgdoclength)+tfid ø SELECT d.docID, d.docname, SUM( LOG(((NumDocs - t.df) + 0.5) / (t.df + 0.5)) * ((2.2*i.tf) / (.3 + ((.75 * d.DocLen)/AvgDocLen) + i.tf)) * q.termcnt ) FROM INDEX i, TERM t, DOCUMENT d, QUERY q WHERE i.term = t.term AND i.docID = d.docID AND t.term = q.term GROUP BY d.docID, d.docname ORDER BY 3; 31 © Ophir Frieder 2002 Relational Document Representation (Term Processing) DOCUMENT docID docname headline dateline 28 AP881214-0028 Stocks Up In Tokyo TOKYO (AP) INDEX TERM docID termcnt term term df idf 28 1 nikkei average 2265 1.08 28 2 stock closed 2208 1.08 28 1 average exchange 2790 1.00 28 1 closed nikkei 234 2.07 28 2 points points 1627 1.23 28 1 up stock 2674 1.00 28 1 tokyo tokyo 725 1.58 28
Recommended publications
  • Validated Products List, 1995 No. 3: Programming Languages, Database
    NISTIR 5693 (Supersedes NISTIR 5629) VALIDATED PRODUCTS LIST Volume 1 1995 No. 3 Programming Languages Database Language SQL Graphics POSIX Computer Security Judy B. Kailey Product Data - IGES Editor U.S. DEPARTMENT OF COMMERCE Technology Administration National Institute of Standards and Technology Computer Systems Laboratory Software Standards Validation Group Gaithersburg, MD 20899 July 1995 QC 100 NIST .056 NO. 5693 1995 NISTIR 5693 (Supersedes NISTIR 5629) VALIDATED PRODUCTS LIST Volume 1 1995 No. 3 Programming Languages Database Language SQL Graphics POSIX Computer Security Judy B. Kailey Product Data - IGES Editor U.S. DEPARTMENT OF COMMERCE Technology Administration National Institute of Standards and Technology Computer Systems Laboratory Software Standards Validation Group Gaithersburg, MD 20899 July 1995 (Supersedes April 1995 issue) U.S. DEPARTMENT OF COMMERCE Ronald H. Brown, Secretary TECHNOLOGY ADMINISTRATION Mary L. Good, Under Secretary for Technology NATIONAL INSTITUTE OF STANDARDS AND TECHNOLOGY Arati Prabhakar, Director FOREWORD The Validated Products List (VPL) identifies information technology products that have been tested for conformance to Federal Information Processing Standards (FIPS) in accordance with Computer Systems Laboratory (CSL) conformance testing procedures, and have a current validation certificate or registered test report. The VPL also contains information about the organizations, test methods and procedures that support the validation programs for the FIPS identified in this document. The VPL includes computer language processors for programming languages COBOL, Fortran, Ada, Pascal, C, M[UMPS], and database language SQL; computer graphic implementations for GKS, COM, PHIGS, and Raster Graphics; operating system implementations for POSIX; Open Systems Interconnection implementations; and computer security implementations for DES, MAC and Key Management.
    [Show full text]
  • UBS Release Notes Version 8.10
    Uniplex Release Notes Version 8.10 Manual version: 8.10 Document version: V1.0 COPYRIGHT NOTICE Copyright© 1987-1995 Uniplex Limited. All rights reserved. Unpublished - rights reserved under Copyright Laws. Licensed software and documentation. Use, copy and disclosure restricted by license agreement. ©Copyright 1989-1992, Bitstream Inc. Cambridge, MA. All rights reserved. U.S. Patent No. 5,009,435. ©Copyright 1991-1992, Bitstream Inc. Cambridge, MA. Portions copyright by Data General Corporation (1993) ©Gradient Technologies, Inc. 1991, 1992. ©Hewlett Packard 1988, 1990. Copyright© Harlequin Ltd. 1989, 1990, 1991, 1992. All rights reserved. ©Hewlett-Packard Company 1987-1993. All rights reserved. OpenMail (A.01.00) Copyright© Hewlett-Packard Company 1989, 1990, 1992. Portion Copyright Informix Software, Inc. IXI X.desktop Copyright© 1988-1993, IXI Limited, Cambridge, England. IXI Deskterm Copyright© 1988-1993, IXI Limited, Cambridge, England. Featuring MultiView DeskTerm Copyright© 1990-1992 JSB Computer Systems Ltd. Word for Word, Copyright, Mastersoft, Inc., 1986-1993. Tel: (602)-948-4888 Font Data copyright© The Monotype Corporation Plc 1989. All rights reserved. Copyright© 1990-1991, NBI, Inc. All rights reserved. Created using Netwise SystemTM software. Copyright 1984-1992 Soft-Art, Inc. All rights reserved. Copyrighted work incorporating TypeScalerTM, Copyright© Sun Microsystems Inc. 1989, 1987. All rights reserved. Copyright© VisionWare Ltd. 1989-1992. All Rights Reserved. ©1987-1993 XVT Software Inc. All rights reserved. Uniplex is a trademark of Redwood International Limited in the UK and other countries. onGO, Uniplex II PlusTM, Uniplex Advanced Office SystemTM, Uniplex Advanced GraphicsTM, Uniplex Business SoftwareTM, Uniplex DOSTM, Uniplex DatalinkTM and Uniplex WindowsTM are trademarks of Uniplex Limited. PostScript® is a registered trademark of Adobe Systems Inc.
    [Show full text]
  • DG Users Worldwide to Demon Tration Contact: Impliementation of INFOS Migrate to U IX
    '2 ;> o C') c:: C') 1;1:1 o o -=- N ~ IC Wby wait? Get the fmancial aiIcl operational ...."...", in software migration and are a benefits of Open Systems now. plus U/FOS leading international upplier of Open improved functionality with ROBMS-Ievel Sy tem tool to the Data General transaction security - and make mas ive financial community. Our UBB Universal Bu ine savings on redevelopment and retraining. Basic product - nearly 5.000 copies sold to To obtain further detail and arrange a per onal date - has enabled DG users worldwide to demon tration contact: impliementation of INFOS migrate to U IX. And our powerful U/SQL TRA SOFT I C, 1899 Power Ferry Road. Universal Structured Query Language • smooth. rapid migration of your Suite 420, Marietta, GA 30067, USA. operate on a variety of COBOL. BASIC COBOL. Fortran and PUI application Tel: (404) 933 1965 Fax: (404) 933 3464 and ROBMS file type . TRA SOFT LTO , a h Hou e, Oatchet Road, • full INFOS functionality Slough, SL3 7LR, England. • automatic data migration The same - only better Tel: 0753 692332 (Int + 44 753 692332) • choice of AViiO and other major UNIXs With U/FOS you can achieve a mooth. rapid Fax : 0753 69425 I (Int + 44 753 69425 I) migration of your I FOS application to • added functionality and better U IX. and also utilise powerful additional utilities features - including better data compres ion. • API for third party software products better checkpointing and ROBMS-Ievel data TRAN integrity and recovery. SQL reporting i also Portability and Productivity Huge savings on redevelopment planned.
    [Show full text]
  • Aviion SERVERS and WORKSTATIONS PLUS
    "Great products ••• fantastic support!" Buzz Van Santvoord, VP of Operations, Plow & Hearth, Inc. Buzz Van Santvoord, Plow & Hearth When you've got 100 telesales reps VP of Operations, and Peter Rice, processing 6,500 orders a day your President, with a selection of items computer system had better work! from their catalogue. Virginia ba ed, Plow & Hearth, Inc. i a $30 million mail order company, specializing in product for country living. Mailing over 20 million catalogue a year and with an e tabli hed ba e of over 1 million cu tomer , it computer y tems are critical to the onver ion of the AOS / VS OBOL program to ACUCOBOL company' ucce and growth. commenced in June and the ystem went live on a Data General A VUON 8500 in September, in plenty of time for the Chri tma ru h. To meet it pecific need Plow & Hearth had inve ted The AIM plu AVUON combination gave the bu ine a dramatic more than $500,000, over a period of 13 year , developing a boo t: "The much fa ter re pon e time improved morale and Data General MY-ba ed y tern in AOS{VS COBOL with 300 increa ed our tele ale capacity without adding a body, and the program and 70 INFOS databa e . But by early 1995 the extra order gained gave u our be t Chri tma ever." company realized that their MY9600 didn't have the capacity to make it through the bu y Chri tma ea on. Expert migration consultants Buzz Van Santvoord, Vice Pre ident of Operation explains: Thi ca e tudy illu trate how Tran oft' AIM offering i more "A move to Open Sy tern wa our preferred strategic direction.
    [Show full text]
  • Programming Languages, Database Language SQL, Graphics, GOSIP
    b fl ^ b 2 5 I AH1Q3 NISTIR 4951 (Supersedes NISTIR 4871) VALIDATED PRODUCTS LIST 1992 No. 4 PROGRAMMING LANGUAGES DATABASE LANGUAGE SQL GRAPHICS Judy B. Kailey GOSIP Editor POSIX COMPUTER SECURITY U.S. DEPARTMENT OF COMMERCE Technology Administration National Institute of Standards and Technology Computer Systems Laboratory Software Standards Validation Group Gaithersburg, MD 20899 100 . U56 4951 1992 NIST (Supersedes NISTIR 4871) VALIDATED PRODUCTS LIST 1992 No. 4 PROGRAMMING LANGUAGES DATABASE LANGUAGE SQL GRAPHICS Judy B. Kailey GOSIP Editor POSIX COMPUTER SECURITY U.S. DEPARTMENT OF COMMERCE Technology Administration National Institute of Standards and Technology Computer Systems Laboratory Software Standards Validation Group Gaithersburg, MD 20899 October 1992 (Supersedes July 1992 issue) U.S. DEPARTMENT OF COMMERCE Barbara Hackman Franklin, Secretary TECHNOLOGY ADMINISTRATION Robert M. White, Under Secretary for Technology NATIONAL INSTITUTE OF STANDARDS AND TECHNOLOGY John W. Lyons, Director - ;,’; '^'i -; _ ^ '’>.£. ; '':k ' ' • ; <tr-f'' "i>: •v'k' I m''M - i*i^ a,)»# ' :,• 4 ie®®;'’’,' ;SJ' v: . I 'i^’i i 'OS -.! FOREWORD The Validated Products List is a collection of registers describing implementations of Federal Information Processing Standards (FTPS) that have been validated for conformance to FTPS. The Validated Products List also contains information about the organizations, test methods and procedures that support the validation programs for the FTPS identified in this document. The Validated Products List is updated quarterly. iii ' ;r,<R^v a;-' i-'r^ . /' ^'^uffoo'*^ ''vCJIt<*bjteV sdT : Jr /' i^iL'.JO 'j,-/5l ':. ;urj ->i: • ' *?> ^r:nT^^'Ad JlSid Uawfoof^ fa«Di)itbiI»V ,, ‘ isbt^u ri il .r^^iytsrH n 'V TABLE OF CONTENTS 1.
    [Show full text]
  • Rise of Volumetric Data and Scale-Up Enterprise Computing
    Rise of Volumetric Data and Scale-Up Enterprise Computing Sponsored by: Atos, Numascale and Intel Mise en Scene This paper captures the continued collaboration among Intel, Atos and Numascale to enable cost effective Scale-Up ecosystem on x86 server platform. Intel is the technology provider (QuickPath Interconnect, Ultra Path Interconnect), Atos is the server platform provider (BullSequana S), Numascale is the node controller architecture provider (xNC). The volumetric data is rising fast, how to process 50+ Zettabytes of today’s data through efficient computing is not a small task to say the least. This paper describes the plan, methodology and the roadmap to address this critical computing need. It will introduce Atos platform with external Node Controller (xNC) architecture, jointly developed with Numascale and creating customer value from one generation of Scale-Up server system to the next. 02 The Rise of Volumetric Data Processing: AI, Machine Learning and Natural Language Depth.Scale.Latency.Gravity.Volume As the planet hurls through the galaxy, satellites circle the globe, we humans continue to consume, build, model and render data at unprecedented levels. 200 175 150 129.5 101 100 79.5 64.5 Data volume in zetabytes 50.5 50 41 33 26 18 12.5 15.5 6.5 9 2 5 0 2010 2011 2012 2013 2014 2015 2016 2017 2018* 2019* 2020* 2021* 2022* 2023* 2024* 2025* The current data forecast for 2025 is almost One-dimensional (1D), two-dimensional (2D), more bits all help when using AI data models 175ZB (Zettabytes). The forecasts have three-dimensional (3D) and four-dimensional and creative Data Scientists to build next been traditionally very accurate within 2-5% (4D) data creation have changed the generation models to understand virology, over long-time horizons in my experience.
    [Show full text]
  • Information Library for Solaris 2.6 (Intel Platform Edition)
    Information Library for Solaris 2.6 (Intel Platform Edition) Sun Microsystems, Inc. 2550 Garcia Avenue Mountain View, CA 94043-1100 U.S.A. Part No: 805-0037–10 August 1997 Copyright 1997 Sun Microsystems, Inc. 901 San Antonio Road, Palo Alto, California 94303-4900 U.S.A. All rights reserved. This product or document is protected by copyright and distributed under licenses restricting its use, copying, distribution, and decompilation. No part of this product or document may be reproduced in any form by any means without prior written authorization of Sun and its licensors, if any. Third-party software, including font technology, is copyrighted and licensed from Sun suppliers. Parts of the product may be derived from Berkeley BSD systems, licensed from the University of California. UNIX is a registered trademark in the U.S. and other countries, exclusively licensed through X/Open Company, Ltd. Sun, Sun Microsystems, the Sun logo, SunSoft, SunDocs, SunExpress, , JavaSoft, SunOS, Solstice, SunATM, Online: DiskSuite, JumpStart, AnswerBook, AnswerBook2, Java, HotJava, Java Developer Kit, Enterprise Agents, OpenWindows, Power Management, XGL, XIL, SunVideo, SunButtons, SunDial, PEX, NFS, Admintools, AdminSuite, AutoClient, PC Card, ToolTalk, DeskSet, VISUAL, Direct Xlib, CacheFS, WebNFS, Web Start Solaris, and Solstice DiskSuite are trademarks, registered trademarks, or service marks of Sun Microsystems, Inc. in the U.S. and other countries. All SPARC trademarks are used under license and are trademarks or registered trademarks of SPARC International, Inc. in the U.S. and other countries. Products bearing SPARC trademarks are based upon an architecture developed by Sun Microsystems, Inc. PostScript is a trademark of Adobe Systems, Incorporated, which may be registered in certain juridisdictions.
    [Show full text]
  • IBM Enterprise Storage Server Multiplatform Storage Solution Provides Superior Performance, Function, Scalability, and Availability
    Hardware Announcement March 28, 2000 IBM Enterprise Storage Server Multiplatform Storage Solution Provides Superior Performance, Function, Scalability, and Availability Overview Key Prerequisites At a Glance e-business continues to drive Four hundred gigabytes, or more, of storage at an ever-increasing rate. cost-effective, high-performance The IBM Enterprise Storage Server e-commerce applications are storage capacity attached to one or is your ideal SAN solution. deployed on heterogeneous servers more of the following platforms: • and require high-function, Increased performance and high-performance, and scalable • IBM System/390 with OS/390 , scalability with two new models VM, VSE, or TPF with 8 GB or 16 GB of cache storage servers to meet the • demanding requirements of • IBM AS/400 with OS/400 Additional 16 standard capacity • IBM RS/6000 and IBM RS/6000 configurations Enterprise Resource Planning and • Business Intelligence applications. SP with AIX Concurrent support for all your The IBM Enterprise Storage Server • IBM NUMA-Q with DYNIX/ptx major server platforms, has set new standards in function, • IBM Netfinity and PC servers including OS/390, OS/400, performance, and scalability in these with Windows NT , Windows Windows NT, Windows 2000, most challenging environments and 2000, or Novell NetWare NetWare, and many varieties of is now enhanced to provide: • Hewlett-Packard 9000 servers UNIX with HP-UX • Native Fibre Channel • Direct connection to Storage Area • Sun Enterprise, Ultra, and SPARC attachment capability for direct
    [Show full text]
  • Review of Visualization Systems Advisory Group on Computer
    Review of Visualization Systems Advisory Group on Computer Graphics Technical Report K. W. Brodlie, J. R. Gallop, A. J. Grant, J. Haswell, W. T. Hewitt, S. Larkin, C. C. Lilley, H. Morphet, A. Townend, J. Wood, H. Wright 2nd Edition Number: 9 Technical Report Series February 1995 Preface This technical report arose from the work of a working group of the Advisory Group on Computer Graphics (AGOCG). The following people took part in the study, attended meetings and compiled this report: K W Brodlie School of Computer Studies, University of Leeds J Gallop (Chairman) Rutherford Appleton Laboratory, DRAL A J Grant Computer Graphics Unit, Manchester Computing Centre J Haswell Rutherford Appleton Laboratory, DRAL W T Hewitt Computer Graphics Unit, Manchester Computing Centre S Larkin Computer Graphics Unit, Manchester Computing Centre P Lever Computer Graphics Unit, Manchester Computing Centre C C Lilley Computer Graphics Unit, Manchester Computing Centre H Morphet Computer Graphics Unit, Manchester Computing Centre A Townend Computing Services, Keyworth, NERC J Wood School of Computer Studies, University of Leeds H Wright School of Computer Studies, University of Leeds While every effort has been made to ensure that this document is accurate it is presented for infor- mation only. It is not guaranteed for any particular purpose and neither the editor nor the contrib- utors nor their institutions nor the Advisory Group on Computer Graphics (AGOCG) accept any responsibility. 1995 AGOCG Published by the Advisory Group on Computer Graphics (AGOCG). c/o Dr. Anne Mumford, Computer Centre, Loughborough University of Technology, Loughbor- ough, Leics LE11 3TU, UK Tel: 01509 222312, Fax: 01509 267477, Email: [email protected] URL: http://www.agocg.ac.uk:8080/agocg/ AGOCG Technical Reports, Proceedings and Training Materials may be copied and used for edu- cational purposes as defined in the CHEST Code of Conduct.
    [Show full text]
  • Tivoli TEC Adapters 3.6.1 Release Notes Addendum
    Tivoli TEC Adapters 3.6.1 Release Notes Addendum for Data General DG/UX, DEC-NT, Digital UNIX, NCR UNIX SVR4, Red Hat Linux-ix86, OpenServer-ix86, OpenStep4-ix86, SCO UnixWare, Sequent DYNIX/ptx, SGI IRIX, Siemens Nixdorf Reliant UNIX, and Sun Solaris-ix86 May 31, 2000 Tivoli TEC Adapters 3.6.1 for Data General DG/UX, DEC-NT, Digital UNIX, NCR UNIX SVR4, Red Hat Linux-ix86, OpenServer-ix86, OpenStep4-ix86, SCO UnixWare, Sequent DYNIX/ptx, SGI IRIX, Siemens Nixdorf Reliant UNIX, and Sun Solaris-ix86 Release Notes Addendum (May 31, 2000) Copyright Notice Copyright © 2000 by Tivoli Systems, an IBM Company, including this documentation and all software. All rights reserved. May only be used pursuant to a Tivoli Systems Software License Agreement or Addendum for Tivoli Products to IBM Customer or License Agreement. No part of this publication may be reproduced, transmitted, transcribed, stored in a retrieval system, or translated into any computer language, in any form or by any means, electronic, mechanical, magnetic, optical, chemical, manual, or otherwise, without prior written permission of Tivoli Systems. The document is not intended for production and is furnished “as is” without warranty of any kind. All warranties on this document are hereby disclaimed including the warranties of merchantability and fitness for a particular purpose. Note to U.S. Government Users—Documentation related to restricted rights—Use, duplication or disclosure is subject to restrictions set forth in GSA ADP Schedule Contract with IBM Corporation. Trademarks The following product names are trademarks of Tivoli Systems or IBM Corporation: AIX, IBM, OS/2, RS/6000, Tivoli Management Environment, TME 10, TME 10 Framework, TME 10 Distributed Monitoring, TME 10 Inventory, TME 10 Enterprise Console, TME 10 Remote Control, and TME 10 Software Distribution.
    [Show full text]
  • POSIX Programmer's Guide Writing Portable UNIX Programs with the POSIX.1 Standard
    Page iii POSIX Programmer's Guide Writing Portable UNIX Programs with the POSIX.1 Standard Donald A. Lewine Data General Corporation O'Reilly & Associates, Inc 103 Morris Street, Suite A Sebastopol, CA 95472 Page iv POSIX Programmer's Guide by Donald A. Lewine Editor: Dale Dougherty Copyright © 1991 O'Reilly & Associates, Inc. All rights reserved Printed in the United States of America Printing History April 1991: First edition December 1991: Minor corrections. Appendix G added. July 1992: Minor corrections. November 1992: Minor corrections. March 1994: Minor corrections and updates. NOTICE Portions of this text have been reprinted from IEEE Std 1003.1-1988, IEEE Standard Portable Operating System for Computer Environments, copyright © 1988 by the Institute of Electrical and Electronics Engineers, Inc., and IEEE Std 1003.1-1990, Information Technology—Portable Operating System Interface (POSIX)—Part 1: System Application Program Interface (API) [C Language], copyright © 1990 by the Institute of Electrical and Electronics Engineers, Inc., with the permission of the IEEE Standards Department. Nutshell Handbook and the Nutshell Handbook logo are registered trademarks of O'Reilly & Associates, Inc. Many of the designations used by manufacturers and sellers to distinguish their products are claimed as trademarks. Where those designations appear in this book, and O'Reilly and Associates, Inc. was aware of a trademark claim, the designations have been printed in caps or initial caps. While every precaution has been taken in the preparation of this book, the publisher assumes no responsibility for errors or omissions, or for damages resulting from the use of the information contained herein. Please address comments and questions in care of the publisher: O'Reilly & Associates, Inc.
    [Show full text]
  • Installation Notes
    MC68020/MC68881 HP-UX MAINSAIL® . Installation Notes Last revision: 13 January 1989 Copyright © 1992, by XIDAK, Inc., Palo Alto, California. All right<j reserved. The software described herein is the property of XIDAK, Inc., and is a confidential trade secret of XIDAK. The software described herein may be used only under license from XIDAK. MAINSAIL is a registered trademark ofXIDAK, Inc. MAINDEBUO, MAINEDIT, MAINMEDIA, MAINPM, Structure Blaster, Orion, and SQL/D are trademarks of XIDAK, Inc. CONCENfRIX is a trademark of Alliant Computer Systems Corporation. Amdahl, Universal Time-Sharing System, and UTS are trademarks of Amdahl Corporation. Aegis, Apollo, DOMAIN, OMR, OPR, and Series 10000 are trademarks of Apollo Computer Inc. UNIX and UNIX System V are trademarks of AT&T. AViiON, DASHER, DO/UX, ECLIPSE, ECLIPSE MV/4000, ECLIPSE MV/8000, ECLIPSE MV/IOOOO, and ECLIPSE MV/20000 are trademarks of Data General Corporation. DEC, PDP, TOPS-IO, TOPS-20, VAX-H, VAX, MicroVAX, MicroVMS, ULTRIX-32, and V AX/VMS are trademarks of Digital Equipment Corporation. The KERMIT File Transfer Protocol was named after the star ofTIIE MUPPET SHOW television series. The name is used by permission of Henson Associates, Inc. HP-UX and Vectra are trademarks of Hewlett-Packard Company. Intel is a trademark of Intel Corporation. CLIPPER, CLIX, Intergraph, InterPro 32, and InterPro 32C are trademarks of Intergraph Corporation. IBM is a registered trademark of International Business Machines Corporation. AIX, RISC System/6000, and System/370 are trademarks of International Business Machines Corporation. MC68000, M68000, MC68020, and MC68881 are trademarks of Motorola Semiconductor Products Inc. ORACLE is a registered trademark of Oracle Corporation.
    [Show full text]