<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Squid Solutions</title>
	<atom:link href="http://www.squidsolutions.com/feed/?cat=-3" rel="self" type="application/rss+xml" />
	<link>http://www.squidsolutions.com</link>
	<description>Web Intelligence for Classifieds</description>
	<lastBuildDate>Mon, 20 May 2013 13:43:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>We just imported the World. And its history. In 47 minutes.</title>
		<link>http://www.squidsolutions.com/non-classe/we-just-imported-the-world-and-its-history-in-47-minutes/</link>
		<comments>http://www.squidsolutions.com/non-classe/we-just-imported-the-world-and-its-history-in-47-minutes/#comments</comments>
		<pubDate>Mon, 20 May 2013 13:31:57 +0000</pubDate>
		<dc:creator>gdoumergue</dc:creator>
				<category><![CDATA[Non classé]]></category>

		<guid isPermaLink="false">http://www.squidsolutions.com/?p=2117</guid>
		<description><![CDATA[We, at SquidSolutions, like data. We like structuring, importing data &#8211; filling pretty readable charts after torture&#8230;analysing a huge amount of numbers and text. We like it so much, that we were frustrated not to be able to share more of it with the public (You, the Internet). That’s the price to pay for working with eBay, La Poste, www.sciencedirect.com: their data are so sensitive and so private, that we can’t play with them in a public manner. Discover OpenStreetMap with us That’s why we’ve decided to import the OpenStreetMap...<p style="text-align:right"><a href="http://www.squidsolutions.com/non-classe/we-just-imported-the-world-and-its-history-in-47-minutes/"><img src="/wp-content/themes/squid/images/read-more.png" alt="Read the whole story" /></a></p>]]></description>
			<content:encoded><![CDATA[<p>We, at SquidSolutions, like data. We like structuring, importing data &#8211; filling pretty readable charts after torture&#8230;analysing a huge amount of numbers and text. We like it so much, that we were frustrated not to be able to share more of it with the public (You, the Internet). That’s the price to pay for working with eBay, La Poste, <a href="http://www.sciencedirect.com">www.sciencedirect.com</a>: their data are so sensitive and so private, that we can’t play with them in a public manner.</p>
<h3>Discover OpenStreetMap with us</h3>
<p dir="ltr">That’s why we’ve decided to import the <a href="http://wiki.openstreetmap.org/wiki/Rails_port">OpenStreetMap Rails port database</a>. A fairly large data store &#8211; well, average for us people that dream about <a href="http://aws.amazon.com/1000genomes/">Genome project</a>! - OpenStreetMap (OSM) is a unique open data gathering project. Thousands of people all around the world have decided to build a geographical map of our beloved planet.</p>
<p dir="ltr">They describe it with only 3 objects (what they call <a href="http://wiki.openstreetmap.org/wiki/Data_Primitives">Data Primitives</a>): Nodes (a place), Ways (a street) and Relations (that glue nodes and ways together). Each of them can be tagged, so contributors can add value to them (“this way is a highway”, “this node is a restaurant”).</p>
<p dir="ltr">Imagine a world described like this. How simple ! How huge. But that’s not all: these primitives are versioned. So in a single database, we can travel the world, and travel it through time.  Sound pretty cool?  Let’s check it out. We’ll extract OSM data, and then import it in our Greenplum database. It&#8217;s as simple as a Extract-Load-Transform (ELT) story.</p>
<p dir="ltr">Further, as we are big AWS fans, we’ll import OSM database in a <a href="http://aws.amazon.com/redshift/">RedShift</a> cluster. Last but not least, we’ll then plug our new shiny API engine to it, so we can analyze data.</p>
<h3>OK, but why ?</h3>
<p dir="ltr">Just for fun. Of course, our goal is not to implement Yet Another OSM History Browser, as it <a href="http://owl.apis.dev.openstreetmap.org/">already exists</a>. But OSM history database is a good way to show how our API can help reduce information flow from huge data to simple graphical representation.</p>
<h3>Let’s import it &#8211; oh wait</h3>
<p dir="ltr">Our main database here is an 8 nodes (384 GB RAM, 96 CPU cores, 96 hard drives) <a href="http://www.greenplum.com">Greenplum</a> cluster. One of the greatest features of this cluster, is that all nodes can import CSV data in parallel. Give it one big text file, the cluster will split it and send it via a 10 Gb network to all nodes at a time. Our first problem is: OSM data is in <a href="http://wiki.openstreetmap.org/wiki/OSM_XML">XML format.</a> Look for yourself by downloading it <a href="http://wiki.openstreetmap.org/wiki/Planet.osm/full">here</a>. <strong>As we don’t have (yet) the latest Greenplum version, which allows to directly import XML data, </strong>we have extract all data to various csv files. First, we tested <a href="http://wiki.openstreetmap.org/wiki/Osmconvert">osmconvert</a>, which was very quick but &#8230; did not extract all the infos we needed.</p>
<p dir="ltr">So we wrote our own Perl script, using XML::Parser. And thanks to the awesome OSM documentation, it can extract changesets, nodes, ways and relations in parallel. You can find it here: <a href="https://api.squidsolutions.com/wp/wp-content/uploads/2013/04/osm2csv.pl_.gz">osm2csv.pl</a>.</p>
<h3>Defining our database structure</h3>
<p dir="ltr">During the extraction, we took the time to define our future database structure (or DDL). Our database schema is of course heavily inspired by <a href="http://wiki.openstreetmap.org/wiki/Rails_port/Database_schema">OSM’s schema</a>. We added some enhancements:</p>
<ul>
<li>
<p dir="ltr">We added a “date” column to every table which has timestamp column, and to every tables that will be joined to them. This will improve the partitioning of these tables:</p>
</li>
<li>
<p dir="ltr">We created partitions in every table with a date column. The oldest one takes the entire 2005 year, as the first changeset was from April 2005; we assumed that contributions may have grown over years, so the five next years are cut in quarters (4 partitions by year), and the last three years are cut by month (12 partitions by year). This will greatly improve the speed of our requests.</p>
</li>
<li>
<p dir="ltr">Every partitions, except the three most recent, are “appendonly” and compressed. We won’t update or delete rows in those partitions, so we can save 20 bytes for each row. And we compress them, so we’ll save space and IOs on disks.</p>
</li>
<li>
<p dir="ltr">We changed version columns type from BIGINT to INTEGER.</p>
</li>
<li>
<p dir="ltr">As data is distributed across several nodes, we chose the tables id as the unique distribution key.</p>
</li>
<li>In further enrichment process, we&#8217;ll link changesets to countries. That&#8217;s why we added a &laquo;&nbsp;country_code&nbsp;&raquo; column in the <strong>changesets</strong> table.</li>
</ul>
<p>You can download the schema here: <a href="https://api.squidsolutions.com/wp/wp-content/uploads/2013/04/schema.sql_.gz">schema.sql</a>.</p>
<h3>Loading the data</h3>
<p dir="ltr">After 30 hours of extraction, our script gave us this:</p>
<pre>$ ls -1sh
total 477G
1.7G changeset.csv
1.2G changeset_tags.csv
222G node.csv
58G node_tags.csv
449M relation.csv
15G relation_members.csv
1.2G relation_tags.csv
19G way.csv
119G way_nodes.csv
42G way_tags.csv
$ wc -l *
14922523 changeset.csv
30463339 changeset_tags.csv
2790813127 node.csv
1200122107 node_tags.csv
7649388 relation.csv
511079950 relation_members.csv
36888667 relation_tags.csv
322810448 way.csv
5151526585 way_nodes.csv
1109648479 way_tags.csv</pre>
<p>One of the few limitations in this extraction is that we did not count the number of objects involved in each changeset. That is a job for the SQL file involved in the further transformation of data.</p>
<p>Now that we have a .csv file for each table to import, we use the fantastic gpload utility provided with greenplum. It’s very flexible YAML configuration &#8211; called control file &#8211; allow us to perform basic ETL work during import.</p>
<p>For example, OSM Nodes have coordinates (latitude and longitude). They are of type DOUBLE in the XML export, but in INTEGER type in the database. That’s because the historydump utility used by the OSM utility divides coordinates by 10^7. We have to multiply them back with 10^7 during the import. Here is the control file used during Nodes import:</p>
<pre>---
VERSION: 1.0.0.1
DATABASE: osm
USER: dp_admin
HOST: mdw-1
PORT: 5432
GPLOAD:
INPUT:
- SOURCE:
- FILE:
- /data/etl/osm/planet/node.csv
- COLUMNS:
- id: INTEGER
- latitude: NUMERIC
- longitude: NUMERIC
- changeset_id: INTEGER
- visible: BOOLEAN
- timestamp: TIMESTAMP
- date: DATE
- tile: BIGINT
- version: INTEGER
- user_id: INTEGER
- FORMAT: text
- DELIMITER: ' '
- ESCAPE: '\'
- NULL_AS: ''
- HEADER: true
- QUOTE: ''
- ERROR_LIMIT: 25
- ERROR_TABLE: dataprocessing.errors_import
OUTPUT:
- TABLE: dataprocessing.nodes
- MODE: insert
- MAPPING:
id: id
latitude: CAST (latitude * 10000000 as INTEGER)
longitude: CAST (longitude * 10000000 as INTEGER)
changeset_id: changeset_id
visible: visible
timestamp: timestamp
date: date
tile: tile
version: version
user_id: user_id
PRELOAD:
- TRUNCATE: true</pre>
<p>Some notes about this control file:</p>
<ul>
<li>All gpload has to know is the path to the control file. The connection information is included, and the password is provided in our  ~/.pgpass file.</li>
</ul>
<ul>
<li>In this example, we have to define each input column and map them to each output ones, because we need to transform two columns values on the fly. Of course, if you do not need this type of transformation, you can skip the boring COLUMNS and MAPPING entries.</li>
</ul>
<p>How’s it fast ? Look:</p>
<pre>$ gpload -f ctrl/node.ctrl
2013-04-21 15:58:58|INFO|gpload session started 2013-04-21 15:58:58
2013-04-21 15:58:58|INFO|started gpfdist -p 8000 -P 9000 -f "/data/etl/osm/planet/node.csv" -t 30
2013-04-21 16:15:07|INFO|running time: 968.98 seconds
2013-04-21 16:15:07|INFO|rows Inserted          = 2790813127
2013-04-21 16:15:07|INFO|rows Updated           = 0
2013-04-21 16:15:07|INFO|data formatting errors = 0
2013-04-21 16:15:07|INFO|gpload succeeded</pre>
<p>222 GB, 2.8 Billion rows imported in 15 minutes. The whole loading step took 47 minutes for 477 GB of data.</p>
<h3>Transform and enrich the data</h3>
<p>The previous loading step has been made in a &laquo;&nbsp;temporary&nbsp;&raquo; schema, that won&#8217;t be directly used by our API engine. We like to call it &laquo;&nbsp;dataprocessing&nbsp;&raquo;, because it&#8217;s the source of all the dark SQL magic; we copy data from dataprocessing schema to the final schema (called &laquo;&nbsp;planet&nbsp;&raquo;), and we enrich it:</p>
<ul>
<li>All tables to which</li>
</ul>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.squidsolutions.com/non-classe/we-just-imported-the-world-and-its-history-in-47-minutes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is Big Data where the traditional &#171;&#160;BI + Integration&#160;&#187; model hits a wall?</title>
		<link>http://www.squidsolutions.com/blog/business-intelligence/is-big-data-where-the-traditional-bi-integration-model-hits-a-wall/</link>
		<comments>http://www.squidsolutions.com/blog/business-intelligence/is-big-data-where-the-traditional-bi-integration-model-hits-a-wall/#comments</comments>
		<pubDate>Tue, 02 Oct 2012 09:42:37 +0000</pubDate>
		<dc:creator>JohnB</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[Business Intelligence]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.squidsolutions.com/?p=1080</guid>
		<description><![CDATA[In today&#8217;s hyper-competitive economy, very few companies can afford to waste valuable internal resources stacking &#8216;off-the-shelf&#8217; software in the hope of gaining the desired results. Customers still want results but no longer see why they have to go through long integration projects to get them. Most integration and BI companies were created in and are designed to serve pre-digital, pre-Cloud, pre-SaaS and pre-Big Data business issues.   Integration companies have &#8216;legacy&#8217; business models.   They sell integration as a service.  They sell manpower days who tweak and stack traditional software....<p style="text-align:right"><a href="http://www.squidsolutions.com/blog/business-intelligence/is-big-data-where-the-traditional-bi-integration-model-hits-a-wall/"><img src="/wp-content/themes/squid/images/read-more.png" alt="Read the whole story" /></a></p>]]></description>
			<content:encoded><![CDATA[<p>In today&#8217;s hyper-competitive economy, very few companies can afford to waste valuable internal resources stacking &#8216;off-the-shelf&#8217; software in the hope of gaining the desired results.</p>
<p>Customers still want results but no longer see why they have to go through long integration projects to get them.</p>
<p>Most integration and BI companies were created in and are designed to serve pre-digital, pre-Cloud, pre-SaaS and pre-Big Data business issues.   Integration companies have &#8216;legacy&#8217; business models.   They sell integration as a service.  They sell manpower days who tweak and stack traditional software.</p>
<p><strong>The more integration, the greater the customer&#8217;s TOTAL COST OF OWNERSHIP.</strong></p>
<p><strong>The more integration, the longer customers have to wait to actually benefit from the proposed solutions.</strong></p>
<p>And for what? Traditional BI formats are complicated &amp; boring.  We&#8217;ve all seen and ignored pies, columns and tables.  IT staff, tech geeks and business end-users do NOT consume or use data in the same way.  While IT may get deep insight from complicated graphs, business people with immediate needs and near-term objectives grow impatient when data is presented in ways which require technical explanations.</p>
<p>Does it still have to be this way?   Is this &#8211; traditional BI &amp; integration &#8211; really adapted to Big Data?    We don&#8217;t think so.<span id="more-1080"></span></p>
<p>Why?    Four reasons&#8230;..</p>
<ol>
<li>Thanks to the Cloud, the cost of computing has never been cheaper.  The economic barriers to entry are falling fast.</li>
<li>With SaaS, customers can gain rapid access to solutions based on their needs and scale of use.  Why buy when you can rent?</li>
<li>Big Data technologies now exist to create solutions &#8211; or Applications &#8211; designed for specific customers and end-user needs.   One size does NOT fit all!</li>
<li>Finally, points 1, 2 &amp; 3, together, are opening up the development process allowing companies large and small to pool resources and access talent which until recently would not even have appeared on the map.</li>
</ol>
<p>In short, the personal App model is now possible for businesses.  The  Big Data App is designed to provide you the data you need in the format you can actually understand and therefore use.</p>
<p>Is ‘off-the-shelf’ BI the answer to this new dynamic?  Is more integration the answer?</p>
<p>Tech jargon aside, Big Data is also &#8211; or rather should be &#8211; the ability to deliver customers killer, mission-specific Apps and data solutions rapidly and economically.</p>
<p>Major BI and integration players have staying power of course but are they change agents or rather just clinging to the past?</p>
<p>The answer is pretty clear…</p>
]]></content:encoded>
			<wfw:commentRss>http://www.squidsolutions.com/blog/business-intelligence/is-big-data-where-the-traditional-bi-integration-model-hits-a-wall/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Beta-test de la nouvelle API REST de Squid : Inscrivez-vous au workshop !</title>
		<link>http://www.squidsolutions.com/blog/beta-test-de-la-nouvelle-api-rest-de-squid-inscrivez-vous-au-workshop-a-la-cantine/</link>
		<comments>http://www.squidsolutions.com/blog/beta-test-de-la-nouvelle-api-rest-de-squid-inscrivez-vous-au-workshop-a-la-cantine/#comments</comments>
		<pubDate>Wed, 05 Sep 2012 10:22:24 +0000</pubDate>
		<dc:creator>Adrien Schmidt</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.squidsolutions.com/?p=1074</guid>
		<description><![CDATA[Chers experts en data visualisation, éditeurs, développeurs et intégrateurs, ce message s&#8217;adresse à vous! Squid propose un atelier de beta-test de sa nouvelle API REST. Connectée à la plateforme Big Data de Squid hébergée dans le Cloud (sur infrastructure EMC Greenplum), cette API permet à n&#8217;importe quelle application d&#8217;accéder à des analyses multidimensionnelles à travers des requêtes simples, sur des sources et des volumes de données multiples et variés. En participant vous pourrez : découvrir en avant première une API permettant d&#8217;étendre les fonctionnalités de vos applications de datavis; voir...<p style="text-align:right"><a href="http://www.squidsolutions.com/blog/beta-test-de-la-nouvelle-api-rest-de-squid-inscrivez-vous-au-workshop-a-la-cantine/"><img src="/wp-content/themes/squid/images/read-more.png" alt="Read the whole story" /></a></p>]]></description>
			<content:encoded><![CDATA[<p>Chers experts en data visualisation, éditeurs, développeurs et intégrateurs, ce message s&#8217;adresse à vous!</p>
<p>Squid propose <strong><span style="color: #00ccff;">un atelier de beta-test de sa nouvelle API REST</span></strong>. Connectée à la plateforme Big Data de Squid hébergée dans le Cloud (sur infrastructure EMC Greenplum), cette API permet à n&#8217;importe quelle application d&#8217;accéder à des analyses multidimensionnelles à travers des requêtes simples, sur des sources et des volumes de données multiples et variés.</p>
<p>En participant vous pourrez :</p>
<ul>
<li>découvrir en avant première une API permettant d&#8217;étendre les fonctionnalités de vos applications de datavis;</li>
<li>voir comment exploiter une plateforme Cloud d&#8217;analyse de données pour faciliter la mise en place d&#8217;applications analytiques;</li>
<li>échanger avec des pairs sur les meilleures pratiques et contribuer à l&#8217;amélioration de l&#8217;API.</li>
</ul>
<p>Tout en travaillant sur des véritables données client combinées à des données publiques sur un sujet passionnant.</p>
<p>Bref, c&#8217;est l&#8217;occasion de découvrir une nouvelle techno et, surtout, de travailler sur un cas concret ensemble et à plusieurs !</p>
<p>Je dois finaliser l&#8217;organisation de cet atelier le plus vite possible, alors indiquez-moi SVP par mail votre intérêt car le nombre de places est limité à 6.</p>
<p>Infos pratiques :</p>
<ul>
<li>lieu : la Cantine sous l&#8217;égide de Silicon Xperience</li>
<li>date : fin sept / début octobre</li>
</ul>
<p>A très bientôt,</p>
<p>Adrien</p>
]]></content:encoded>
			<wfw:commentRss>http://www.squidsolutions.com/blog/beta-test-de-la-nouvelle-api-rest-de-squid-inscrivez-vous-au-workshop-a-la-cantine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Avec Squid Solutions, Neteven lance le premier outil d’analyse statistiques pour les places de marché</title>
		<link>http://www.squidsolutions.com/blog/business-intelligence/neteven-lance-le-premier-outil-d%e2%80%99analyse-statistiques-pour-les-places-de-marche/</link>
		<comments>http://www.squidsolutions.com/blog/business-intelligence/neteven-lance-le-premier-outil-d%e2%80%99analyse-statistiques-pour-les-places-de-marche/#comments</comments>
		<pubDate>Wed, 11 Apr 2012 07:46:18 +0000</pubDate>
		<dc:creator>Adrien Schmidt</dc:creator>
				<category><![CDATA[About our Partners]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[Business Intelligence]]></category>
		<category><![CDATA[Press Releases]]></category>
		<category><![CDATA[Web Intelligence]]></category>

		<guid isPermaLink="false">http://www.squidsolutions.com/?p=1065</guid>
		<description><![CDATA[Paris, le 11 avril 2012 – Neteven, solution de distribution sur les places de marché annonce le lancement d’une solution inédite de statistiques et de reporting. Objectif : fournir aux entreprises qui distribuent leurs produits sur ces places de marché une vue 360° de leur activité afin de maximiser leurs ventes et leur ROI. Désormais disponible au sein logiciel de Neteven, cet outil gratuit va permettre une analyse pointue des transactions réalisées sur ces puissantes galeries marchandes du web que sont eBay, Amazon, Pixmania, Fnac, Priceminister, La Redoute, Brand Alley,...<p style="text-align:right"><a href="http://www.squidsolutions.com/blog/business-intelligence/neteven-lance-le-premier-outil-d%e2%80%99analyse-statistiques-pour-les-places-de-marche/"><img src="/wp-content/themes/squid/images/read-more.png" alt="Read the whole story" /></a></p>]]></description>
			<content:encoded><![CDATA[<p><strong>Paris, le 11 avril 2012</strong> – Neteven, solution de distribution sur les places de marché annonce le lancement d’une solution inédite de statistiques et de reporting. Objectif : fournir aux entreprises qui distribuent leurs produits sur ces places de marché une vue 360° de leur activité afin de maximiser leurs ventes et leur ROI.</p>
<p><span id="more-1065"></span>Désormais disponible au sein logiciel de Neteven, cet outil gratuit va permettre une analyse pointue des transactions réalisées sur ces puissantes galeries marchandes du web que sont eBay, Amazon, Pixmania, Fnac, Priceminister, La Redoute, Brand Alley, RueDuCommerce, Cdiscount…</p>
<h3>Toutes les données places de marché en un clin d’œil</h3>
<p>L’outil d’analyse statistique de Neteven s’appuie sur l’ensemble des données de chaque marchand sur chaque place de marché. Des dizaines de millions de données sont traitées chaque jour afin de fournir au marchand un tableau de bord complet et simple d’utilisation. Le vendeur peut ainsi visualiser son activité quotidienne, hebdomadaire ou mensuelle et piloter son optimisation sur les places de marché.</p>
<p>Un grand nombre de filtres et d’options d’affichages sont disponibles afin de permettre à chacun de bénéficier des statistiques adaptées à ses besoins.</p>
<h3>Une évolution fonctionnelle inédite</h3>
<p>Le logiciel Neteven permettait déjà de remonter les premiers prix des places de marché Amazon et Fnac. Pouvoir s’aligner sur la concurrence est essentiel pour atteindre de forts volumes de vente.</p>
<p>Neteven propose désormais à ses utilisateurs de croiser plus efficacement les données de stock avec les ventes. Ces données leur permettent par exemple :</p>
<ul>
<li>D’adapter le prix des produits qui ne se vendent pas mais ont un stock important,</li>
<li>De se demander pourquoi un best-seller sur une place de marché ne donne lieu à aucune vente sur une autre,</li>
<li>D’identifier les produits à réapprovisionner…</li>
</ul>
<p>Cet outil va aider les marchands à optimiser leur activité, maitriser leur coût de stockage et augmenter leur bénéfice.</p>
<h3>Squid, partenaire de Neteven, spécialisé dans le traitement des données Big Data</h3>
<p>Pour développer cet outil, Neteven a choisi Squid Solutions. Forte d&#8217;une expérience de plus de 8 années dans l&#8217;analyse de grands volumes de données, Squid Solutions a mis au point la SquidBox, une plateforme dans le cloud permettant de réaliser des applications Big Data innovantes. La SquidBox stocke les données quel que soit leur volume et dispose de puissantes ressources de calculs pour des applications comme celle de Neteven, nécessitant de traiter des données au niveau le plus fin.</p>
<p>Squid Solutions a développé l’outil analytics en fonction des besoins identifiés par Neteven et ses clients. L’outil est disponible gratuitement au sein de la plateforme Neteven.</p>
<p>« Avec 10 places de marché disponibles dans Neteven en France et autant en Europe, il est essentiel pour les marchands de bien analyser leur positionnement pour optimiser leur activité et développer leur chiffre et leur marge. L’analyse de données étant un métier à part entière, nous avons choisi de nous appuyer sur l’expertise de Squid Solutions pour le développement d’un outil puissant et intuitif. Les marchands pourront ainsi piloter au quotidien leur activité et définir les actions à mettre en place en partenariat avec les experts de l’équipe Neteven» précise Greg Zemor, Directeur associé Neteven.</p>
<p>Il conclut : « Nous allons également pouvoir grâce à cet outil, extraire des données qui vont nous permettre d’étudier les grandes tendances de distribution sur les places de marché, aujourd’hui 9 sites des 15 premiers sites marchands sont des places de marché et il n’existe pas d’analyse dédiée à ce canal, ce sera une première. »</p>
<p>A propos de Neteven :</p>
<p>Créée en 2005 par des anciens d’eBay et spécialistes du e-commerce et des nouvelles technologies, Neteven fournit l&#8217;expertise, les outils et les services pour centraliser et optimiser la gestion de toute activité marchande. En donnant accès aux canaux de vente en ligne les plus puissants du marché (les place de marchés tels que Fnac, eBay, Amazon, PriceMinister, Pixmania, 2xmoinscher, Rue du Commerce, La Redoute, Brand Alley, CDiscount), Neteven propose aux vendeurs professionnels une externalisation partielle ou complète de la gestion des ventes sur internet. Fort d’une équipe alliant conseils stratégiques et techniques pour une approche performante de la vente en ligne, Neteven est aujourd’hui le partenaire privilégié des sites de e-commerce et des vendeurs professionnels.</p>
<p>Pour plus d’informations : <a href="http://www.neteven.com" target="_blank">www.neteven.com</a></p>
<p><a href="http://www.neteven.com" target="_blank"></a>À propos de Squid Solutions :</p>
<p>Squid Solutions est un éditeur de logiciels français spécialisé dans la fourniture de solutions de collecte et d’analyse de grands volumes de données. Squid propose une plate-forme dans le cloud pour permettre à ses clients et partenaires de tirer parti dès maintenant de l’immense potentiel des Big Data.</p>
<p>Plus d’informations sur <a href="http://www.squidsolutions.com">www.squidsolutions.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.squidsolutions.com/blog/business-intelligence/neteven-lance-le-premier-outil-d%e2%80%99analyse-statistiques-pour-les-places-de-marche/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQUID SOLUTIONS INTEGRATES WITH EMC GREENPLUM CHORUS, THE SOCIAL DATA SCIENCE PLATFORM</title>
		<link>http://www.squidsolutions.com/blog/squid-integrates-with-greenplum-chorus/</link>
		<comments>http://www.squidsolutions.com/blog/squid-integrates-with-greenplum-chorus/#comments</comments>
		<pubDate>Mon, 19 Mar 2012 16:00:14 +0000</pubDate>
		<dc:creator>Adrien Schmidt</dc:creator>
				<category><![CDATA[About our Partners]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[Press Releases]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.squidsolutions.com/?p=1038</guid>
		<description><![CDATA[Squid&#8217;s early-access to Chorus API results in rapid development and integration of Chorus-enhanced Big Data applications. Boulogne-Billancourt, France, March 20, 2012—Squid Solutions, which channels the power of cloud-based analytics into tailor-made business applications to address the data needs of customers across any industry, today announced it is integrating its cloud-based platform with EMC Greenplum Chorus, a Facebook-like social collaboration tool for Data Science teams to iterate on the development of datasets and ensure that useful insights are delivered to the business quickly. Combining the two offerings delivers an end-to-end solution...<p style="text-align:right"><a href="http://www.squidsolutions.com/blog/squid-integrates-with-greenplum-chorus/"><img src="/wp-content/themes/squid/images/read-more.png" alt="Read the whole story" /></a></p>]]></description>
			<content:encoded><![CDATA[<p><em>Squid&#8217;s early-access to Chorus API results in rapid development and integration of Chorus-enhanced Big Data applications.</em></p>
<p><strong> </strong></p>
<p><strong>Boulogne-Billancourt, France, March 20, 2012—</strong>Squid Solutions, which channels the power of cloud-based analytics into tailor-made business applications to address the data needs of customers across any industry, today announced it is integrating its cloud-based platform with <a href="http://www.greenplum.com/products/chorus" target="_blank">EMC Greenplum Chorus</a>, a Facebook-like social collaboration tool for Data Science teams to iterate on the development of datasets and ensure that useful insights are delivered to the business quickly. Combining the two offerings delivers an end-to-end solution designed to extract insight from multiple sources of raw data using exploratory and advanced analytics, streamlining the analytics process and boosting customers’ capacity to innovate with data.<span id="more-1038"></span></p>
<p>Squid Solutions’ offering is a multi-tenant platform with an SDK (software development kit) to roll out business applications. Chorus aims to alter the way people generate value from Big Data analytics by pairing social collaboration with the Big Data analytics process—an industry first. Squid chose Chorus because of its power to enable collaboration through the sharing of knowledge, data and resources among data owners, data scientists, business experts and end users around the platform. The company also chose <a title="Grâce à la technologie EMC Greenplum DCA, Squid Solutions met à disposition sa plate-forme Big Data Analytics dans un environnement cloud" href="http://www.squidsolutions.com/blog/grace-a-la-technologie-emc-greenplum-dca-squid-solutions-met-a-disposition-sa-plate-forme-big-data-analytics-dans-un-environnement-cloud/">Greenplum Unified Analytics Platform</a> (UAP) as its underlying Big Data analytics infrastructure.</p>
<p>“Collaboration is where we see the value of a cloud platform and that’s why we integrated our software with Chorus via their API,” said Squid Solutions CEO Adrien Schmidt. “We are also happy to have chosen the Greenplum UAP as the underlying infrastructure for a cloud offering as it offers the most advanced features and a very high performance level.”</p>
<p>Earlier this month, Squid Solutions announced it selected EMC Greenplum technology to provide a web-based turnkey solution for Big Data analytics, making it possible to set up Big Data applications in just weeks. The company runs a <a href="http://www.greenplum.com/products/greenplum-dca" target="_blank">Greenplum Data Computing Appliance</a> (DCA)—the industry’s first complete Big Data analytics platform—to deploy Big Data analytics applications in the cloud.</p>
<p>With its more than eight years’ experience analyzing large volumes of data, Squid Solutions’ SaaS technology takes full advantage of the advanced features of EMC Greenplum’s massively parallel database by running “in-database” computing directly on the raw data, to accelerate the creation and deployment of innovative business applications. Using Squid Solutions’ platform, developers can focus on their business expertise to deliver more value to their customers.</p>
<p><strong>About Squid Solutions</strong></p>
<p>Squid Solutions, maker of software solutions for the collection and use of massive volumes of data, offers a cloud-based platform to enable its customers and partners to leverage the immense potential of Big Data through analytics applications. For more information, please visit <a href="http://www.squidsolutions.com/">www.squidsolutions.com</a>.</p>
<p><strong>About Greenplum</strong></p>
<p>Greenplum, a division of EMC, is driving the future of Big Data analytics with breakthrough products that harness the skills of data science teams to help global organizations realize the full promise of business agility and become data-driven, predictive enterprises. The division&#8217;s products include Greenplum Unified Analytics Platform, Greenplum Data Computing Appliance, Greenplum Database, Greenplum Analytics Lab, Greenplum HD and Greenplum Chorus. They embody the power of open systems, cloud computing, virtualization and social collaboration‹enabling global organizations to gain greater insight and value from their data than ever before possible.</p>
<p>For more information, visit <a href="http://www.greenplum.com/" target="_blank">www.greenplum.com</a>.</p>
<p><strong> </strong></p>
<p><strong>About EMC</strong></p>
<p>EMC Corporation is a global leader in enabling businesses and service providers to transform their operations and deliver IT as a service. Fundamental to this transformation is cloud computing. Through innovative products and services, EMC accelerates the journey to cloud computing, helping IT departments to store, manage, protect and analyze their most valuable asset—information—in a more agile, trusted and cost-efficient way. Additional information about EMC can be found at <a href="http://www.emc.com/">www.EMC.com</a>.</p>
<p>&nbsp;</p>
<p><strong>Contact: </strong></p>
<p>Mrs. Sanda Meriau</p>
<p><a href="mailto:contact@squidsolutions.com">sanda@squidsolutions.com</a></p>
<p>6, passage Tenaille 75014 Paris France</p>
<p><a href="http://www.squidsolutions.com/">www.squidsolutions.com</a></p>
<div>
<p>&nbsp;</p>
</div>
<p>&nbsp;</p>
<p><strong><em>EMC, Greenplum, Greenplum Chorus and Greenplum Database are either registered trademarks or trademarks of EMC Corporation in the United States and other countries. All other trademarks used herein are the property of their respective owners.</em></strong></p>
<p><em><br />
</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.squidsolutions.com/blog/squid-integrates-with-greenplum-chorus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Grâce à la technologie EMC Greenplum DCA, Squid Solutions met à disposition sa plate-forme Big Data Analytics dans un environnement cloud</title>
		<link>http://www.squidsolutions.com/blog/grace-a-la-technologie-emc-greenplum-dca-squid-solutions-met-a-disposition-sa-plate-forme-big-data-analytics-dans-un-environnement-cloud/</link>
		<comments>http://www.squidsolutions.com/blog/grace-a-la-technologie-emc-greenplum-dca-squid-solutions-met-a-disposition-sa-plate-forme-big-data-analytics-dans-un-environnement-cloud/#comments</comments>
		<pubDate>Thu, 01 Mar 2012 16:36:27 +0000</pubDate>
		<dc:creator>Adrien Schmidt</dc:creator>
				<category><![CDATA[About our Partners]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[Press Releases]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.squidsolutions.com/?p=1033</guid>
		<description><![CDATA[Boulogne-Billancourt, le 1er mars 2012 &#8211; Forte d&#8217;une expérience de plus de 8 années dans l&#8217;analyse de grands volumes de données, Squid Solutions, premier éditeur de solutions logicielles de « Customer Intelligence », a retenu la technologie Greenplum d’EMC, pour fournir une solution clé-en-main accessible sur le web. Grâce à l&#8217;offre SaaS de Squid Solutions, il est désormais possible de mettre en place des applications Big Data en quelques semaines seulement. La technologie de Squid Solutions exploite au maximum les fonctions avancées de la base de données massivement parallèle EMC...<p style="text-align:right"><a href="http://www.squidsolutions.com/blog/grace-a-la-technologie-emc-greenplum-dca-squid-solutions-met-a-disposition-sa-plate-forme-big-data-analytics-dans-un-environnement-cloud/"><img src="/wp-content/themes/squid/images/read-more.png" alt="Read the whole story" /></a></p>]]></description>
			<content:encoded><![CDATA[<p>Boulogne-Billancourt, le 1er mars 2012 &#8211; Forte d&#8217;une expérience de plus de 8 années dans l&#8217;analyse de grands volumes de données, Squid Solutions, premier éditeur de solutions logicielles de « Customer Intelligence », a retenu la technologie Greenplum d’EMC, pour fournir une solution clé-en-main accessible sur le web.</p>
<p><span id="more-1033"></span></p>
<p>Grâce à l&#8217;offre SaaS de Squid Solutions, il est désormais possible de mettre en place des applications Big Data en quelques semaines seulement. La technologie de Squid Solutions exploite au maximum les fonctions avancées de la base de données massivement parallèle EMC Greenplum en réalisant ses calculs « in-database », directement sur les données brutes, pour accélérer la création et le déploiement de Business Applications innovantes.</p>
<p>Les développeurs peuvent ainsi se reposer sur le savoir-faire de Squid Solutions et se concentrer sur leur expertise métier afin de délivrer davantage de valeur ajoutée à leurs clients.</p>
<p>Adrien Schmidt, CEO de Squid Solutions précise « Chez Squid Solutions, <em>n</em><em>ous avons pour objectif de réunir les moyens techniques et humains pour adresser le marché des Big Data au travers de Business Applications simples, destinées aux opérationnels métiers dans les entreprises. Grâce à notre offre Saas, développée et déployée sur une plate-forme dans le Cloud, nous sommes fiers de pouvoir proposer à nos clients des solutions leur permettant de délivrer rapidement de l’innovation business </em>»</p>
<p>Yann Cohn-Addad, Directeur Europe du Sud Greenplum EMC ajoute<em> « Nous sommes heureux de la confiance témoignée aujourd’hui par Squid Solutions. En proposant une solution reposant sur notre technologie éprouvée Greenplum, Squid Solutions prend une longueur d’avance sur le marché du Big Data Analytics ».</em></p>
<p><em> </em></p>
<p><em> </em></p>
<p><strong>À propos de Squid Solutions</strong></p>
<p>Squid Solutions est un éditeur de logiciels français spécialisé dans la fourniture de solutions de collecte et d’analyse de grands volumes de données. Squid propose une plate-forme dans le cloud pour permettre à ses clients et partenaires de tirer parti dès maintenant de l’immense potentiel des Big Data. Plus d’informations sur www.squidsolutions.com</p>
<p><em> </em></p>
<p><strong>À propos d’EMC</strong></p>
<p>EMC Corporation est un leader mondial permettant aux entreprises et aux fournisseurs de services de transformer la manière dont ils opèrent et de leur proposer des solutions IT as a service. Le Cloud computing revêt une importance fondamentale dans cette transformation. Grâce à des produits et des services innovants, EMC accompagne les départements informatiques dans leur transition vers le Cloud computing en leur offrant des solutions flexibles, fiables et économes pour le stockage, la gestion, la protection et l&#8217;analyse de leur actif le plus précieux : l’information. Pour de plus amples informations sur EMC, veuillez-vous rendre sur <a href="../../gforino/AppData/Local/Microsoft/Windows/Temporary%2520Internet%2520Files/Content.Outlook/AppData/Local/Microsoft/Windows/AppData/Local/Microsoft/Windows/Temporary%2520Internet%2520Files/Content.IE5/VIJNOBD2/www.EMC.com">www.EMC.com.</a></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.squidsolutions.com/blog/grace-a-la-technologie-emc-greenplum-dca-squid-solutions-met-a-disposition-sa-plate-forme-big-data-analytics-dans-un-environnement-cloud/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>La Cité de la musique joue la carte de la Web Intelligence</title>
		<link>http://www.squidsolutions.com/blog/web-intelligence/cite-de-la-musique-web-intelligence/</link>
		<comments>http://www.squidsolutions.com/blog/web-intelligence/cite-de-la-musique-web-intelligence/#comments</comments>
		<pubDate>Fri, 18 Nov 2011 11:11:33 +0000</pubDate>
		<dc:creator>Adrien Schmidt</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[Case Studies & White Papers]]></category>
		<category><![CDATA[Press Releases]]></category>
		<category><![CDATA[Web Intelligence]]></category>

		<guid isPermaLink="false">http://www.squidsolutions.com/?p=913</guid>
		<description><![CDATA[LE 18 NOVEMBRE 2011. Squid Solutions, éditeur de solutions de Web Intelligence et de pilotage par les données, accompagne la Cité de la musique dans l’analyse et le pilotage de son activité en ligne. La Cité de la musique est un établissement public industriel et commercial qui bénéficie du soutien du Ministère de la Culture et de la Communication. Projet novateur de transmission de la musique, c&#8217;est un pôle de référence national et international entièrement dédié à la musique: près de 350 concerts par an destinés aux adultes et aux...<p style="text-align:right"><a href="http://www.squidsolutions.com/blog/web-intelligence/cite-de-la-musique-web-intelligence/"><img src="/wp-content/themes/squid/images/read-more.png" alt="Read the whole story" /></a></p>]]></description>
			<content:encoded><![CDATA[<p>LE 18 NOVEMBRE 2011. <strong>Squid Solutions</strong>, éditeur de solutions de Web Intelligence et de pilotage par les données, accompagne la Cité de la musique dans l’analyse et le pilotage de son activité en ligne.</p>
<p><span id="more-913"></span></p>
<p><a title="Cité de la musique" href="http://www.cite-musique.fr/" target="_blank">La Cité de la musique</a> est un établissement public industriel et commercial qui bénéficie du soutien du Ministère de la Culture et de la Communication. Projet novateur de transmission de la musique, c&#8217;est un pôle de référence national et international entièrement dédié à la musique: près de 350 concerts par an destinés aux adultes et aux jeunes, un Musée de la musique aux collections rares, une Médiathèque oeuvrant dans de nombreux domaines (métiers, musicologie, pédagogie, facture instrumentale…) et acteur de la diffusion numérique du patrimoine culturel (<a href="http://mediatheque.citedelamusique.fr">http://mediatheque.citedelamusique.fr</a>) , une offre éducative riche et variée.</p>
<p>Dans le cadre du développement de ses activités, la Cité de la musique a souhaité étendre sa présence en ligne afin de proposer aux internautes la diffusion vidéo de ses concerts en mode live, différé ou archivé au travers du site <a href="www.citedelamusiquelive.tv" target="_blank">www.citedelamusiquelive.tv</a>. Pour créer le meilleur service à destination de ses internautes, la Cité de la musique a souhaité mieux comprendre et analyser la fréquentation de son site, la façon dont les internautes s&#8217;en servaient et ce qu&#8217;ils en attendaient.</p>
<p>Les besoins de la Cité de la musique étaient spécifiques à son activité. Les indicateurs standards fournis par les outils traditionnels de web analytics (Google Analytics…) ne répondaient pas aux questions des équipes et nécessitaient beaucoup d&#8217;analyses complémentaires à la main, par exemple pour connaître le genre de musique et les artistes les plus regardés, les temps moyen d’écoute, la répartition des écoutes en live, en différé, etc …</p>
<p>La Cité de la musique a donc choisi de s’appuyer sur une solution de Web Intelligence, plus flexible. C’est dans ce contexte que Squid Solutions a été sélectionnée. Ce choix s’explique à la fois par la capacité de la solution à produire des indicateurs de pilotage au niveau de détail le plus fin, mais également par la simplicité d’exploitation des données.</p>
<p>Concrètement, Squid Solutions exploite les données à partir de deux sources : consultation du site et données des catalogues qui décrivent les concerts. Ce croisement de données &laquo;&nbsp;front office&nbsp;&raquo; (la navigation) et &laquo;&nbsp;back office&nbsp;&raquo; (le catalogue) permet d&#8217;automatiser la production des statistiques précises de consultation du site, et de mesurer si sa programmation est adaptée aux attentes des utilisateurs.</p>
<p>L’accès aux indicateurs s’effectue directement sur un portail Web proposé par les équipes de Squid Solutions. Les données sont consolidées par périodes ou analysées en temps réel. A ce jour, le site affiche de fortes performances avec plus de 240 000 visites.</p>
<p>Pour <a href="http://fr.linkedin.com/pub/rodolphe-bailly/0/136/114" target="_blank">Rodolphe Bailly</a>, responsable du service Systèmes d’Information et de Numérisation de la Cité de la musique : « Nous avons lancé cette activité permettant la diffusion en ligne de nos concerts afin de permettre au plus grand nombre d’accéder gratuitement à l’actualité artistique de notre institution. Dans le cadre de l’amélioration continue de ce service, nous avons souhaité analyser sa pertinence etdécrypter l’intérêt des internautes pour cette offre. Squid Solutions nous a permis de répondre à ce besoin. Simplicité, accès à des données concrètes et réactivité sont à la base du succès de notre collaboration. »</p>
<p>Publié sur :<br />
<a href="http://www.itchannel.info/index.php/articles/125539/squid-solutions-accompagne-lacite-musique-analyse-pilotage-son-activite-ligne.html" target="_blank">ITChannel.info<br />
</a><a href="www.decideo.fr/La-Cite-de-la-musique-joue-la-carte-de-la-Web-Intelligence_a4683.html" target="_blank">Decideo.fr</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.squidsolutions.com/blog/web-intelligence/cite-de-la-musique-web-intelligence/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Squid&#8217;s presentation at EMC Forum Paris 2011</title>
		<link>http://www.squidsolutions.com/blog/web-intelligence/squids-presentation-at-emc-forum-paris-2011/</link>
		<comments>http://www.squidsolutions.com/blog/web-intelligence/squids-presentation-at-emc-forum-paris-2011/#comments</comments>
		<pubDate>Thu, 10 Nov 2011 14:18:49 +0000</pubDate>
		<dc:creator>Adrien Schmidt</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[Case Studies & White Papers]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[Web Intelligence]]></category>

		<guid isPermaLink="false">http://www.squidsolutions.com/?p=916</guid>
		<description><![CDATA[Adrien Schmidt, CEO of Squid Solutions, made a presentation in the Big Data session of the EMC Forum in Paris. The presentation was about deploying agile Business Apps on top of EMC Greenplum using Squid&#8217;s software. The presentation focused on: How to integration data sources in an agile way? The methodology described how Greenplum&#8217;s gpload and massively parallel processing (MPP) capacities were used within a Java integration procedure to gain time and ease of deployment. This was illustrated with examples of structured data from various types of RDMS (Oracle, MySQL, PostreSQL)...<p style="text-align:right"><a href="http://www.squidsolutions.com/blog/web-intelligence/squids-presentation-at-emc-forum-paris-2011/"><img src="/wp-content/themes/squid/images/read-more.png" alt="Read the whole story" /></a></p>]]></description>
			<content:encoded><![CDATA[<p><a href="https://www.emcforums2011.com/FR/EMC11004agenda.php" target="_blank"><img class="alignnone" title="EMC Forum Paris" src="https://www.emcforums2011.com/FR/images/new_new_banner.jpg" alt="" width="980" height="195" /></a></p>
<p>Adrien Schmidt, CEO of Squid Solutions, made a presentation in the Big Data session of the EMC Forum in Paris.</p>
<p>The presentation was about deploying agile Business Apps on top of EMC Greenplum using Squid&#8217;s software.</p>
<p><span id="more-916"></span></p>
<p>The presentation focused on:</p>
<ul>
<li>How to integration data sources in an agile way? The methodology described how Greenplum&#8217;s gpload and massively parallel processing (MPP) capacities were used within a Java integration procedure to gain time and ease of deployment. This was illustrated with examples of structured data from various types of RDMS (Oracle, MySQL, PostreSQL) and web log streams.</li>
<li>How to optimize performance by tuning distribution keys, partitions, columnar storage and aggressive caching.</li>
<li>How to roll out a Business App in an agile way through a bottom-up approach, building a metadata stack that leverages Greenplum&#8217;s MPP, and how to maintain those Apps in a changing environment.</li>
<li>How Squid&#8217;s Business Apps were &laquo;&nbsp;web ready&nbsp;&raquo;, meaning that they include a way to connect web traffic logs directly to Business Apps to derive insight from internet users.</li>
</ul>
<p>The video of the presentation should be available shortly, stay tuned!</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.squidsolutions.com/blog/web-intelligence/squids-presentation-at-emc-forum-paris-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Conférence de Squid avec IDC et EMC sur les Big Data</title>
		<link>http://www.squidsolutions.com/blog/business-intelligence/conference-de-squid-avec-idc-et-emc-sur-les-big-data/</link>
		<comments>http://www.squidsolutions.com/blog/business-intelligence/conference-de-squid-avec-idc-et-emc-sur-les-big-data/#comments</comments>
		<pubDate>Fri, 04 Nov 2011 16:04:07 +0000</pubDate>
		<dc:creator>Adrien Schmidt</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[Business Intelligence]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.squidsolutions.com/?p=907</guid>
		<description><![CDATA[&#160; Laurent Chiozzotto, responsable des Alliances de Squid, et Vincent Soquet, Solution principal BI / EIM (Enterprise Information Management) chez EMC France, ont présenté ensemble une nouvelle approche de la BI grâce aux Big Data. Points clés de la présentation : Les 3 points clés du Big Data sont la Variété, la Vélocité et le Volume des données L&#8217;exploitation business se fait en faisant converger les flux de données, en exploitant des algorithmes d&#8217;analytique avancée, et en injectant les résultats non seulement dans des tableaux de bord mais aussi dans les...<p style="text-align:right"><a href="http://www.squidsolutions.com/blog/business-intelligence/conference-de-squid-avec-idc-et-emc-sur-les-big-data/"><img src="/wp-content/themes/squid/images/read-more.png" alt="Read the whole story" /></a></p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://idcevents.com/41291-idc-s-big-data-et-information-management-conference-2011-france/7-overview/" target="_blank"><img class="alignnone" title="IDC Big Data Conference" src="http://idcevents.com/dwn/SF_40995_idc_fr_big_data_info_mnt_oct2011_1004x145.gif" alt="" width="1004" height="145" /></a></p>
<p>&nbsp;</p>
<p>Laurent Chiozzotto, responsable des Alliances de Squid, et Vincent Soquet, Solution principal BI / EIM (Enterprise Information Management) chez EMC France, ont présenté ensemble une nouvelle approche de la BI grâce aux Big Data.<span id="more-907"></span></p>
<p>Points clés de la présentation :</p>
<ul>
<li>Les 3 points clés du Big Data sont la Variété, la Vélocité et le Volume des données</li>
<li>L&#8217;exploitation business se fait en faisant converger les flux de données, en exploitant des algorithmes d&#8217;analytique avancée, et en injectant les résultats non seulement dans des tableaux de bord mais aussi dans les systèmes opérationnels</li>
<li>La méthodologie de Squid, qui repose sur le déploiement agile de Business Apps en SaaS, repose sur : (1) une intégration plus rapide des données ; (2) une conception des calculs directement sur les modèles de données sources pour gagner du temps par rapport aux agrégations intermédiaires ; (3) le déploiement à travers des web apps interactives qui tournent directement sur les données brutes, et/ou via des web services liant d&#8217;autres applications.</li>
<li>L&#8217;impact sur les méthodes des DSI affecte plusieurs domaines, notamment leur rôle dans la collecte et la mise à disposition de sources d&#8217;informations de plus en plus nombreuses. C&#8217;est la notion de &laquo;&nbsp;DSI as a Service&nbsp;&raquo; !</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.squidsolutions.com/blog/business-intelligence/conference-de-squid-avec-idc-et-emc-sur-les-big-data/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Squid Solutions lance le Web Intelligence Club</title>
		<link>http://www.squidsolutions.com/blog/web-intelligence/squid-solutions-lance-le-web-intelligence-club/</link>
		<comments>http://www.squidsolutions.com/blog/web-intelligence/squid-solutions-lance-le-web-intelligence-club/#comments</comments>
		<pubDate>Tue, 04 Oct 2011 12:57:39 +0000</pubDate>
		<dc:creator>Adrien Schmidt</dc:creator>
				<category><![CDATA[About our Partners]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[Press Releases]]></category>
		<category><![CDATA[Web Intelligence]]></category>

		<guid isPermaLink="false">http://www.squidsolutions.com/?p=901</guid>
		<description><![CDATA[Squid Solutions fédère les acteurs de la web Intelligence en créant le Web Intelligence Club qui regroupe les intervenants les plus en pointe sur le pilotage des business web par les données. Les activités Internet génèrent aujourd&#8217;hui des quantités astronomiques de données souvent peu exploitées par les décideurs. Le concept de la Web Intelligence consiste à mettre en œuvre les outils et les méthodes appropriés pour tirer parti de toutes les données et gérer les business web à 360°. Les membres du Web Intelligence Club sont des acteurs de l&#8217;Internet...<p style="text-align:right"><a href="http://www.squidsolutions.com/blog/web-intelligence/squid-solutions-lance-le-web-intelligence-club/"><img src="/wp-content/themes/squid/images/read-more.png" alt="Read the whole story" /></a></p>]]></description>
			<content:encoded><![CDATA[<p>Squid Solutions fédère les acteurs de la web Intelligence en créant le <a href="http://www.webintelligenceclub.fr/">Web Intelligence Club</a> qui regroupe les intervenants les plus en pointe sur le pilotage des business web par les données. Les activités Internet génèrent aujourd&#8217;hui des quantités astronomiques de données souvent peu exploitées par les décideurs. Le concept de la Web Intelligence consiste à mettre en œuvre les outils et les méthodes appropriés pour tirer parti de toutes les données et gérer les business web à 360°.<span id="more-901"></span></p>
<p>Les membres du Web Intelligence Club sont des acteurs de l&#8217;Internet &#8211; SSII, agences numériques, éditeurs de solutions technologiques – qui, chacun dans leur métier, créent, utilisent ou valorisent des données pour améliorer la performance des business web.</p>
<p>L&#8217;objectif du Web Intelligence Club est de favoriser les échanges entre professionnels afin de diffuser les bonnes pratiques. A terme, le Club a pour ambition de proposer à l&#8217;ensemble de l&#8217;écosystème digital (e-marchands, annonceurs, medias en ligne,…) une approche globale pour optimiser la performance des business en ligne par des actions mesurables, pilotées par les données. Les domaines couverts par le club vont de la définition de la stratégie à la mise en œuvre de solutions opérationnelles en passant par l’optimisation des infrastructures techniques.</p>
<p>La première réunion de constitution du Club a rassemblé 13 sociétés : BI Square, Cedexis, Data Publica, EMC Greenplum, Experian Marketing Services, Micropole, Netvibes, Orixa Media, Probance, Sipeo, Squid Solutions, Syllabs et Uptilab. Le Club est ouvert à tous ceux qui veulent faire progresser les compétences et accélérer la croissance dans le secteur de l&#8217;économie numérique.</p>
<p>Pour Laurent Chiozzotto, Directeur des Alliances chez Squid Solutions : « Le Web Intelligence Club est un véritable réseau de confiance dont les membres reconnaissent leurs expertises réciproques et collaborent afin d&#8217;apporter les réponses les plus adaptées aux besoins de pilotage des business en ligne.»</p>
<p>&nbsp;</p>
<p>Retrouvez les membres et l&#8217;actualité du Club sur <a href="http://www.webintelligenceclub.fr/">www.webintelligenceclub.fr</a></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.squidsolutions.com/blog/web-intelligence/squid-solutions-lance-le-web-intelligence-club/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
