IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Autres Discussion :

Que pensez vous de la solution Open Source Hadoop et de son Distributed Filesystem (HDFS) ?


Sujet :

Autres

  1. #1
    Inactif  
    Profil pro
    Inscrit en
    Mai 2006
    Messages
    2 189
    Détails du profil
    Informations personnelles :
    Âge : 43
    Localisation : Suisse

    Informations forums :
    Inscription : Mai 2006
    Messages : 2 189
    Points : 2 336
    Points
    2 336
    Par défaut Que pensez vous de la solution Open Source Hadoop et de son Distributed Filesystem (HDFS) ?
    Hadoop (soutenu par IBM, Yahoo, et Apache notamment) reprend les travaux des recherches publiés par google sur le model MapReduce.

    La prochaine conférence de Hadoop Summit '09 (10 juin) : http://developer.yahoo.com/events/hadoopsummit09/

    Qui utilise Hadoop ?

    Résumé de ce qu'est le modèle MapReduce : http://labs.google.com/papers/mapreduce.html (Document librement utilisable )

    C'est un peu un fourre tout mais voici des critiques sur l'utilisation de MapReduce (ca date un peu) : http://www.databasecolumn.com/2008/0...step-back.html

    Et une petite présentation des BigTable de HBase (sous projet Hadoop) : http://wiki.apache.org/hadoop-data/a..._ets_clean.pdf

    A lire aussi :
    Le livre Pro Hadoop est disponible chez Apress
    Le cloud de Sun va-t-il s'appuyer sur la solution OpenSource Hadoop ?
    Microsoft Azure favorise l'interopérabilité avec la mise à disposition de jdotnetservices

  2. #2
    Inactif  
    Profil pro
    Inscrit en
    Mai 2006
    Messages
    2 189
    Détails du profil
    Informations personnelles :
    Âge : 43
    Localisation : Suisse

    Informations forums :
    Inscription : Mai 2006
    Messages : 2 189
    Points : 2 336
    Points
    2 336
    Par défaut
    Pour le plaisir une publication d'un googler http://www.morganclaypool.com/doi/pd...1Y200905CAC006

    Un extrait qui me semble important quand aux choix d'une décision applicative et ouverte face à l'utilisation d'une interface d'un constructeur particulier lier au matériel

    1.6.1 Storage
    Disk drives are connected directly to each individual server and managed by a global distributed
    file system (such as Google’s GFS [31]) or they can be part of Network Attached Storage (NAS)
    devices that are directly connected to the cluster-level switching fabric. A NAS tends to be a simpler
    solution to deploy initially because it pushes the responsibility for data management and integrity to
    a NAS appliance vendor. In contrast, using the collection of disks directly attached to server nodes
    requires a fault-tolerant file system at the cluster level. This is difficult to implement but can lower
    hardware costs (the disks leverage the existing server enclosure) and networking fabric utilization
    (each server network port is effectively dynamically shared between the computing tasks and the
    file system). The replication model between these two approaches is also fundamentally different. A
    NAS provides extra reliability through replication or error correction capabilities within each appliance,
    whereas systems like GFS implement replication across different machines and consequently
    FIGURE 1.1: Typical elements in warehouse-scale systems: 1U server (left), 7´ rack with Ethernet
    switch (middle), and diagram of a small cluster with a cluster-level Ethernet switch/router (right).
    int roducti on will use more networking bandwidth to complete write operations. However, GFS-like systems
    are able to keep data available even after the loss of an entire server enclosure or rack and may allow
    higher aggregate read bandwidth because the same data can be sourced from multiple replicas.
    Trading off higher write overheads for lower cost, higher availability, and increased read bandwidth
    was the right solution for many of Google’s workloads. An additional advantage of having disks colocated
    with compute servers is that it enables distributed system software to exploit data locality.
    For the remainder of this book, we will therefore implicitly assume a model with distributed disks
    directly connected to all servers.
    Some WSCs, including Google’s, deploy desktop-class disk drives instead of enterprise-grade
    disks because of the substantial cost differential between the two. Because that data are nearly always
    replicated in some distributed fashion (as in GFS), this mitigates the possibly higher fault rates of
    desktop disks. Moreover, because field reliability of disk drives tends to deviate significantly from
    the manufacturer’s specifications, the reliability edge of enterprise drives is not clearly established.
    For example, Elerath and Shah [24] point out that several factors can affect disk reliability more
    substantially than manufacturing process and design.

  3. #3
    Inactif  
    Profil pro
    Inscrit en
    Mai 2006
    Messages
    2 189
    Détails du profil
    Informations personnelles :
    Âge : 43
    Localisation : Suisse

    Informations forums :
    Inscription : Mai 2006
    Messages : 2 189
    Points : 2 336
    Points
    2 336
    Par défaut
    Concernant le support des transactions, il est définit cela dans l'explication du package

    Package org.apache.hadoop.hbase.client.transactional Description

    This package provides support for atomic transactions. Transactions can span multiple regions. Transaction writes are applied when committing a transaction. At commit time, the transaction is examined to see if it can be applied while still maintaining atomicity. This is done by looking for conflicts with the transactions that committed while the current transaction was running. This technique is known as optimistic concurrency control (OCC) because it relies on the assumption that transactions will mostly not have conflicts with each other.

    For more details on OCC, see the paper On Optimistic Methods for Concurrency Control by Kung and Robinson available here .

    To enable transactions, modify hbase-site.xml to turn on the TransactionalRegionServer. This is done by setting hbase.regionserver.class to org.apache.hadoop.hbase.ipc.TransactionalRegionInterface and hbase.regionserver.impl to org.apache.hadoop.hbase.regionserver.transactional.TransactionalRegionServer

    The read set claimed by a transactional scanner is determined from the start and end keys which the scanner is opened with.
    Known Issues
    Recovery in the face of hregion server failure is not fully implemented. Thus, you cannot rely on the transactional properties in the face of node failure.
    Par contre lors du rollback plusieurs soucies se présentent (comme chez google) c'est lorsqu'une transaction qui est effectué, se déroule sur des régions différentes. Ce qui implique une distribution du rollback et n'est pas chose facile

    Citation :

    Alternatively, this may all be implemented above hbase. The client
    keeps track of updates, and trys to roll back using timestamps.
    Problem here is if the client dies midway through we have half the
    transaction committed and loose atomicity/consistency.

    We will eventually want/need atomic transactions on hbase, so I'll
    look into this further. Any input would be appreciated. Would be
    interesting to know how/what google provides...
    peut être qu'en se basant sur un versionId qui serait de type Long cela serait plus simple car le timestamp peut être différent lors de la création d'entité sur le cluster (cela dépend si la version - le timetamp- est déterminé lors du premier ordre de création et de distribution au travers du cluster ou s'il est déterminé lors de la création de celui-ci dans une certaine région ce qui peut définir un temps qui soit inégale)

    De plus ca ne semble pas être une chose inimplémentable car il n'y a pas de typage de données dans l'implémentation des big table car il n'existe pas de typage ...

    Si l'on fourre son nez dans la publication de google sur l'implémentation des big table on peut effectivement lire ceci

    Timestamps
    Each cell in a Bigtable can contain multiple versions of
    the same data; these versions are indexed by timestamp.
    Bigtable timestamps are 64-bit integers. They can be assigned
    by Bigtable, in which case they represent “real
    time” in microseconds, or be explicitly assigned by client
    applications. Applications that need to avoid collisions
    must generate unique timestamps themselves. Different
    versions of a cell are stored in decreasing timestamp order,
    so that the most recent versions can be read rst.
    To make the management of versioned data less onerous,
    we support two per-column-family settings that tell
    Bigtable to garbage-collect cell versions automatically.
    The client can specify either that only the last n versions
    of a cell be kept, or that only new-enough versions be
    kept (e.g., only keep values that were written in the last
    seven days).
    In our Webtable example, we set the timestamps of
    the crawled pages stored in the contents: column to
    the times at which these page versions were actually
    crawled. The garbage-collection mechanism described
    above lets us keep only the most recent three versions of
    every page.

  4. #4
    Inactif  
    Profil pro
    Inscrit en
    Mai 2006
    Messages
    2 189
    Détails du profil
    Informations personnelles :
    Âge : 43
    Localisation : Suisse

    Informations forums :
    Inscription : Mai 2006
    Messages : 2 189
    Points : 2 336
    Points
    2 336
    Par défaut
    Pour les impatients qui voudraient bénéficier d'une vm préconfigurée avec Hadoop, lighthttpd et autres cloudera propose une vm ubuntu avec l'ensemble des applications installées et configuré pour du training

    http://www.cloudera.com/hadoop-training-virtual-machine

  5. #5
    Inactif  
    Profil pro
    Inscrit en
    Mai 2006
    Messages
    2 189
    Détails du profil
    Informations personnelles :
    Âge : 43
    Localisation : Suisse

    Informations forums :
    Inscription : Mai 2006
    Messages : 2 189
    Points : 2 336
    Points
    2 336
    Par défaut
    J'ai un besoin de disposer d'un moteur de recherche permettant la recherche full texte et d'indexation des fichiers pdf et open xml

    et après de longues recherches ... je suis tombé la dessus http://katta.sourceforge.net/



    le moteur de recherche lucene couplé à pdf box (déjà intégré) va me permettre de résoudre le problème de recherche et d'indexation des fichiers pdf

    il manque juste le parser xml couplé à une tâche map / reduce !

  6. #6
    Inactif  
    Profil pro
    Inscrit en
    Mai 2006
    Messages
    2 189
    Détails du profil
    Informations personnelles :
    Âge : 43
    Localisation : Suisse

    Informations forums :
    Inscription : Mai 2006
    Messages : 2 189
    Points : 2 336
    Points
    2 336
    Par défaut
    bon un peu d'informations (de la part d'un ancien de chez google) sur le support des transactions avec hadoop et les produits qui en sont dérivés dont fait partie cascading et hbase, ils communiquent en utilisant IPC

    IPC c'est quoi, c'est tout simplement les API bas niveau permettant au système d'exploitation de communiquer entre les différents processus des applications

    cela implémente la base de la programmation concurrente donc les semaphores , rendez-vous , reader writer et autres ...


    Par contre hbase implémente au niveau de la gestion concurrente des données la forme dites optimiste : on se base sur le fait que très peu de cas vont déboucher sur des éléments concurrents

  7. #7
    Inactif  
    Profil pro
    Inscrit en
    Mai 2006
    Messages
    2 189
    Détails du profil
    Informations personnelles :
    Âge : 43
    Localisation : Suisse

    Informations forums :
    Inscription : Mai 2006
    Messages : 2 189
    Points : 2 336
    Points
    2 336
    Par défaut
    Pour ceux qui seraient intéressé -toujours sur hadoop- les slides de cloudera de la dernière conférence sur hadoop

    http://www.cloudera.com/blog/2009/06...-west-roundup/

  8. #8
    Inactif  
    Profil pro
    Inscrit en
    Mai 2006
    Messages
    2 189
    Détails du profil
    Informations personnelles :
    Âge : 43
    Localisation : Suisse

    Informations forums :
    Inscription : Mai 2006
    Messages : 2 189
    Points : 2 336
    Points
    2 336
    Par défaut
    Et également pour ceux qui souhaitent développer une application basé sur l'auto apprentissage, ce projet est également basé sur hadoop

    http://lucene.apache.org/mahout/

  9. #9
    Expert éminent sénior
    Homme Profil pro
    Architecte technique retraité
    Inscrit en
    Juin 2008
    Messages
    21 287
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Manche (Basse Normandie)

    Informations professionnelles :
    Activité : Architecte technique retraité
    Secteur : Industrie

    Informations forums :
    Inscription : Juin 2008
    Messages : 21 287
    Points : 36 776
    Points
    36 776
    Par défaut

    que dire de plus?
    - W
    Architectures post-modernes.
    Python sur DVP c'est aussi des FAQs, des cours et tutoriels

  10. #10
    Inactif  
    Profil pro
    Inscrit en
    Mai 2006
    Messages
    2 189
    Détails du profil
    Informations personnelles :
    Âge : 43
    Localisation : Suisse

    Informations forums :
    Inscription : Mai 2006
    Messages : 2 189
    Points : 2 336
    Points
    2 336

  11. #11
    Inactif  
    Profil pro
    Inscrit en
    Mai 2006
    Messages
    2 189
    Détails du profil
    Informations personnelles :
    Âge : 43
    Localisation : Suisse

    Informations forums :
    Inscription : Mai 2006
    Messages : 2 189
    Points : 2 336
    Points
    2 336

  12. #12
    Inactif  
    Profil pro
    Inscrit en
    Mai 2006
    Messages
    2 189
    Détails du profil
    Informations personnelles :
    Âge : 43
    Localisation : Suisse

    Informations forums :
    Inscription : Mai 2006
    Messages : 2 189
    Points : 2 336
    Points
    2 336
    Par défaut
    Un projet qui a l'air super intéressant pour de l'analyse en temps réel

    http://hadoop.apache.org/chukwa/

  13. #13
    Inactif  
    Profil pro
    Inscrit en
    Mai 2006
    Messages
    2 189
    Détails du profil
    Informations personnelles :
    Âge : 43
    Localisation : Suisse

    Informations forums :
    Inscription : Mai 2006
    Messages : 2 189
    Points : 2 336
    Points
    2 336

  14. #14
    Expert éminent sénior
    Homme Profil pro
    Architecte technique retraité
    Inscrit en
    Juin 2008
    Messages
    21 287
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Manche (Basse Normandie)

    Informations professionnelles :
    Activité : Architecte technique retraité
    Secteur : Industrie

    Informations forums :
    Inscription : Juin 2008
    Messages : 21 287
    Points : 36 776
    Points
    36 776
    Par défaut
    L'URL des slides est http://slidesha.re/2bPngz
    Le titre pourrait être "Pig" puisque c'est plus de cela qui permet de faire des calculs analytiques sur de gros stocks de différents types de données.
    En tous cas, c'est pas mal: merci pour l'info
    - W
    Architectures post-modernes.
    Python sur DVP c'est aussi des FAQs, des cours et tutoriels

  15. #15
    Nouveau Candidat au Club
    Profil pro
    Inscrit en
    Novembre 2009
    Messages
    1
    Détails du profil
    Informations personnelles :
    Localisation : France, Paris (Île de France)

    Informations forums :
    Inscription : Novembre 2009
    Messages : 1
    Points : 1
    Points
    1
    Par défaut
    Hadoop et HBase ont été abordé la semaine dernière à Devoxx au travers une présentation rapide et une discussion qui fut l'occasion de questionner un architecte utilisant HBase en production depuis 2 ans : un retour d'expérience très appréciable sur cette technologie émergente...

    Je viens de publier un article détaillant ce retour d'expérience :

    http://blog.xebia.fr/2009/11/18/devo...ql-avec-hbase/

  16. #16
    Inactif  
    Profil pro
    Inscrit en
    Mai 2006
    Messages
    2 189
    Détails du profil
    Informations personnelles :
    Âge : 43
    Localisation : Suisse

    Informations forums :
    Inscription : Mai 2006
    Messages : 2 189
    Points : 2 336
    Points
    2 336
    Par défaut
    Citation Envoyé par mfiguiere Voir le message
    Hadoop et HBase ont été abordé la semaine dernière à Devoxx au travers une présentation rapide et une discussion qui fut l'occasion de questionner un architecte utilisant HBase en production depuis 2 ans : un retour d'expérience très appréciable sur cette technologie émergente...

    Je viens de publier un article détaillant ce retour d'expérience :

    http://blog.xebia.fr/2009/11/18/devo...ql-avec-hbase/
    Excellent article. Petite remarque la communauté est très active notamment du à yahoo, et également dans les listes de diffusion.

Discussions similaires

  1. Quelles solutions open source utilisez-vous et pourquoi ?
    Par Hinault Romaric dans le forum Logiciels Libres & Open Source
    Réponses: 11
    Dernier message: 28/11/2013, 12h45
  2. GROUP BY Multiple - Que pensez-vous de ma solution ?
    Par arnolem dans le forum Requêtes
    Réponses: 4
    Dernier message: 14/09/2010, 10h16
  3. que pensez vous de ce code (Création source ODBC)
    Par aimer_Delphi dans le forum Débuter
    Réponses: 1
    Dernier message: 26/05/2010, 14h47
  4. [VB] Que pensez-vous de la solution à mon projet ?
    Par soad029 dans le forum VB 6 et antérieur
    Réponses: 13
    Dernier message: 16/12/2005, 16h01
  5. que pensez vous de mon code source ecrit en c++(je debute)
    Par superspike23 dans le forum Débuter
    Réponses: 6
    Dernier message: 06/10/2005, 18h26

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo