Już za miesiąc GeeCON w KrakowieGeeCON in Kraków, only one month left

Rejestracja trwa. W tym roku ta – jedna z najważniejszych w Polsce – konferencja javowa świętuje swoje piąte urodziny. Część naszego zespołu wybiera się do Krakowa w dniach 15-17 maja. A Wy?Registration is going on. One of the most important in Poland Java conference celebrates 5th birthday this year. A part of TouK team will be there 15-17 May, will you?

Rejestracja trwa. W tym roku ta – jedna z najważniejszych w Polsce – konferencja javowa świętuje swoje piąte urodziny. Część naszego zespołu wybiera się do Krakowa 15-17 maja. A Wy? GeeCON 2013

Registration is going on. One of the most important in Poland Java conference celebrates 5th birthday this year. A part of TouK team will be there 15-17 May, will you?


GeeCON 2013

You May Also Like

Distributed scans with HBase

HBase is by design a columnar store, that is optimized for random reads. You just ask for a row using rowId as an identifier and you get your data instantaneously. Performing a scan on part or whole table is a completely different thing. First of all, it is sequential. Meaning it is rather slow, because it doesn't use all the RegionServers at the same time. It is implemented that way to realize the contract of Scan command - which has to return results sorted by key. So, how to do this efficiently?HBase is by design a columnar store, that is optimized for random reads. You just ask for a row using rowId as an identifier and you get your data instantaneously. Performing a scan on part or whole table is a completely different thing. First of all, it is sequential. Meaning it is rather slow, because it doesn't use all the RegionServers at the same time. It is implemented that way to realize the contract of Scan command - which has to return results sorted by key. So, how to do this efficiently?

OSGi Blueprint visualization

What is blueprint?Blueprint is a dependency injection framework for OSGi bundles. It could be written by hand or generated using Blueprint Maven Plugin. Blueprint file is only an XML describing beans, services and references. Each OSGi bundle could hav...