Po raz kolejny organizujemy wakacyjny staż w TouK!

Zapraszamy studentów po 3 roku, w 2 miesiące (1.07-30.08) stworzymy system, wynagrodzenie 3300 brutto/mc.; umowa o dzieło
  • zapraszamy studentów po 3 roku
  • w 2 miesiące (1.07-30.08) stworzymy system
  • wynagrodzenie 3300 brutto/mc.; umowa o dzieło
  • wygodny dojazd
  • dajemy możliwość nauki dobrych praktyk programistycznych od doświadczonych developerów
  • możliwość dalszej współpracy w ciągu roku
  • prześlij CV z opisem ciekawych projektów przy których pracowałeś na uczelni, albo poza nią na adres praca@touk.pl do 26.05 z dopiskiem staż; do 7.06 dostaniesz informację zwrotną
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?