cowtowncoderTatu Saloranta
Ok: I know (really I do) there are tons of message queues around. But would anyone be interested in an SQS replacement, open source, distr?
cowtowncoderTatu Saloranta
@flangy that is one, both in good and bad (no JMS, just simple queues). Proper distr, DR; open source (just wrt commercial ones).
cowtowncoderTatu Saloranta
@flangy Other things include big payloads (similar to storage systems). Possibly more efficient, multi-tenant (may be shared PaaS or private
cowtowncoderTatu Saloranta
@flangy Yes. And as background, core would based on a distributed store I am writing at work; once it is done, most of core is reusable
cowtowncoderTatu Saloranta
@sbtourist this was my epiphany on the plane: what I am working on has secondary, more interesting uses. Unless I miss something obvious.
skamilleCamille Fournier
@sbtourist @cowtowncoder Now I'm curious what makes a decent distributed MQ and why none of the seemingly millions of solns is any good
cowtowncoderTatu Saloranta
@skamille @sbtourist One analogy that might help is SQL/noSQL, JMS/SQS distinction... rich, non-distributed feature set vs distributed
cowtowncoderTatu Saloranta
@skamille @sbtourist but granted, in my case, there's also the part "what I have would make a decent MQ", which is why I am asking... :-)
skamilleCamille Fournier
@cowtowncoder @sbtourist Mmmm but don't things like kafka and hedwig already attack this problem? Lots of people seem to like kafka
cowtowncoderTatu Saloranta
@skamille @sbtourist There's enough room for more than just one system. As I said, lots of respect for Kafka, but its focus may be different
strlenAlex Feinberg
@stuhood @cowtowncoder @skamille @sbtourist Are Hedwig guarantees per topic/partition (I am only familiar in-depth with BookKeeper so far)?
strlenAlex Feinberg
@stuhood @cowtowncoder @skamille @sbtourist In K partition of topic resides on 1 box so you get TCP order guarantee for topic w/ 1 partition
strlenAlex Feinberg
@johnxorz @stuhood @cowtowncoder @skamille @sbtourist Ah, BK striping is taken advantage of for greater throughput with per-topic ordering?
stuhoodStu Hood
@strlen @johnxorz @cowtowncoder @skamille @sbtourist Could theoretically use the multi-region support for local striping instead. Neat idea.