<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:og="http://ogp.me/ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:schema="http://schema.org/" xmlns:sioc="http://rdfs.org/sioc/ns#" xmlns:sioct="http://rdfs.org/sioc/types#" xmlns:skos="http://www.w3.org/2004/02/skos/core#" xmlns:xsd="http://www.w3.org/2001/XMLSchema#" version="2.0" xml:base="http://techbuilders.info/search/software">
  <channel>
    <title>Software</title>
    <link>http://techbuilders.info/search/software</link>
    <description/>
    <language>en</language>
    
    <item>
  <title>Up and running with Apache Zeppelin</title>
  <link>http://techbuilders.info/blog/and-running-apache-zeppelin</link>
  <description>&lt;span class="field field--name-title field--type-string field--label-hidden"&gt;Up and running with Apache Zeppelin&lt;/span&gt;
&lt;span class="field field--name-uid field--type-entity-reference field--label-hidden"&gt;&lt;span lang="" about="http://techbuilders.info/user/40" typeof="schema:Person" property="schema:name" datatype="" xml:lang=""&gt;alex@techbuilders&lt;/span&gt;&lt;/span&gt;
&lt;span class="field field--name-created field--type-created field--label-hidden"&gt;Mon, 02/26/2018 - 01:08&lt;/span&gt;

            &lt;div class="clearfix text-formatted field field--name-body field--type-text-with-summary field--label-hidden field__item"&gt;&lt;p&gt;&lt;a href="http://zeppelin.apache.org/"&gt;Apache Zeppelin&lt;/a&gt; is a web-based notebook that enables data-driven, interactive data analytics and collaborative documents with SQL, Scala and more. It has great features, good support, and the platform is visually appealing and built to scale. The only issue with this solution is the lack of details and assumptions made in the documentation which makes it painful to even get started. We have built a goof-proof accelerator script to get up and running as if you knew what you were doing!&lt;/p&gt;

&lt;p&gt;As of the time of this article, Apache Zeppelin is on version &lt;s&gt;&lt;strong&gt;0.7.3&lt;/strong&gt;&lt;/s&gt;&lt;strong&gt; 0.8.0&lt;/strong&gt; and still in beta. The dev team has made some great progress over the past few years introducing &lt;a href="https://shiro.apache.org/"&gt;Apache Shiro&lt;/a&gt; for multi-user authentication and building custom visualization plugins with helium. To get started, the project leads assume you're familiar with, have access to, and want to deploy Apache Zeppelin using docker images or Amazon Web Services. For the guy trying to build a proof of concept (as cheap as possible) and see what it's all about, this is pretty frustrating given you have to have access to and experience with other technologies and platforms. At some point, you end up so side-tracked and strung out from going down rabbit holes that you forget what your initial goal was. &lt;strong&gt;My intention is to make getting started as easy as possible for the layman to check out a fantastic open source project.&lt;/strong&gt; In this tutorial, we'll focus on a single node installation, and scale this out to multiple nodes, incorporating authentication, and installing an SSL certificate.&lt;/p&gt;

&lt;p&gt;For this tutorial, I'm installing on a Virtual Machine (Hyper-V specifically) and have had decent performance for small to medium proof of concepts using the minimum requirements below. If you're new to Ubuntu, I suggest working with the Desktop version as it's a little easier to understand if you're coming from the Windows world and like a GUI to work with. I'll be using the Desktop version for clarity sake, the Server version is exactly the same but assumes you're comfortable with the terminal.&lt;/p&gt;

&lt;h4&gt;Minimum Requirements:&lt;/h4&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;a href="https://www.ubuntu.com/"&gt;Ubuntu 16.04.03 LTS&lt;/a&gt; (&lt;a href="https://www.ubuntu.com/download/desktop"&gt;Desktop&lt;/a&gt; or &lt;a href="https://www.ubuntu.com/download/server"&gt;Server&lt;/a&gt;)&lt;/p&gt;

&lt;p&gt;4 Virtual Processors&lt;/p&gt;

&lt;p&gt;8GB of RAM&lt;/p&gt;

&lt;p&gt;25GB of Hard Disk (Ubuntu requirement)&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h4&gt;Assumptions&lt;/h4&gt;

