vote up 4 vote down star
5

I know a little bit about this but wanted some more information. What are they and how do they work?

Context happens to be SQL Server

flag

54% accept rate
Might want to edit the question and title to emphasize that you're asking in the context of SQLServer. – Toybuilder Oct 6 '08 at 20:29

8 Answers

vote up 10 vote down

According to Wikipedia:

[...] A traditional pipe is "unnamed" because it exists anonymously and persists only for as long as the process is running. A named pipe is system-persistent and exists beyond the life of the process and must be "unlinked" or deleted once it is no longer being used. Processes generally attach to the named pipe (usually appearing as a file) to perform IPC (inter-process communication).

link|flag
vote up 3 vote down

Inter-process communication (mostly) for Windows Applications. Similar to using sockets to communicate between applications in Unix.

MSDN

link|flag
Named pipes appeared in V6 or AT&T Unix circa 1975. – dmckee Oct 6 '08 at 18:37
Doh! That's a little before Microsoft. As far as I know they aren't used often in Unix/Linux applications. True? – Ken Oct 6 '08 at 18:40
A couple of my codes use them. Does that count? – dmckee Oct 6 '08 at 18:41
I use a named pipe for my random signature generator - since mail and usenet apps expect a file named $HOME/.signature to have your signature, my program creates .signature as a named pipe and writes random quotations to it. – Paul Tomblin Oct 6 '08 at 18:45
It sure does count :) – Ken Oct 6 '08 at 18:50
vote up 2 vote down

Pipes are a way of streaming data between applications. Under Linux I use this all the time to stream the output of one process into another. This is anonymous because the destination app has no idea where that input-stream comes from. It doesn't need to.

A named pipe is just a way of actively hooking onto an existing pipe and hoovering-up its data. It's for situations where the provider doesn't know what clients will be eating the data.

link|flag
vote up -1 vote down

Named pipes is a windows system for inter-process communication. In the case of SQL server, if the server is on the same machine as the client, then it is possible to use named pipes to tranfer the data, as opposed to TCP/IP.

link|flag
It's not Windows-only, as your answer makes it appear. As others have already noted, named pipes have been around since the 70s in UNIX, generally with the appearance of being a special file. Upvoted anyway, but fix your answer. – Chris Charabaruk Oct 6 '08 at 18:41
Named pipes also work over a network – George Tsiokos Oct 6 '08 at 18:51
vote up 2 vote down

Compare

echo "test" | wc

to

mkdnod apipe p
wc apipe

wc will block until

echo "test" > apipe

executes

link|flag
vote up 5 vote down

Linux Pipes
First In First Out (FIFO) interproccess communication mechanism.

Unnamed Pipes
On the command line, represented by a "|" between two commands.

Named Pipes
A FIFO special file. Once created, you can use the pipe just like a normal file(open, close, write, read, etc).

To create a named pipe, called "myPipe", from the command line (man page):

mkfifo myPipe

To create a named pipe from c, where "pathname" is the name you would like the pipe to have and "mode" contains the permissions you want the pipe to have (man page):

#include <sys/types.h>
#include <sys/stat.h>
int mkfifo(const char *pathname, mode_t mode);
link|flag
vote up 12 vote down

Both on Windows and POSIX systems, named-pipes provide a way for inter-process communication to occur among processes running on the same machine. What named pipes give you is a way to send your data without having the performance penalty of involving the network stack.

Just like you have a server listening to a IP address/port for incoming requests, a server can also set up a named pipe which can listen for requests. In either cases, the client process (or the DB access library) must know the specific address (or pipe name) to send the request. Often, a commonly used standard default exists (much like port 80 for HTTP, SQL server uses port 1433 in TCP/IP; \\.\pipe\sql\query for a named pipe).

By setting up additional named pipes, you can have multiple DB servers running, each with its own request listeners.

The advantage of named pipes is that it is usually much faster, and frees up network stack resources.

-- BTW, in the Windows world, you can also have named pipes to remote machines -- but in that case, the named pipe is transported over TCP/IP, so you will lose performance. Use named pipes for local machine communication.

link|flag
vote up 8 vote down

Unix and Windows both have things called "Named pipes", but they behave differently. On Unix, a named pipe is a one-way street which typically has just one reader and one writer - the writer writes, and the reader reads, you get it?

On Windows, the thing called a "Named pipe" is an IPC object more like a TCP socket - things can flow both ways and there is some metadata (You can obtain the credentials of the thing on the other end etc).

Unix named pipes appear as a special file in the filesystem and can be accessed with normal file IO commands including the shell. Windows ones don't, and need to be opened with a special system call (after which they behave mostly like a normal win32 handle).

Even more confusing, Unix has something called a "Unix socket" or AF_UNIX socket, which works more like (but not completely like) a win32 "named pipe", being bidirectional.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.