Siêu thị PDFTải ngay đi em, trời tối mất

Thư viện tri thức trực tuyến

Kho tài liệu với 50,000+ tài liệu học thuật

© 2023 Siêu thị PDF - Kho tài liệu học thuật hàng đầu Việt Nam

Tài liệu Parallel R pptx
PREMIUM
Số trang
122
Kích thước
5.7 MB
Định dạng
PDF
Lượt xem
1292

Tài liệu Parallel R pptx

Nội dung xem thử

Mô tả chi tiết

www.it-ebooks.info

www.it-ebooks.info

Parallel R

Q. Ethan McCallum and Stephen Weston

Beijing Cambridge Farnham Köln Sebastopol Tokyo

www.it-ebooks.info

Parallel R

by Q. Ethan McCallum and Stephen Weston

Copyright © 2012 Q. Ethan McCallum and Stephen Weston. All rights reserved.

Printed in the United States of America.

Published by O’Reilly Media, Inc., 1005 Gravenstein Highway North, Sebastopol, CA 95472.

O’Reilly books may be purchased for educational, business, or sales promotional use. Online editions

are also available for most titles (http://my.safaribooksonline.com). For more information, contact our

corporate/institutional sales department: (800) 998-9938 or corporate@oreilly.com.

Editors: Mike Loukides and Meghan Blanchette

Production Editor: Kristen Borg

Proofreader: O’Reilly Production Services

Cover Designer: Karen Montgomery

Interior Designer: David Futato

Illustrator: Robert Romano

Revision History for the First Edition:

2011-10-21 First release

See http://oreilly.com/catalog/errata.csp?isbn=9781449309923 for release details.

Nutshell Handbook, the Nutshell Handbook logo, and the O’Reilly logo are registered trademarks of

O’Reilly Media, Inc. Parallel R, the image of a rabbit, and related trade dress are trademarks of O’Reilly

Media, 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 Media, 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 and authors assume

no responsibility for errors or omissions, or for damages resulting from the use of the information con￾tained herein.

ISBN: 978-1-449-30992-3

[LSI]

1319202138

www.it-ebooks.info

Table of Contents

Preface . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . vii

1. Getting Started . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1

Why R? 1

Why Not R? 1

The Solution: Parallel Execution 2

A Road Map for This Book 2

What We’ll Cover 3

Looking Forward… 3

What We’ll Assume You Already Know 3

In a Hurry? 4

snow 4

multicore 4

parallel 4

R+Hadoop 4

RHIPE 5

Segue 5

Summary 5

2. snow . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7

Quick Look 7

How It Works 7

Setting Up 8

Working with It 9

Creating Clusters with makeCluster 9

Parallel K-Means 10

Initializing Workers 12

Load Balancing with clusterApplyLB 13

Task Chunking with parLapply 15

Vectorizing with clusterSplit 18

Load Balancing Redux 20

iii

www.it-ebooks.info

Functions and Environments 23

Random Number Generation 25

snow Configuration 26

Installing Rmpi 29

Executing snow Programs on a Cluster with Rmpi 30

Executing snow Programs with a Batch Queueing System 32

Troubleshooting snow Programs 33

When It Works… 35

…And When It Doesn’t 36

The Wrap-up 36

3. multicore . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 37

Quick Look 37

How It Works 38

Setting Up 38

Working with It 39

The mclapply Function 39

The mc.cores Option 39

The mc.set.seed Option 40

Load Balancing with mclapply 42

The pvec Function 42

The parallel and collect Functions 43

Using collect Options 44

Parallel Random Number Generation 46

The Low-Level API 47

When It Works… 49

…And When It Doesn’t 49

The Wrap-up 49

4. parallel . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 51

Quick Look 52

How It Works 52

Setting Up 52

Working with It 53

Getting Started 53

Creating Clusters with makeCluster 54

Parallel Random Number Generation 55

Summary of Differences 57

When It Works… 58

…And When It Doesn’t 58

The Wrap-up 58

iv | Table of Contents

www.it-ebooks.info

5. A Primer on MapReduce and Hadoop . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 59

Hadoop at Cruising Altitude 59

A MapReduce Primer 60

Thinking in MapReduce: Some Pseudocode Examples 61

Calculate Average Call Length for Each Date 62

Number of Calls by Each User, on Each Date 62

Run a Special Algorithm on Each Record 63

Binary and Whole-File Data: SequenceFiles 63

No Cluster? No Problem! Look to the Clouds… 64

The Wrap-up 66

6. R+Hadoop . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 67

Quick Look 67

How It Works 67

Setting Up 68

Working with It 68

Simple Hadoop Streaming (All Text) 69

Streaming, Redux: Indirectly Working with Binary Data 72

The Java API: Binary Input and Output 74

Processing Related Groups (the Full Map and Reduce Phases) 79

When It Works… 83

…And When It Doesn’t 83

The Wrap-up 84

7. RHIPE . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 85

Quick Look 85

How It Works 85

Setting Up 86

Working with It 87

Phone Call Records, Redux 87

Tweet Brevity 91

More Complex Tweet Analysis 96

When It Works… 98

…And When It Doesn’t 99

The Wrap-up 100

8. Segue . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 101

Quick Look 101

How It Works 102

Setting Up 102

Working with It 102

Model Testing: Parameter Sweep 102

When It Works… 105

Table of Contents | v

www.it-ebooks.info

…And When It Doesn’t 105

The Wrap-up 106

9. New and Upcoming . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 107

doRedis 107

RevoScale R and RevoConnectR (RHadoop) 108

cloudNumbers.com 108

vi | Table of Contents

www.it-ebooks.info

Preface

Conventions Used in This Book

The following typographical conventions are used in this book:

Italic

Indicates new terms, URLs, email addresses, filenames, and file extensions.

Constant width

Used for program listings, as well as within paragraphs to refer to program elements

such as variable or function names, databases, data types, environment variables,

statements, and keywords.

Constant width bold

Shows commands or other text that should be typed literally by the user.

Constant width italic

Shows text that should be replaced with user-supplied values or by values deter￾mined by context.

This icon signifies a tip, suggestion, or general note.

This icon indicates a warning or caution.

Using Code Examples

This book is here to help you get your job done. In general, you may use the code in

this book in your programs and documentation. You do not need to contact us for

permission unless you’re reproducing a significant portion of the code. For example,

writing a program that uses several chunks of code from this book does not require

permission. Selling or distributing a CD-ROM of examples from O’Reilly books does

vii

www.it-ebooks.info

require permission. Answering a question by citing this book and quoting example

code does not require permission. Incorporating a significant amount of example code

from this book into your product’s documentation does require permission.

We appreciate, but do notrequire, attribution. An attribution usually includesthe title,

author, publisher, and ISBN. For example: “Parallel R by Q. Ethan McCallum and

Stephen Weston (O'Reilly). Copyright 2012 Q. Ethan McCallum and Stephen Weston,

978-1-449-30992-3.”

If you feel your use of code examplesfalls outside fair use orthe permission given above,

feel free to contact us at permissions@oreilly.com.

Safari® Books Online

Safari Books Online is an on-demand digital library that lets you easily

search over 7,500 technology and creative reference books and videos to

find the answers you need quickly.

With a subscription, you can read any page and watch any video from ourlibrary online.

Read books on your cell phone and mobile devices. Access new titles before they are

available for print, and get exclusive access to manuscripts in development and post

feedback for the authors. Copy and paste code samples, organize your favorites, down￾load chapters, bookmark key sections, create notes, print out pages, and benefit from

tons of other time-saving features.

O’Reilly Media has uploaded this book to the Safari Books Online service. To have full

digital access to this book and others on similar topics from O’Reilly and other pub￾lishers, sign up for free at http://my.safaribooksonline.com.

How to Contact Us

Please address comments and questions concerning this book to the publisher:

O’Reilly Media, Inc.

1005 Gravenstein Highway North

Sebastopol, CA 95472

800-998-9938 (in the United States or Canada)

707-829-0515 (international or local)

707-829-0104 (fax)

We have a web page for this book, where we list errata, examples, and any additional

information. You can access this page at:

http://oreilly.com/catalog/0636920021421

To comment or ask technical questions about this book, send email to:

bookquestions@oreilly.com

viii | Preface

www.it-ebooks.info

For more information about our books, courses, conferences, and news, see our website

at http://www.oreilly.com.

Find us on Facebook: http://facebook.com/oreilly

Follow us on Twitter: http://twitter.com/oreillymedia

Watch us on YouTube: http://www.youtube.com/oreillymedia

Acknowledgments

There are only two names on the cover, but a host of people made this book possible.

We would like to thank the entire O’Reilly team for their efforts. They provided such

a smooth process that we were able to focus on just the writing. A special thanks goes

to our editors, Mike Loukides and Meghan Blanchette, for their guidance and support.

We would also like to thank our review team. The following people generously dedi￾cated their time and energy to read this book in its early state, and their feedback helped

shape the text into the finished product you’re reading now:

Robert Bjornson

Nicholas Carriero

Jonathan Seidman

Paul Teetor

Ramesh Venkataramaiah

Jed Wing

Any errors you find in this book belong to us, the authors.

Most of all we thank you, the reader, for your interest in this book. We set out to create

the guidebook we wish we’d had when we first tried to give R that parallel, distributed

boost. R work is research work, best done with minimal distractions. We hope these

chapters help you get up to speed quickly, so you can get R to do what you need with

minimal detour from the task at hand.

Q. Ethan McCallum

“You like math? Oh, you need to talk to Mike. Let me introduce you.” I didn’t realize

it at the time, but those words were the start of this project. Really. A chance encounter

with Mike Loukides led to emails and phone calls and, before I knew it, we’d laid the

groundwork for a new book. So first and foremost, a hearty thanks to Betsy and Laurel,

who made my connection to Mike.

Conversations with Mike led me to my co-author, Steve Weston. I’m pleased and flat￾tered that he agreed to join me on this adventure.

Thanks as well to the gang at Cafe les Deux Chats, for providing a quiet place to work.

Preface | ix

www.it-ebooks.info

Stephen Weston

This was my first book project,so I’d like to thank my co-author and editorsfor putting

up with my freshman confusion and mistakes. They were very graciousthroughout the

project.

I’m very grateful to Nick, Rob, and Jed for taking the time to read my chapters and help

me not to make a fool of myself. I also want to thank my wife Diana and daughter Erica

for proofreading material that wasn’t on their preferred reading lists.

Finally, I’d like to thank all the authors of the packages that we discuss in this book. I

had a lot of fun reading the source for all three of the packages that I wrote about. In

particular, I’ve always loved the snow source code, which I studied when first learning

to program in R.

x | Preface

www.it-ebooks.info

Tải ngay đi em, còn do dự, trời tối mất!