&lt;blockquote&gt;
&lt;p&gt;You know how to set up a Virtual Machine (see: &lt;a href="https://youtu.be/jsDB3AsCh2k"&gt;https://youtu.be/jsDB3AsCh2k&lt;/a&gt; )&lt;/p&gt;

&lt;p&gt;Admin access to this Virtual Machine&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;That's the only assumptions? YES! After you create a bare bones virtual machine, our installer script takes care of (most) of the rest.&lt;/p&gt;

&lt;h4&gt; &lt;/h4&gt;

&lt;h4&gt;Step #1 Find and use the terminal&lt;/h4&gt;

&lt;p&gt;We pick this up at the desktop of a clean install of Ubuntu 16.04.03. Open the terminal and run&lt;/p&gt;

&lt;pre&gt;
sudo apt-get upgrade

wget https://raw.githubusercontent.com/techbui1ders/apachezeppelin-starterkit/master/latest/install-zeppelin.sh

chmod +x install-zeppelin.sh

sudo yes | ./install-zeppelin.sh&lt;/pre&gt;

&lt;p&gt;&lt;img alt="TechBuilders - Apache Zeppelin" data-entity-type="file" data-entity-uuid="29efa7b8-597e-47f6-9c19-829077d4f07c" height="442" src="http://techbuilders.info/sites/default/files/inline-images/techbuilders-apachezeppelin.PNG" width="684" /&gt;&lt;/p&gt;

&lt;p&gt;Then go and get some coffee as it's going to take a bit. Behind the scenes, it's downloading and unpacking the following (and it's dependencies) in order&lt;/p&gt;

&lt;pre&gt;
        Java
        Apache Zeppelin (0.8.0 or current)
        Apache Hadoop 2.7.7
        Apache Spark 2.1.0 with Hadoop 2.7
        SparkR interpreter with handy R packages
            devtools
            googleVis
            knitr
            ggplot2
            mplot
            plotly
        Matplotlib &amp; Numpy for Python&lt;/pre&gt;

&lt;p&gt;At the end of the install, Zeppelin will will have an OK status and a readout of the IP address and port that it's now hosted on.&lt;/p&gt;

&lt;p&gt;&lt;img alt="TechBuilders - Apache Zeppelin" data-entity-type="file" data-entity-uuid="56c6013d-4820-4d07-ae1a-b2f7a170481a" height="431" src="http://techbuilders.info/sites/default/files/inline-images/techbuilders-apachezeppelin2.PNG" width="678" /&gt;&lt;/p&gt;

&lt;p&gt;If you don't see the OK and it failed, check to make sure you have Java installed with&lt;/p&gt;

&lt;pre&gt;
$ java -version&lt;/pre&gt;

&lt;p&gt;If there is no version listed, install java and run the following to restart Apache Zeppelin&lt;/p&gt;

&lt;pre&gt;
$ sudo apt-get install default-jdk
$ /usr/lib/zeppelin/bin/zeppelin-daemon.sh start&lt;/pre&gt;

&lt;h4&gt; &lt;/h4&gt;

&lt;h4&gt;Step #2 Take flight&lt;/h4&gt;

&lt;p&gt;At this point, the engines are warmed and you're cleared for takeoff. Step outside of your virtual machine and browse to the IP address listed during the install. If you missed the IP address. Check it again using&lt;/p&gt;

&lt;pre&gt;
$ ifconfig&lt;/pre&gt;

&lt;p&gt;Look for the 'inet addr:' and then use that address plus the port 8080 to get started.&lt;/p&gt;

&lt;p&gt;&lt;img alt="TechBuilders - Apache Zeppelin" data-entity-type="file" data-entity-uuid="b3299954-3627-4bd6-9757-a7fe1b9697a8" height="280" src="http://techbuilders.info/sites/default/files/inline-images/techbuilders-apachezeppelin3.PNG" width="891" /&gt;&lt;/p&gt;

&lt;p&gt; &lt;/p&gt;

&lt;p&gt;From here, we have one slight adjustment to make in an interpreter to have the tutorials flow smoothly. You're currently signed in as 'anonymous', click the user name in the top right hand corner and a dropdown will appear, click 'interpreter' and search for 'sh'. You'll need to modify the shell.command.timeout.millisecs from 1 minute (60000 milliseconds) to a few minutes (3000000)&lt;/p&gt;

&lt;p&gt;&lt;img alt="TechBuilders - Apache Zeppelin" data-entity-type="file" data-entity-uuid="177a7a2a-baea-4338-941b-2300a7e762c7" height="396" src="http://techbuilders.info/sites/default/files/inline-images/techbuilders-apachezeppelin5.PNG" width="637" /&gt;&lt;/p&gt;

&lt;p&gt; &lt;/p&gt;

&lt;p&gt;Now you're all set to begin! Go into the Zeppelin tutorial and run all paragraphs for the first &lt;strong&gt;four&lt;/strong&gt; tutorials to make sure the interpreters and corresponding libraries are installed and running correctly. The R tutorial is more visually appealing and tends to give you a good basis for what can be done.&lt;/p&gt;

&lt;p&gt;&lt;img alt="TechBuilders - Apache Zeppelin" data-entity-type="file" data-entity-uuid="ad2469a1-588b-4bf8-aa50-b804b618f316" src="http://techbuilders.info/sites/default/files/inline-images/techbuilders-apachezeppelin4.PNG" /&gt;&lt;/p&gt;

&lt;p&gt; &lt;/p&gt;

&lt;p&gt;The 'Using Mahout' and 'Using Pig for querying data' tutorials don't work out of the box (testing before deployment is hard...mmmk!). We'll spend some time correcting these issues in the install script and will update when completed.&lt;/p&gt;

&lt;p&gt;From here, I would get familiar with the interpreters and creating / sharing notebooks. Understand how to edit the variables in the interpreters and how that factors in as you'll need to be comfortable changing this configurations to scale this platform out. Since you've installed Ubuntu Desktop, take some time to visually go to the Zeppelin configuration folder paths (specifically zeppelin.home) to see the files and information contained within them.&lt;/p&gt;

&lt;p&gt; &lt;/p&gt;

&lt;h4&gt;Step #3 Go into Orbit&lt;/h4&gt;

&lt;p&gt;If you don't have an S3 bucket already, set up an S3 bucket and place a CSV into it and connect Zeppelin using your favorite interpreter to do some data manipulation and plotting with it. After this point, you should be pretty comfortable with the basics of a single node installation of Apache Zeppelin installed. Below are some useful links to start the learning process with how to scale this out.&lt;/p&gt;

&lt;p&gt; &lt;/p&gt;

&lt;h4&gt;What's Next?&lt;/h4&gt;

&lt;p&gt;So we've installed Apache Zeppelin on a single node with anonymous authentication. We need to take this from POC to a solution that's a bit more enterprise. Our next articles on Apache Zeppelin will contain tutorials on Apache Shiro for authentication and connecting multiple nodes for more processing power. Hope you've enjoyed! Please comment with any questions.&lt;/p&gt;
&lt;/div&gt;
      
  &lt;div class="field field--name-field-thumbnail field--type-image field--label-above"&gt;
    &lt;div class="field__label"&gt;Thumbnail&lt;/div&gt;
              &lt;div class="field__item"&gt;  &lt;img src="http://techbuilders.info/sites/default/files/2018-02/techbuilders-apachezeppelin.PNG" width="562" height="400" alt="TechBuilders - Apache Zeppelin" typeof="foaf:Image" /&gt;&lt;/div&gt;
          &lt;/div&gt;

  &lt;div class="field field--name-field-blog-category field--type-entity-reference field--label-above"&gt;
    &lt;div class="field__label"&gt;Blog Category&lt;/div&gt;
          &lt;div class="field__items"&gt;
              &lt;div class="field__item"&gt;&lt;a href="http://techbuilders.info/search/software" hreflang="en"&gt;Software&lt;/a&gt;&lt;/div&gt;
          &lt;div class="field__item"&gt;&lt;a href="http://techbuilders.info/search/tutorials" hreflang="en"&gt;Tutorials&lt;/a&gt;&lt;/div&gt;
          &lt;div class="field__item"&gt;&lt;a href="http://techbuilders.info/search/datascience" hreflang="en"&gt;Data Science&lt;/a&gt;&lt;/div&gt;
              &lt;/div&gt;
      &lt;/div&gt;

                    &lt;!--div class="field__items"--&gt;
                            &lt;a href="http://techbuilders.info/taxonomy/term/69" hreflang="en"&gt;Apache&lt;/a&gt;,                             &lt;a href="http://techbuilders.info/taxonomy/term/59" hreflang="en"&gt;Machine Learning&lt;/a&gt;,                             &lt;a href="http://techbuilders.info/taxonomy/term/60" hreflang="en"&gt;Data Science&lt;/a&gt;,                             &lt;a href="http://techbuilders.info/taxonomy/term/62" hreflang="en"&gt;Visualization&lt;/a&gt;                        &lt;!--/div--&gt;
        
&lt;ul class="comments"&gt;&lt;/ul&gt;&lt;div class="post-block post-leave-comment"&gt;
        &lt;h3 class="heading-primary"&gt;Leave a comment&lt;/h3&gt;
        &lt;!--h2 class="title comment-form__title"&gt;&lt;/h2--&gt;
        &lt;drupal-render-placeholder callback="comment.lazy_builders:renderForm" arguments="0=node&amp;1=95&amp;2=comment&amp;3=comment" token="ZYNxPiMsobBysQHKqCmjPtjvfpcaPueCkbQMvxeruQ0"&gt;&lt;/drupal-render-placeholder&gt;&lt;/div&gt;


  &lt;div class="field field--name-field-blog-display field--type-list-string field--label-above"&gt;
    &lt;div class="field__label"&gt;Blog Display&lt;/div&gt;
              &lt;div class="field__item"&gt;Thumbnail&lt;/div&gt;
          &lt;/div&gt;
</description>
  <pubDate>Mon, 26 Feb 2018 01:08:53 +0000</pubDate>
    <dc:creator>alex@techbuilders</dc:creator>
    <guid isPermaLink="false">95 at http://techbuilders.info</guid>
    </item>
<item>
  <title>Making Sense of Qliks new pricing strategy</title>
  <link>http://techbuilders.info/blog/making-sense-qliks-new-pricing-strategy</link>
  <description>&lt;span class="field field--name-title field--type-string field--label-hidden"&gt;Making Sense of Qliks new pricing strategy&lt;/span&gt;
&lt;span class="field field--name-uid field--type-entity-reference field--label-hidden"&gt;&lt;span lang="" about="http://techbuilders.info/user/40" typeof="schema:Person" property="schema:name" datatype="" xml:lang=""&gt;alex@techbuilders&lt;/span&gt;&lt;/span&gt;
&lt;span class="field field--name-created field--type-created field--label-hidden"&gt;Wed, 02/15/2017 - 03:46&lt;/span&gt;

            &lt;div class="clearfix text-formatted field field--name-body field--type-text-with-summary field--label-hidden field__item"&gt;&lt;p&gt;Navigating software licensing can be an incredibly complex, humbling, and frustrating ordeal (I'm looking at you Microsoft) especially when trying to compare across vendors. You don't want to get too 'involved' just to find out they don't have certain features power users need or they are not delivering on their product strategy. While you may receive better support and pricing, going with a smaller vendor carries the risk of holding the vaporware that was once the most innovative product on the market. Thankfully, business intelligence is a very competitive space to operate in and many of the large BI vendors offer similar pricing structures, except for &lt;a href="https://www.qlik.com"&gt;Qlik&lt;/a&gt; -until now.&lt;/p&gt;

&lt;h3&gt;What's Changing for Who?&lt;/h3&gt;

&lt;p&gt;Consistent with Qlik's long term vision, they continue to treat &lt;a href="https://www.qlik.com/us/products/qlikview"&gt;QlikView&lt;/a&gt; as the red-headed stepchild. The pricing changes only apply to &lt;a href="https://www.qlik.com/us/products/qlik-sense"&gt;Qlik Sense&lt;/a&gt; customers, QlikView users will not get to take part in any of the changes and should expect to see business as usual. The main takeaways to the pricing changes are below;&lt;/p&gt;

&lt;ul&gt;&lt;li&gt;Introduction of the new Professional and Analyzer user model for Qlik Sense® Enterprise, available for both subscription and perpetual licensing.&lt;/li&gt;
	&lt;li&gt;New packaging for Qlik Sense Enterprise will bundle the capabilities of the following products into the user price for Qlik Sense Enterprise: 
	&lt;ul&gt;&lt;li&gt;Qlik Qlik GeoAnalytics&lt;sup&gt;®&lt;/sup&gt; base&lt;/li&gt;
		&lt;li&gt;Qlik Web Connectors&lt;sup&gt;®&lt;/sup&gt;&lt;/li&gt;
		&lt;li&gt;Qlik DataMarket&lt;sup&gt;®&lt;/sup&gt; Essentials&lt;/li&gt;
		&lt;li&gt;Test &amp; Dev Servers included (Subscription only)&lt;/li&gt;
	&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;New pricing for Qlik Sense&lt;sup&gt;®&lt;/sup&gt; Cloud Business&lt;/li&gt;
	&lt;li&gt;Qlik GeoAnalytics perpetual and subscription offerings are now the same&lt;/li&gt;
	&lt;li&gt;Updated discount framework and tiers for perpetual and subscription&lt;/li&gt;
	&lt;li&gt;Consumption based pricing (coming soon!)&lt;/li&gt;
&lt;/ul&gt;&lt;h3&gt;What does it mean?&lt;/h3&gt;

&lt;p&gt;There are four material changes to understand, one not being so obvious. First, let's tackle the subscription vs perpetual vs consumption piece of the puzzle.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Perpetual&lt;/strong&gt; is the choice if you plan on staying with Qlik Sense for the foreseeable future and have the budget to take the initial hit. Overtime, the total cost of ownership will be very cheap compared to other major vendors and pricing models.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Subscription &lt;/strong&gt;is a recurring payment that will result in a total ownership cost being higher than perpetual for long term projects, but ideal for those without the healthy starting budgets. This model spreads the cost over the years as opposed to the large first year obligation. Customers can also scale up and down as their needs change with savings realized earlier than the perpetual method.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Consumption&lt;/strong&gt; is a 'pay only for what you use' type model which works well if value can be tied directly to consumption. It's a double sided sward that's great when usage is low and value is high (healthcare research?!) and painful when usage is high with little tangible value derived in the immediate term. &lt;/p&gt;
&lt;img alt="Qlik License Types" data-entity-type="file" data-entity-uuid="f41c33ba-17ff-42a5-8783-185d33799896" src="http://techbuilders.info/sites/default/files/inline-images/qlik-licensetypes.PNG" class="align-center" /&gt;&lt;p&gt;The second main change to the pricing is a Professional and Analyzer designation. This means the customer gets to determine who the consumers of the dashboards are and who are the developers or power users. &lt;strong&gt;The Analyzer license is generally about 57% cheaper than the Professional license.&lt;/strong&gt; A user can start out on the cheaper Analyzer license, and then migrate to the Professional license as they become more familiar and needs increase. Also, the Analyzer license inherently applies restrictions as opposed to the administrator applying them, which makes life easy. In a scenario where developers are deploying reports to a lot of non-technical folk who have no need for self-service, the Analyzer license is a great way to save money.&lt;/p&gt;

&lt;p&gt;To add more complexity, the third material change is tiered pricing. Tiered pricing means that regardless of designation (Professional/Analyzer), the customer can accrue discounts based on the the number of licenses obtained. For the Subscription based model, the discounts are based on total licenses purchased in aggregate. For Perpetual, the discounts are per transaction. &lt;/p&gt;

&lt;p&gt;For example, if the client has 100 licenses and is purchasing an additional 200 perpetual licenses they would get a 0% discount for the first 50, 5% on 51-100, and 10% on 101-250. This equates to a discount around 7% or so over a non-tiered based method.&lt;/p&gt;

&lt;p&gt;The fourth and final material change is not so obvious. Qlik no longer requires purchasing licenses in packs of 5. This move towards Professional and Analyzer designation only requires 1 Professional license to begin, and any implementation is going to have a Qlik Sense admin so this plays well for the consumer. Additional licenses can be purchased one at a time, catering to the consumer as needs change - this is a big benefit! One downside detail is that starter packs are no longer available, but all things considered that's a non-issue considering 1 Professional license is still less than the cost of 1 starter pack priced license (woot!)&lt;/p&gt;

&lt;h3&gt;Great, I'm still confused&lt;img alt="wut" data-entity-type="file" data-entity-uuid="3792b117-7147-4da3-bc21-e159c2cd26b9" src="http://techbuilders.info/sites/default/files/inline-images/whatdoesitmean.jpg" class="align-right" /&gt;&lt;/h3&gt;

&lt;p&gt; In general, your Qlik partner or Sales Rep will be able to help you with your unique situation.&lt;/p&gt;

&lt;p&gt; If you're just starting out, I would break the changes down into three steps.&lt;/p&gt;

&lt;ol&gt;&lt;li&gt; Determine Perpetual, Subscription, or Consumption based on typical user base, long term goals, and  funding.&lt;/li&gt;
	&lt;li&gt; Determine the number of developers you have to get a sense of how many Professional licenses you'll need immediately, then think about number of users you'll need in the testing process and number of power users you'll roll out to first (if different from the UAT testers). You want to purchase just enough to be productive, but not so many they are sitting idle.&lt;/li&gt;
	&lt;li&gt;Take advantage of Tiered pricing and work with your partner to meet your budget requirements. As a partner, there are a few levers we can pull to make sure the client is a happy camper - utilize your influence and partner relationships.&lt;/li&gt;
&lt;/ol&gt;&lt;p&gt;&lt;a href="https://github.com/techbui1ders/QlikSense-LicenseAnalyst"&gt;&lt;img alt="TechBuilders License Analyst" data-entity-type="file" data-entity-uuid="c6f34e8e-eda0-4fe2-bc06-5411e31ca3fc" height="144" src="http://techbuilders.info/sites/default/files/inline-images/tb-licenseanalyst.PNG" width="139" class="align-left" /&gt;&lt;/a&gt;We have built a Qlik Sense dashboard that should help paint broad strokes from a pricing perspective. Choose the License Model type, number of Professional and Analyzer licenses, the project timeframe and a sample plot of the annual fees will display with a few other key metrics. The pricing used is based on the highest dollar amount per license type, as mentioned in the third bullet there are other levers that can be pulled. Consumption based pricing is not as straight forward, and thus removed from the analysis.&lt;/p&gt;

&lt;p&gt;Often times, we have customers interested in the price per user per month. This application is focused on deriving that value and showing the weighted monthly cost per user depending on how long your time horizon is. Generally speaking, the longer you use your Qlik Sense assets, the cheaper it is per user per month.&lt;/p&gt;

&lt;p&gt;The enormous benefit of Qlik Sense is that users can have access to an &lt;strong&gt;unlimited&lt;/strong&gt; amount of dashboards without a marginal increase in cost.&lt;/p&gt;

&lt;p&gt;An example, using our dashboard for 5 Professional and 100 Analyzer Users, the effective cost in a perpetual model is $26/month after 5 years for access to unlimited dashboards... that.is.AMAZING!&lt;/p&gt;
&lt;img alt="TechBuilders License Analyst" data-entity-type="file" data-entity-uuid="96c2dbb7-22bf-4bd8-9147-3c537e06d9de" src="http://techbuilders.info/sites/default/files/inline-images/blog-perpetuallicense_1.PNG" class="align-center" /&gt;&lt;p&gt;This dashboard can be found on our github page at &lt;a href="https://github.com/techbui1ders/QlikSense-LicenseAnalyst"&gt;https://github.com/techbui1ders/QlikSense-LicenseAnalyst&lt;/a&gt; . Take a look and let us know if you have any questions or feedback!&lt;/p&gt;

&lt;p&gt;Please note this is using USA based pricing as of 2/2018 and is not to be used as a basis of a quote. Please reach out to your partner or rep for an accurate quote.&lt;/p&gt;

&lt;h3&gt;Keeping your enemies closer&lt;/h3&gt;

&lt;p&gt;The payment structure and user segmentation was a hurdle that was figured out early by &lt;a href="www.tableau.com"&gt;Tableau&lt;/a&gt;, and many other vendors followed suit. Qlik has generally taken the position of distancing themselves from competitors by thinking independently. In this case, imitation is just what Qlik needed to keep current customers happy and drive adoption and usage with new customers.&lt;/p&gt;

&lt;h3&gt;Wrapping it up&lt;/h3&gt;

&lt;p&gt;Software licensing continues to be complex to the point of giving up, and Qlik is really no different. While annoying to juggle, these changes are a major step forward for Qlik and we look forward to seeing how this new pricing ultimately plays out. The features coming in the 2018 releases should continue to position Qlik Sense as a top player in the business intelligence field at fantastic price points.&lt;/p&gt;
&lt;/div&gt;
      
  &lt;div class="field field--name-field-thumbnail field--type-image field--label-above"&gt;
    &lt;div class="field__label"&gt;Thumbnail&lt;/div&gt;
              &lt;div class="field__item"&gt;  &lt;img src="http://techbuilders.info/sites/default/files/2018-02/itMcsy5.gif" width="560" height="240" alt="TechBuilders License Analyst" typeof="foaf:Image" /&gt;&lt;/div&gt;
          &lt;/div&gt;

  &lt;div class="field field--name-field-blog-category field--type-entity-reference field--label-above"&gt;
    &lt;div class="field__label"&gt;Blog Category&lt;/div&gt;
          &lt;div class="field__items"&gt;
              &lt;div class="field__item"&gt;&lt;a href="http://techbuilders.info/search/technology" hreflang="en"&gt;Technology&lt;/a&gt;&lt;/div&gt;
          &lt;div class="field__item"&gt;&lt;a href="http://techbuilders.info/search/software" hreflang="en"&gt;Software&lt;/a&gt;&lt;/div&gt;
              &lt;/div&gt;
      &lt;/div&gt;

                    &lt;!--div class="field__items"--&gt;
                            &lt;a href="http://techbuilders.info/taxonomy/term/66" hreflang="en"&gt;Qlik&lt;/a&gt;,                             &lt;a href="http://techbuilders.info/taxonomy/term/67" hreflang="en"&gt;Qlik Sense&lt;/a&gt;                        &lt;!--/div--&gt;
        
&lt;ul class="comments"&gt;&lt;a id="comment-1"&gt;&lt;/a&gt;
    

&lt;li class="comment-item"&gt;
    &lt;div class="comment"&gt;

        &lt;div class="img-thumbnail"&gt;
            &lt;article typeof="schema:Person" about="http://techbuilders.info/user/0" class="profile"&gt;&lt;div class="views-element-container"&gt;&lt;div class="view view-profiles view-id-profiles view-display-id-user_view js-view-dom-id-dbc1c0401a44d38d937bc01f27babb9566439ea431e7279727a4785e331730e2"&gt;
  
    
      
      &lt;div class="view-content"&gt;
          &lt;div class="views-view-grid horizontal cols-4 clearfix"&gt;
            &lt;div class="views-row clearfix row-1"&gt;
                  &lt;div class="views-col col-1" style="width: 25%;"&gt;
            &lt;div class="views-field views-field-rendered-entity"&gt;&lt;span class="field-content"&gt;&lt;/span&gt;&lt;/div&gt;
          &lt;/div&gt;
              &lt;/div&gt;
      &lt;/div&gt;

    &lt;/div&gt;
  
          &lt;/div&gt;
&lt;/div&gt;
&lt;/article&gt;&lt;/div&gt;

        &lt;div class="comment-block"&gt;

            &lt;div class="comment-arrow"&gt;&lt;/div&gt;

            &lt;span class="comment-by"&gt;
                &lt;strong&gt;&lt;span rel="schema:author"&gt;&lt;span lang="" typeof="schema:Person" property="schema:name" datatype="" xml:lang=""&gt;Margie (not verified)&lt;/span&gt;&lt;/span&gt;
&lt;/strong&gt;
            &lt;/span&gt;

                            
                &lt;p property="schema:name" datatype=""&gt;&lt;strong&gt;Making Sense of Qliks new pricing strategy | TechBuilders&lt;/strong&gt;&lt;/p&gt;
                
            
            
            &lt;div property="schema:text" class="clearfix text-formatted field field--name-comment-body field--type-text-long field--label-hidden field__item"&gt;&lt;p&gt;Hey there,  You have done a fantastic job. I'll certainly&lt;br /&gt;
digg it and personally recommend to my friends. I am sure they'll be benefited from this website.&lt;/p&gt;
&lt;/div&gt;
      &lt;drupal-render-placeholder callback="comment.lazy_builders:renderLinks" arguments="0=1&amp;1=default&amp;2=en&amp;3=" token="f2l6E3exSxFDxa_4V_oxZaC4lhbUjGxcEMIVDS7iiXI"&gt;&lt;/drupal-render-placeholder&gt;&lt;span class="date pull-right"&gt;Tue, 05/01/2018 - 13:34  &lt;span property="schema:dateCreated" content="2018-05-01T13:34:15+00:00" class="rdf-meta hidden"&gt;&lt;/span&gt;
&lt;/span&gt;

                    &lt;/div&gt;
    &lt;/div&gt;
&lt;/li&gt;&lt;a id="comment-8"&gt;&lt;/a&gt;
    

&lt;li class="comment-item"&gt;
    &lt;div class="comment"&gt;

        &lt;div class="img-thumbnail"&gt;
            &lt;article typeof="schema:Person" about="http://techbuilders.info/user/0" class="profile"&gt;&lt;div class="views-element-container"&gt;&lt;div class="view view-profiles view-id-profiles view-display-id-user_view js-view-dom-id-dbc1c0401a44d38d937bc01f27babb9566439ea431e7279727a4785e331730e2"&gt;
  
    
      
      &lt;div class="view-content"&gt;
          &lt;div class="views-view-grid horizontal cols-4 clearfix"&gt;
            &lt;div class="views-row clearfix row-1"&gt;
                  &lt;div class="views-col col-1" style="width: 25%;"&gt;
            &lt;div class="views-field views-field-rendered-entity"&gt;&lt;span class="field-content"&gt;&lt;/span&gt;&lt;/div&gt;
          &lt;/div&gt;
              &lt;/div&gt;
      &lt;/div&gt;

    &lt;/div&gt;
  
          &lt;/div&gt;
&lt;/div&gt;
&lt;/article&gt;&lt;/div&gt;

        &lt;div class="comment-block"&gt;

            &lt;div class="comment-arrow"&gt;&lt;/div&gt;

            &lt;span class="comment-by"&gt;
                &lt;strong&gt;&lt;span rel="schema:author"&gt;&lt;span lang="" typeof="schema:Person" property="schema:name" datatype="" xml:lang=""&gt;Stefan (not verified)&lt;/span&gt;&lt;/span&gt;
&lt;/strong&gt;
            &lt;/span&gt;

                            
                &lt;p property="schema:name" datatype=""&gt;&lt;strong&gt;Making Sense of Qliks new pricing strategy | TechBuilders&lt;/strong&gt;&lt;/p&gt;
                
            
            
            &lt;div property="schema:text" class="clearfix text-formatted field field--name-comment-body field--type-text-long field--label-hidden field__item"&gt;&lt;p&gt;I’m not that much of a online reader to be honest but your blogs really nice, keep it up!&lt;br /&gt;
I'll go ahead and bookmark your site to come back in the future.&lt;br /&gt;
All the best&lt;/p&gt;
&lt;/div&gt;
      &lt;drupal-render-placeholder callback="comment.lazy_builders:renderLinks" arguments="0=8&amp;1=default&amp;2=en&amp;3=" token="roEwVhPI8x3guUlKO4gZlMfjatgWmh9ZcaE9ZvBUEwo"&gt;&lt;/drupal-render-placeholder&gt;&lt;span class="date pull-right"&gt;Sat, 06/02/2018 - 04:50  &lt;span property="schema:dateCreated" content="2018-06-02T04:50:30+00:00" class="rdf-meta hidden"&gt;&lt;/span&gt;
&lt;/span&gt;

                    &lt;/div&gt;
    &lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;&lt;div class="post-block post-leave-comment"&gt;
        &lt;h3 class="heading-primary"&gt;Leave a comment&lt;/h3&gt;
        &lt;!--h2 class="title comment-form__title"&gt;&lt;/h2--&gt;
        &lt;drupal-render-placeholder callback="comment.lazy_builders:renderForm" arguments="0=node&amp;1=53&amp;2=comment&amp;3=comment" token="1aq20o-1otLGi6MW0ImGvUHpLsfukNBQs7uHpQakXtI"&gt;&lt;/drupal-render-placeholder&gt;&lt;/div&gt;


  &lt;div class="field field--name-field-blog-display field--type-list-string field--label-above"&gt;
    &lt;div class="field__label"&gt;Blog Display&lt;/div&gt;
              &lt;div class="field__item"&gt;Thumbnail&lt;/div&gt;
          &lt;/div&gt;
</description>
  <pubDate>Wed, 15 Feb 2017 03:46:56 +0000</pubDate>
    <dc:creator>alex@techbuilders</dc:creator>
    <guid isPermaLink="false">53 at http://techbuilders.info</guid>
    <comments>http://techbuilders.info/blog/making-sense-qliks-new-pricing-strategy#comments</comments>
    </item>

  </channel>
</rss>
