Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
659 views
in Technique[技术] by (71.8m points)

redis bulk import using --pipe

I'm trying to import one million lines of redis commands, using the --pipe feature.

redis_version:2.8.1

cat file.txt | redis-cli --pipe

This results in the following error:

Error reading from the server: Connection reset by peer

Does anyone know what I'm doing wrong?

file.txt contains, for example,

lpush name joe
lpush name bob

edit: I now see there's probably a special format(?) for using pipe mode - http://redis.io/topics/protocol

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

The first point is that the parameters have to be double-quoted. The documentation is somewhat misleading on this point.

So a working syntax is :

lpush "name" "joe"
lpush "name" "bob"

The second point is that each line has to end by an and not just by . To fix that point, you just have to convert your file with the command unix2dos

like : unix2dos file.txt

Then you can import your file using cat file.txt | src/redis-cli --pipe

This worked for me.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...