Andreas, > hi there, in my cluster i want to have my queuing system based on zeromq > however i want to use as persistent storage of the messages the hdfs. do > you have any ideas how to start with?
0MQ is a messaging fabric, not a storage. Thus you should build you persistence layer on top of 0MQ. I.e. get message from database, send it to 0MQ socket. And: recv message from 0MQ socket, store it in database. Martin _______________________________________________ zeromq-dev mailing list [email protected] http://lists.zeromq.org/mailman/listinfo/zeromq-dev
