Repository: incubator-superset-site
Updated Branches:
  refs/heads/asf-site 2ce436757 -> 87ce65472


New doc version


Project: http://git-wip-us.apache.org/repos/asf/incubator-superset-site/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-superset-site/commit/87ce6547
Tree: 
http://git-wip-us.apache.org/repos/asf/incubator-superset-site/tree/87ce6547
Diff: 
http://git-wip-us.apache.org/repos/asf/incubator-superset-site/diff/87ce6547

Branch: refs/heads/asf-site
Commit: 87ce65472d1242f423360eaa2a7e7b598f0bb444
Parents: 2ce4367
Author: Maxime Beauchemin <maxime.beauche...@apache.org>
Authored: Tue Aug 15 12:35:15 2017 -0700
Committer: Maxime Beauchemin <maxime.beauche...@apache.org>
Committed: Tue Aug 15 12:35:15 2017 -0700

----------------------------------------------------------------------
 _sources/faq.txt          | 40 ++++++++++++++++++++++++++++++++++++----
 _sources/index.txt        |  2 +-
 _sources/installation.txt |  4 ++--
 faq.html                  | 35 +++++++++++++++++++++++++++++++----
 index.html                |  4 +++-
 installation.html         |  4 ++--
 searchindex.js            |  2 +-
 7 files changed, 76 insertions(+), 15 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-superset-site/blob/87ce6547/_sources/faq.txt
----------------------------------------------------------------------
diff --git a/_sources/faq.txt b/_sources/faq.txt
index 1777ca4..d06c6c9 100644
--- a/_sources/faq.txt
+++ b/_sources/faq.txt
@@ -107,7 +107,8 @@ never be affected by any dashboard level filtering.
         "filter_immune_slice_fields": {
             "177": ["country_name", "__from", "__to"],
             "32": ["__from", "__to"]
-        }
+        },
+        "timed_refresh_immune_slices": [324]
     }
 
 In the json blob above, slices 324, 65 and 92 won't be affected by any
@@ -124,15 +125,33 @@ But what happens with filtering when dealing with slices 
coming from
 different tables or databases? If the column name is shared, the filter will
 be applied, it's as simple as that.
 
+
+How to limit the timed refresh on a dashboard?
+----------------------------------------------
+By default, the dashboard timed refresh feature allows you to automatically 
requery every slice on a dashboard according to a set schedule. Sometimes, 
however, you won't want all of the slices to be refreshed - especially if some 
data is slow moving, or run heavy queries.
+To exclude specific slices from the timed refresh process, add the 
``timed_refresh_immune_slices`` key to the dashboard ``JSON Metadata`` field:
+
+..code::
+
+    {
+       "filter_immune_slices": [],
+        "expanded_slices": {},
+        "filter_immune_slice_fields": {},
+        "timed_refresh_immune_slices": [324]
+    }
+
+In the example above, if a timed refresh is set for the dashboard, then every 
slice except 324 will be automatically requeried on schedule.
+
+
 Why does fabmanager or superset freezed/hung/not responding when started (my 
home directory is NFS mounted)?
 
-----------------------------------------------------------------------------------------
-superset creates and uses an sqlite database at ``~/.superset/superset.db``. 
Sqlite is known to `don't work well if used on NFS`__ due to broken file 
locking implementation on NFS.
+By default, superset creates and uses an sqlite database at 
``~/.superset/superset.db``. Sqlite is known to `don't work well if used on 
NFS`__ due to broken file locking implementation on NFS.
 
 __ https://www.sqlite.org/lockingv3.html
 
-One work around is to create a symlink from ~/.superset to a directory located 
on a non-NFS partition.
+You can override this path using the ``SUPERSET_HOME`` environment variable.
 
-Another work around is to change where superset stores the sqlite database by 
adding ``SQLALCHEMY_DATABASE_URI = 'sqlite:////new/localtion/superset.db'`` in 
superset_config.py (create the file if needed), then adding the directory where 
superset_config.py lives to PYTHONPATH environment variable (e.g. ``export 
PYTHONPATH=/opt/logs/sandbox/airbnb/``).
+Another work around is to change where superset stores the sqlite database by 
adding ``SQLALCHEMY_DATABASE_URI = 'sqlite:////new/location/superset.db'`` in 
superset_config.py (create the file if needed), then adding the directory where 
superset_config.py lives to PYTHONPATH environment variable (e.g. ``export 
PYTHONPATH=/opt/logs/sandbox/airbnb/``).
 
 How do I add new columns to an existing table
 ---------------------------------------------
@@ -152,3 +171,16 @@ How do I go about developing a new visualization type?
 Here's an example as a Github PR with comments that describe what the
 different sections of the code do:
 https://github.com/airbnb/superset/pull/3013
+
+What database engine can I use as a backend for Superset?
+--------------------------------------------------------
+
+To clarify, the *database backend* is an OLTP database used by Superset to 
store its internal
+information like your list of users, slices and dashboard definitions.
+
+Superset is tested using Mysql, Postgresql and Sqlite for its backend. It's 
recommended you
+install Superset on one of these database server for production.
+
+Using a column-store, non-OLTP databases like Vertica, Redshift or Presto as a 
database backend simply won't work as these databases are not designed for this 
type of workload. Installation on Oracle, Microsoft SQL Server, or other OLTP 
databases may work but isn't tested.
+
+Please note that pretty much any databases that have a SqlAlchemy integration 
should work perfectly fine as a datasource for Superset, just not as the OLTP 
backend.

http://git-wip-us.apache.org/repos/asf/incubator-superset-site/blob/87ce6547/_sources/index.txt
----------------------------------------------------------------------
diff --git a/_sources/index.txt b/_sources/index.txt
index fc18870..eba2e94 100644
--- a/_sources/index.txt
+++ b/_sources/index.txt
@@ -14,7 +14,7 @@ intelligence web application
 
 .. important::
 
-    **Disclaimer**: Apache Airflow is an effort undergoing incubation at The
+    **Disclaimer**: Apache Superset is an effort undergoing incubation at The
     Apache Software Foundation (ASF), sponsored by the Apache Incubator.
     Incubation is required of all newly accepted projects until a further
     review indicates that the infrastructure, communications, and

http://git-wip-us.apache.org/repos/asf/incubator-superset-site/blob/87ce6547/_sources/installation.txt
----------------------------------------------------------------------
diff --git a/_sources/installation.txt b/_sources/installation.txt
index c9b027a..e04bd68 100644
--- a/_sources/installation.txt
+++ b/_sources/installation.txt
@@ -444,8 +444,8 @@ your environment.::
 
     # assuming $SUPERSET_HOME as the root of the repo
     cd $SUPERSET_HOME/superset/assets
-    npm install
-    npm run build
+    yarn
+    yarn run build
     cd $SUPERSET_HOME
     python setup.py install
 

http://git-wip-us.apache.org/repos/asf/incubator-superset-site/blob/87ce6547/faq.html
----------------------------------------------------------------------
diff --git a/faq.html b/faq.html
index 8254d28..dcad373 100644
--- a/faq.html
+++ b/faq.html
@@ -95,9 +95,11 @@
 <li class="toctree-l2"><a class="reference internal" 
href="#why-are-my-queries-timing-out">Why are my queries timing out?</a></li>
 <li class="toctree-l2"><a class="reference internal" 
href="#why-is-the-map-not-visible-in-the-mapbox-visualization">Why is the map 
not visible in the mapbox visualization?</a></li>
 <li class="toctree-l2"><a class="reference internal" 
href="#how-to-add-dynamic-filters-to-a-dashboard">How to add dynamic filters to 
a dashboard?</a></li>
+<li class="toctree-l2"><a class="reference internal" 
href="#how-to-limit-the-timed-refresh-on-a-dashboard">How to limit the timed 
refresh on a dashboard?</a></li>
 <li class="toctree-l2"><a class="reference internal" 
href="#why-does-fabmanager-or-superset-freezed-hung-not-responding-when-started-my-home-directory-is-nfs-mounted">Why
 does fabmanager or superset freezed/hung/not responding when started (my home 
directory is NFS mounted)?</a></li>
 <li class="toctree-l2"><a class="reference internal" 
href="#how-do-i-add-new-columns-to-an-existing-table">How do I add new columns 
to an existing table</a></li>
 <li class="toctree-l2"><a class="reference internal" 
href="#how-do-i-go-about-developing-a-new-visualization-type">How do I go about 
developing a new visualization type?</a></li>
+<li class="toctree-l2"><a class="reference internal" 
href="#what-database-engine-can-i-use-as-a-backend-for-superset">What database 
engine can I use as a backend for Superset?</a></li>
 </ul>
 </li>
 </ul>
@@ -225,7 +227,8 @@ never be affected by any dashboard level filtering.</p>
     <span class="s2">&quot;filter_immune_slice_fields&quot;</span><span 
class="p">:</span> <span class="p">{</span>
         <span class="s2">&quot;177&quot;</span><span class="p">:</span> <span 
class="p">[</span><span class="s2">&quot;country_name&quot;</span><span 
class="p">,</span> <span class="s2">&quot;__from&quot;</span><span 
class="p">,</span> <span class="s2">&quot;__to&quot;</span><span 
class="p">],</span>
         <span class="s2">&quot;32&quot;</span><span class="p">:</span> <span 
class="p">[</span><span class="s2">&quot;__from&quot;</span><span 
class="p">,</span> <span class="s2">&quot;__to&quot;</span><span 
class="p">]</span>
-    <span class="p">}</span>
+    <span class="p">},</span>
+    <span class="s2">&quot;timed_refresh_immune_slices&quot;</span><span 
class="p">:</span> <span class="p">[</span><span class="mi">324</span><span 
class="p">]</span>
 <span class="p">}</span>
 </pre></div>
 </div>
@@ -240,11 +243,26 @@ for dealing with the time boundary filtering mentioned 
above.</p>
 different tables or databases? If the column name is shared, the filter will
 be applied, it&#8217;s as simple as that.</p>
 </div>
+<div class="section" id="how-to-limit-the-timed-refresh-on-a-dashboard">
+<h2>How to limit the timed refresh on a dashboard?<a class="headerlink" 
href="#how-to-limit-the-timed-refresh-on-a-dashboard" title="Permalink to this 
headline">¶</a></h2>
+<p>By default, the dashboard timed refresh feature allows you to automatically 
requery every slice on a dashboard according to a set schedule. Sometimes, 
however, you won&#8217;t want all of the slices to be refreshed - especially if 
some data is slow moving, or run heavy queries.
+To exclude specific slices from the timed refresh process, add the <code 
class="docutils literal"><span 
class="pre">timed_refresh_immune_slices</span></code> key to the dashboard 
<code class="docutils literal"><span class="pre">JSON</span> <span 
class="pre">Metadata</span></code> field:</p>
+<p>..code:</p>
+<div class="highlight-default"><div class="highlight"><pre><span></span><span 
class="p">{</span>
+   <span class="s2">&quot;filter_immune_slices&quot;</span><span 
class="p">:</span> <span class="p">[],</span>
+    <span class="s2">&quot;expanded_slices&quot;</span><span 
class="p">:</span> <span class="p">{},</span>
+    <span class="s2">&quot;filter_immune_slice_fields&quot;</span><span 
class="p">:</span> <span class="p">{},</span>
+    <span class="s2">&quot;timed_refresh_immune_slices&quot;</span><span 
class="p">:</span> <span class="p">[</span><span class="mi">324</span><span 
class="p">]</span>
+<span class="p">}</span>
+</pre></div>
+</div>
+<p>In the example above, if a timed refresh is set for the dashboard, then 
every slice except 324 will be automatically requeried on schedule.</p>
+</div>
 <div class="section" 
id="why-does-fabmanager-or-superset-freezed-hung-not-responding-when-started-my-home-directory-is-nfs-mounted">
 <h2>Why does fabmanager or superset freezed/hung/not responding when started 
(my home directory is NFS mounted)?<a class="headerlink" 
href="#why-does-fabmanager-or-superset-freezed-hung-not-responding-when-started-my-home-directory-is-nfs-mounted"
 title="Permalink to this headline">¶</a></h2>
-<p>superset creates and uses an sqlite database at <code class="docutils 
literal"><span class="pre">~/.superset/superset.db</span></code>. Sqlite is 
known to <a class="reference external" 
href="https://www.sqlite.org/lockingv3.html";>don&#8217;t work well if used on 
NFS</a> due to broken file locking implementation on NFS.</p>
-<p>One work around is to create a symlink from ~/.superset to a directory 
located on a non-NFS partition.</p>
-<p>Another work around is to change where superset stores the sqlite database 
by adding <code class="docutils literal"><span 
class="pre">SQLALCHEMY_DATABASE_URI</span> <span class="pre">=</span> <span 
class="pre">'sqlite:////new/localtion/superset.db'</span></code> in 
superset_config.py (create the file if needed), then adding the directory where 
superset_config.py lives to PYTHONPATH environment variable (e.g. <code 
class="docutils literal"><span class="pre">export</span> <span 
class="pre">PYTHONPATH=/opt/logs/sandbox/airbnb/</span></code>).</p>
+<p>By default, superset creates and uses an sqlite database at <code 
class="docutils literal"><span 
class="pre">~/.superset/superset.db</span></code>. Sqlite is known to <a 
class="reference external" 
href="https://www.sqlite.org/lockingv3.html";>don&#8217;t work well if used on 
NFS</a> due to broken file locking implementation on NFS.</p>
+<p>You can override this path using the <code class="docutils literal"><span 
class="pre">SUPERSET_HOME</span></code> environment variable.</p>
+<p>Another work around is to change where superset stores the sqlite database 
by adding <code class="docutils literal"><span 
class="pre">SQLALCHEMY_DATABASE_URI</span> <span class="pre">=</span> <span 
class="pre">'sqlite:////new/location/superset.db'</span></code> in 
superset_config.py (create the file if needed), then adding the directory where 
superset_config.py lives to PYTHONPATH environment variable (e.g. <code 
class="docutils literal"><span class="pre">export</span> <span 
class="pre">PYTHONPATH=/opt/logs/sandbox/airbnb/</span></code>).</p>
 </div>
 <div class="section" id="how-do-i-add-new-columns-to-an-existing-table">
 <h2>How do I add new columns to an existing table<a class="headerlink" 
href="#how-do-i-add-new-columns-to-an-existing-table" title="Permalink to this 
headline">¶</a></h2>
@@ -264,6 +282,15 @@ appropriate boxes and save again.</p>
 different sections of the code do:
 <a class="reference external" 
href="https://github.com/airbnb/superset/pull/3013";>https://github.com/airbnb/superset/pull/3013</a></p>
 </div>
+<div class="section" 
id="what-database-engine-can-i-use-as-a-backend-for-superset">
+<h2>What database engine can I use as a backend for Superset?<a 
class="headerlink" 
href="#what-database-engine-can-i-use-as-a-backend-for-superset" 
title="Permalink to this headline">¶</a></h2>
+<p>To clarify, the <em>database backend</em> is an OLTP database used by 
Superset to store its internal
+information like your list of users, slices and dashboard definitions.</p>
+<p>Superset is tested using Mysql, Postgresql and Sqlite for its backend. 
It&#8217;s recommended you
+install Superset on one of these database server for production.</p>
+<p>Using a column-store, non-OLTP databases like Vertica, Redshift or Presto 
as a database backend simply won&#8217;t work as these databases are not 
designed for this type of workload. Installation on Oracle, Microsoft SQL 
Server, or other OLTP databases may work but isn&#8217;t tested.</p>
+<p>Please note that pretty much any databases that have a SqlAlchemy 
integration should work perfectly fine as a datasource for Superset, just not 
as the OLTP backend.</p>
+</div>
 </div>
 
 

http://git-wip-us.apache.org/repos/asf/incubator-superset-site/blob/87ce6547/index.html
----------------------------------------------------------------------
diff --git a/index.html b/index.html
index 9221f76..4039fea 100644
--- a/index.html
+++ b/index.html
@@ -144,7 +144,7 @@ Caravel in March 2016, and is currently named Superset as 
of November 2016</p>
 </div>
 <div class="admonition important">
 <p class="first admonition-title">Important</p>
-<p class="last"><strong>Disclaimer</strong>: Apache Airflow is an effort 
undergoing incubation at The
+<p class="last"><strong>Disclaimer</strong>: Apache Superset is an effort 
undergoing incubation at The
 Apache Software Foundation (ASF), sponsored by the Apache Incubator.
 Incubation is required of all newly accepted projects until a further
 review indicates that the infrastructure, communications, and
@@ -257,9 +257,11 @@ to the user</li>
 <li class="toctree-l2"><a class="reference internal" 
href="faq.html#why-are-my-queries-timing-out">Why are my queries timing 
out?</a></li>
 <li class="toctree-l2"><a class="reference internal" 
href="faq.html#why-is-the-map-not-visible-in-the-mapbox-visualization">Why is 
the map not visible in the mapbox visualization?</a></li>
 <li class="toctree-l2"><a class="reference internal" 
href="faq.html#how-to-add-dynamic-filters-to-a-dashboard">How to add dynamic 
filters to a dashboard?</a></li>
+<li class="toctree-l2"><a class="reference internal" 
href="faq.html#how-to-limit-the-timed-refresh-on-a-dashboard">How to limit the 
timed refresh on a dashboard?</a></li>
 <li class="toctree-l2"><a class="reference internal" 
href="faq.html#why-does-fabmanager-or-superset-freezed-hung-not-responding-when-started-my-home-directory-is-nfs-mounted">Why
 does fabmanager or superset freezed/hung/not responding when started (my home 
directory is NFS mounted)?</a></li>
 <li class="toctree-l2"><a class="reference internal" 
href="faq.html#how-do-i-add-new-columns-to-an-existing-table">How do I add new 
columns to an existing table</a></li>
 <li class="toctree-l2"><a class="reference internal" 
href="faq.html#how-do-i-go-about-developing-a-new-visualization-type">How do I 
go about developing a new visualization type?</a></li>
+<li class="toctree-l2"><a class="reference internal" 
href="faq.html#what-database-engine-can-i-use-as-a-backend-for-superset">What 
database engine can I use as a backend for Superset?</a></li>
 </ul>
 </li>
 </ul>

http://git-wip-us.apache.org/repos/asf/incubator-superset-site/blob/87ce6547/installation.html
----------------------------------------------------------------------
diff --git a/installation.html b/installation.html
index 2288c73..a99f2c4 100644
--- a/installation.html
+++ b/installation.html
@@ -591,8 +591,8 @@ would be the case if you fork the project to add features 
specific to
 your environment.:</p>
 <div class="highlight-default"><div class="highlight"><pre><span></span># 
assuming $SUPERSET_HOME as the root of the repo
 cd $SUPERSET_HOME/superset/assets
-npm install
-npm run build
+yarn
+yarn run build
 cd $SUPERSET_HOME
 python setup.py install
 </pre></div>

http://git-wip-us.apache.org/repos/asf/incubator-superset-site/blob/87ce6547/searchindex.js
----------------------------------------------------------------------
diff --git a/searchindex.js b/searchindex.js
index 24f2b33..b6a6cbe 100644
--- a/searchindex.js
+++ b/searchindex.js
@@ -1 +1 @@
-Search.setIndex({envversion:49,filenames:["druid","faq","gallery","index","installation","security","sqllab","tutorial","videos","visualization"],objects:{"superset.jinja_context":{PrestoTemplateProcessor:[6,0,1,""],url_param:[6,1,1,""]}},objnames:{"0":["py","class","Python
 class"],"1":["py","function","Python 
function"]},objtypes:{"0":"py:class","1":"py:function"},terms:{"1thisismyscretkei":4,"37k":7,"3aclose":1,"3aexampl":1,"\u00e1lava":9,"\u00e1vila":9,"a\u00eft":9,"abstract":1,"almer\u00eda":9,"amap\u00e1":9,"ard\u00e8che":9,"ari\u00e8g":9,"b\u00e9ni":9,"c\u00e1cere":9,"c\u00e1diz":9,"c\u00f3rdoba":9,"c\u00f4te":9,"case":[0,4,7],"castell\u00f3n":9,"cear\u00e1":9,"class":[4,6],"const":1,"corr\u00e8z":9,"coru\u00f1a":9,"d\u00f4me":9,"default":[1,4,5,6,7,9],"dr\u00f4me":9,"esp\u00edrito":9,"export":1,"final":7,"finist\u00e8r":9,"function":[3,4],"goi\u00e1":9,"guip\u00fazcoa":9,"h\u00e9rault":9,"hoce\u00efma":9,"import":[1,4,9],"is\u00e8re":9,"ja\u00e9n":9,"k\u00e9nitra":9,"kela\u00
 
e2":9,"kh\u00e9misset":9,"kh\u00e9nifra":9,"la\u00e2youn":9,"le\u00f3n":9,"li\u00e8g":9,"long":[1,4,6],"loz\u00e8r":9,"m\u00e1laga":9,"maranh\u00e3o":9,"mekn\u00e8":9,"new":[],"ni\u00e8vr":9,"par\u00e1":9,"para\u00edba":9,"paran\u00e1":9,"piau\u00ed":9,"pyr\u00e9n\u00e9":9,"return":[1,4,6],"rh\u00f4ne":9,"rond\u00f4nia":9,"s\u00e3o":9,"s\u00e8vre":9,"sa\u00f4n":9,"sal\u00e9":9,"short":[8,9],"switch":4,"t\u00e9mara":9,"t\u00e9touan":9,"th\u00fcringen":9,"true":[4,5],"var":9,"vend\u00e9":9,"w\u00fcrttemberg":9,"while":[0,3,4,5],__call__:4,__from:1,__init__:4,__name__:4,__to:1,abd:9,abe:9,aberdeen:9,aberdeenshir:9,abil:7,abl:[4,5,7],about:[],abov:[1,7],absenc:6,accept:[1,3],access:[],account:4,acre:9,action:[4,5,9],activ:4,adapt:4,adding:[],addit:4,additional_middleware:4,address:1,adjust:7,admin:[],administr:[],advanc:[0,4,7],adventur:4,adygei:9,affect:[1,8],after:[1,4,7],afterward:1,agadir:9,again:[1,7],against:[0,4],agb:9,agd:9,aggreg:[0,3,5],ago:7,agrigento:9,agy:9,ahmar:9,ain:9,ai
 
rbnb:[0,1,4],airflow:3,aisn:9,alabama:9,alagoa:9,alaska:9,albacet:9,alessandria:9,alicant:9,all:[0,1,3,4,5,7,9],all_datasource_access:5,allier:9,allow:[1,3,4,5,6],alongsid:4,alpe:9,alphanumer:9,alreadi:[4,7,8,9],also:[1,4,5,6,7,9],alt:[6,9],altai:9,alter:[5,8],alx:9,amazona:9,amazonaw:4,ambigu:9,amu:9,amur:9,analys:7,analysi:[1,7],analyst:5,analyt:4,analyz:7,ancona:9,andria:9,angad:9,anglesei:9,angu:9,anhalt:9,anhui:9,ani:[1,4,5,6,7],anjra:9,annot:8,annotat:[],anonym:5,anoth:[4,5],another:1,ans:9,ant:9,antrim:9,antwerpen:9,any:5,aosta:9,api:[1,4],app:4,appbuilder:[3,5],appear:[0,7],appli:[1,6,7,8],applic:[3,4,5],appropri:1,apt:4,aquila:9,arbitrari:1,ard:9,ardenn:9,arezzo:9,argyll:9,arizona:9,ark:9,arkansa:9,arkhangel:9,arm:9,armagh:9,armor:9,around:1,arrai:[1,4],ascoli:9,asf:3,ash:9,ask:7,asn:9,aspect:8,assa:9,asset:[1,4,9],assign:5,assilah:9,associ:5,assum:[4,5,7],assumpt:5,ast:9,asti:9,astrakhan:9,asturia:9,aswan:9,async:[],asynchron:4,asyut:9,asz:9,athena:[],atlantiqu:9,attempt:4
 
,attribut:5,aube:9,aude:9,audienc:7,auth_remote_user:4,authent:[3,5,7],automag:5,avail:[3,4,5,7,8],avellino:9,aveyron:9,avoid:1,awar:4,aws:[],aws_access_key_id:4,aws_secret_access_kei:4,awsathena:4,axi:7,ayrshir:9,ayshir:9,azi:9,azilal:9,back:[1,4,7],backend:[4,6],badajoz:9,baden:9,baha:9,bahia:9,bahr:9,bake:7,balanc:[],balear:9,balkar:9,ballymena:9,ballymonei:9,banbridg:9,bani:9,bar:7,barcelona:9,bari:9,bark:9,barletta:9,bas:9,base:[1,5],basecach:4,bashkortostan:9,basi:5,basic:7,batch:1,bath:9,bayern:9,bbd:9,bdf:9,bdg:9,becaus:9,bedfordshir:9,been:[5,7],befor:[1,4],behalf:7,behind:[],beij:9,bel:9,belfast:9,belfort:9,belgium:9,belgorod:9,belluno:9,below:7,bem:9,ben:9,benevento:9,ber:9,bergamo:9,berkan:9,berkshir:9,berlin:9,bes:9,best:5,better:[4,7],bex:9,bexlei:9,beyond:4,bfs:9,bge:9,bgw:9,biella:9,bin:4,binari:4,bind:4,bit:[4,7],bkm:9,bla:9,blackburn:9,blaenau:9,blank:7,blob:[1,4],blueprint:[],blueprints:4,bly:9,bmh:9,bnb:9,bnh:9,bns:9,bologna:9,bolzano:9,bom:9,border:9,both:[4,5],
 
bottom:[5,7],bouch:9,bouleman:9,boundari:1,bournemouth:9,box:[1,7],brabant:9,brandenburg:9,brazil:9,bremen:9,brent:9,brescia:9,brew:4,brianza:9,bridgend:9,brighton:9,brindisi:9,bring:4,bristol:9,broad:7,broken:1,broker:4,broker_url:4,bromlei:9,brows:6,browser:4,bru:9,bruxel:9,bry:9,bryansk:9,bst:9,buckinghamshir:9,buhayrah:9,build:[],builder:4,built:[1,5],builtin:6,bundl:4,bur:9,burgo:9,buryat:9,buryatdan:9,busi:3,bute:9,button:[5,7],cach:[],cache_config:4,caerphilli:9,cagliari:9,calabria:9,calai:9,california:9,call:[4,7],caltanissetta:9,calvado:9,cam:9,cambridgeshir:9,camden:9,campidano:9,campobasso:9,can:[],can_add:5,can_delet:5,can_edit:5,can_list:5,can_show:5,cannot:5,cantabria:9,cantal:9,capabl:[1,6],captur:7,caravel:3,carbonia:9,cardiff:9,care:7,carmarthenshir:9,carolina:9,carrara:9,carrickfergu:9,cas:9,casablanca:9,caserta:9,castlereagh:9,catania:9,catanzaro:9,catarina:9,categori:5,caus:1,cay:9,celeri:[1,4,6],celery_annotations:4,celery_config:4,celery_imports:4,celery_result
 
_backend:4,celeryconfig:4,celsiu:7,ceredigion:9,certain:[1,6,8],cesena:9,ceuta:9,cflags:4,cgn:9,cgv:9,chanc:4,chang:[1,4,7],charact:9,charent:9,chart:[7,8],che:9,chechnya:9,check:[0,1,5,7],checkbox:[0,1,5],chefchaouen:9,chelsea:9,chelyabinsk:9,cher:9,cherkasi:9,cherkess:9,chernihiv:9,chernivtsi:9,cheshir:9,chi:9,chichaoua:9,chieti:9,china:9,choic:9,chongq:9,chs:9,cht:9,chtouka:9,chu:9,chukot:9,chuvash:9,citi:9,ciudad:9,ckf:9,ckt:9,clackmannanshir:9,clarifi:0,clearli:7,cleveland:9,click:[0,1,5,7],clickhous:4,client:[1,4],clint:1,clk:9,clr:9,cluster1:5,cluster:4,cma:9,cmd:9,cmn:9,code:[1,3,4,6,9],colerain:9,collect:[5,8],colorado:9,columbia:9,column:[],com:[1,4],come:[1,4,5,6,8],comma:7,command:[4,5],comment:1,common:[0,1,4],commun:3,como:9,compat:4,complementari:5,complet:[3,9],compli:4,compon:9,compos:5,con:9,concept:4,concern:9,config:[4,7],configur:[],confin:4,confirm:[5,7],congrat:7,connect:[],connect_arg:4,connecticut:9,consist:[3,4,9],consolid:5,constant:[1,4],consult:4,consum:
 
5,contain:[1,4,9],context:[4,6],contrib:4,contribut:1,control:[3,9],conveni:9,convert:[7,9],conwi:9,cookstown:9,copi:4,cor:4,corner:7,cornwal:9,correctli:[4,7],correspond:0,cors:[],cors_options:4,corydolphin:4,cosenza:9,could:5,count:[0,7],countri:[],country_nam:1,coupl:7,cover:[0,7],craigavon:9,creat:[],create_engin:4,creation:[],credenti:4,cremona:9,creus:9,crf:9,crimea:9,criteria:[1,4],croton:9,croydon:9,cruz:9,cry:9,cryptographi:4,csr:9,csrf:4,csrf_enabled:[],css:[],cuenca:9,cumbria:9,cuneo:9,current:[0,3,4,5],cusio:9,custom:[],cwy:9,cx_oracl:4,cycl:1,d3format:7,dagenham:9,dagestan:9,dakota:9,dal:9,daqahliyah:9,darlington:9,darwen:9,databas:[],dataset:[3,5,7,8],datasourc:[0,1,4,5],datasource1:5,date:[1,5,7],datetim:6,dateutil:6,dby:9,deactiv:4,deal:1,debian:4,decis:3,deep:3,deeper:[],def:4,defin:[],definit:0,degre:7,delawar:9,delet:5,demonstr:8,den:9,denbighshir:9,deni:[5,9],depart:[5,9],departmen:9,depend:[],deploi:[],der:9,derbi:9,derbyshir:9,deriv:[4,8],derri:9,descend:1,desc
 
rib:[1,4,5,6,7],descript:9,design:[],desir:7,detail:1,deux:9,dev:[4,9],devel:4,develop:[],devon:9,dgn:9,dgy:9,dialect:4,dictionari:4,did:1,didn:1,differ:[1,4,5,7,8],difficult:7,dimens:[1,7,8],direct:7,directli:[1,4],disclaim:3,discov:1,dispatch:6,displai:[1,3,9],disregard:1,distinct:[0,1,7],distribut:[1,6,7],district:9,distrito:9,diva:9,divis:9,dnd:9,dnipropetrov:9,doc:[0,4],document:[],don:1,done:4,donet:9,dor:9,dordogn:9,dorset:9,doub:9,dow:9,down:[1,3,7,9],download:4,drag:7,drenth:9,driver:4,drop:[3,7],dropdown:[0,1,5],dry:9,due:1,dumfri:9,dumyat:9,dunbartonshir:9,dunde:9,dungannon:9,dur:9,durat:4,durham:9,each:[5,9],eal:9,eale:9,easi:[1,3,4],easier:1,easili:6,east:9,eay:9,edh:9,edinburgh:9,edit:[0,1,4,5,7],editor:1,edu:9,effect:1,effort:3,egypt:9,eilean:9,elb:4,element:[0,4],eln:9,els:9,emilia:9,enabl:[1,4,5],enable_cors:4,enable_proxy_fix:4,encod:4,encount:4,encrypt:4,end:7,endors:3,endpoint:4,enf:9,enfield:9,engin:6,engine_param:4,enna:9,enough:1,ensur:4,enter:[4,6],enterpris:
 
3,entiti:[4,5],env:4,environ:[1,4,6],equal:7,err:9,errachidia:9,error:[4,5],erw:9,ery:9,escap:4,esi:9,ess:9,essaouira:9,essenti:4,essex:9,essonn:9,establish:9,esx:9,etc:7,eure:9,even:[5,7],eventu:4,everyth:4,evolv:[1,5],exampl:[1,4,5,7,9],exce:4,except:4,execut:[1,4,5,6,7],exist:[],exit:4,expanded_slic:1,expect:4,experi:[1,7],explain:0,explicit:5,explor:[0,1,3,4,5,7],explore:[],explorev2:9,expos:[0,4,5,6,7,8],express:1,expression:[],extens:[3,4,7],extra:[],extract:4,fab:5,factor:1,fah:9,fahrenheit:7,fal:9,falkirk:9,fall:4,fashion:1,fast:1,fayyum:9,featur:[],feder:9,fedora:4,feel:7,fer:9,fermanagh:9,fermo:9,ferrara:9,fes:9,few:[1,4,5,7],field:[0,1,3,4,5,7],fif:9,fife:9,fig:9,figuig:9,file:[1,4,9],filesystem:4,filter:[],filter_immune_slic:1,filter_immune_slice_field:1,financ:5,financi:5,find:[4,6,7],first:[0,4,5,7,9],fix:5,flag:[1,4],flask:[3,4,5],flevoland:9,flintshir:9,fln:9,florenc:9,florida:9,flow:6,foggia:9,folder:9,follow:[0,1,4,7,9],foobar:4,forest:9,fork:4,forli:9,form:[1,4,9]
 
,format:7,forward:4,foundat:[3,5],frame:1,framework:[1,4,5],franc:9,frankiv:9,fresh:7,friesland:9,from:[0,1,4,5,6,7,8,9],frosinon:9,fujian:9,fulham:9,full:[7,9],fulli:3,further:3,futur:4,fym:9,gallowai:9,gamma:[],gansu:9,gard:9,garonn:9,gatewai:1,gather:5,gcc:4,gdal:9,gdata:9,gelderland:9,gener:6,genova:9,geojson:9,georgia:9,ger:9,gerai:9,germani:9,get:[],gharbiyah:9,gigant:1,girona:9,girond:9,git:4,github:[1,4],give:[1,5],given:5,glamorgan:9,glasgow:9,glg:9,global:4,gloucestershir:9,gls:9,goe:4,good:[1,7],googl:4,gorizia:9,gorno:9,granada:9,grand:9,grant:5,granular:[3,5],gre:9,great:5,green:7,greenplum:4,greenwich:9,groningen:9,grosseto:9,grosso:9,group:[1,7],groupabl:7,groupbi:0,guadalajara:9,guangdong:9,guangxi:9,gue:9,guelmim:9,guizhou:9,gunicorn:[1,4],gwent:9,gwn:9,gwynedd:9,hacknei:9,hainan:9,hainaut:9,haj:9,hajeb:9,hal:9,halton:9,ham:9,hamburg:9,hamlet:9,hammersmith:9,hampshir:9,handl:[4,5,6],hao:9,haouz:9,happen:[1,5],haringei:9,harrow:9,hartlepool:9,haut:9,hav:9,have:[0,1,3
 
,4,5,7],haven:7,haver:9,hawaii:9,hck:9,header:[4,7],health:4,healthcheck:4,hebei:9,hef:9,heilongjiang:9,help:[4,7],henan:9,here:[1,4,5,6,7,8],herefordshir:9,hertfordshir:9,hessen:9,high:[3,8],highest:7,highland:9,hil:9,hillingdon:9,hit:[1,4,6],hive:4,hld:9,hmf:9,hns:9,hoc:9,hold:7,holland:9,holstein:9,host:4,hostnam:4,hounslow:9,hour:[1,4],hove:9,how:[],hpl:9,hrt:9,hrw:9,hry:9,html:[4,9],http:[1,4,9],http_x_proxy_remote_user:4,hubei:9,huelva:9,huesca:9,hui:9,hull:9,hunan:9,hyphen:9,icon:[1,7],ida:9,idaho:9,ide:[4,6],ideal:7,identifi:9,ifr:9,ifrane:9,iglesia:9,ijsselmeer:9,iliyah:9,ille:9,illinoi:9,immedi:7,immun:8,impala:4,impati:4,imperia:9,implement:[1,4],impyla:4,includ:[4,5],increas:1,incubat:3,index:[3,4,6],indiana:9,indic:[3,7],individu:[3,5],indre:9,ine:9,inezgan:9,inform:[4,7],infrastructur:3,ingush:9,init:[4,5],initi:[],initial:4,input:9,insert:4,insid:4,instal:[],install:4,installat:[],instanc:[4,5,7],integr:[],integrat:3,intellig:3,intend:4,interact:1,interest:7,interfac:
 
[3,4],intern:9,internat:9,intric:3,intro:[],intuit:[],inverclyd:9,investig:7,iow:9,iowa:9,irk:9,irkutsk:9,isernia:9,iskandariyah:9,isl:9,island:9,isle:9,islington:9,isma:9,isn:[0,4],iso:9,issu:1,itali:9,item:[4,5],itself:[4,5,7,9],iva:9,ivano:9,ivanovo:9,ivc:9,jadid:9,jadida:9,janeiro:9,janub:9,javascript:[1,9],jdbc:4,jdi:9,jerada:9,jersei:9,jiangsu:9,jiangxi:9,jilin:9,jinja:[],jinja_context:6,jinja_context_addons:4,jizah:9,join:[],jra:9,json:[0,1,4],jsx:9,jura:9,just:[4,6,7],kabardin:9,kacem:9,kafr:9,kaliningrad:9,kalmyk:9,kaluga:9,kam:9,kamchatka:9,kansa:9,karachai:9,karelia:9,kda:9,kec:9,kei:[1,4],kem:9,kemerovo:9,ken:9,kensington:9,kent:9,kentucki:9,kes:9,key_prefix:4,keyboard:6,keyn:9,keyword:[1,4],kfs:9,kgd:9,kgn:9,kha:9,khabarovsk:9,khakass:9,khanti:9,kharkiv:9,khe:9,kherson:9,khl:9,khm:9,khmel:9,khn:9,kho:9,khouribga:9,kiev:9,kill:1,kingston:9,kinross:9,kir:9,kirov:9,kirovohrad:9,klu:9,know:4,known:1,komi:9,kos:9,kostroma:9,krasnodar:9,krasnoyarsk:9,krs:9,ktt:9,kurgan:9,kurs
 
k:9,kwarg:6,kya:9,kyi:9,laa:9,lab:[],label:[1,7,9],lambda:4,lambeth:9,lan:9,lanarkshir:9,lancashir:9,land:9,languag:[6,8],lar:9,larach:9,larg:[1,4],larn:9,last:4,latest:4,latest_partit:6,latina:9,latitud:7,laughingman7743:4,layer:[1,3],lbh:9,lce:9,ldap:3,ldflags:4,least:4,leav:7,lec:9,lecc:9,lecco:9,left:7,leicest:9,leicestershir:9,len:9,leningrad:9,less:9,let:7,level:[1,4,5,8],lew:9,lewisham:9,liaon:9,lib:4,libffi:4,libldap2:4,librari:[4,6],libsasl2:4,libssl:4,life:1,like:[0,1,4,5,7],limavadi:9,limburg:9,limit:[1,5,7],lin:9,lincolnshir:9,link:7,lip:9,lipetsk:9,lisburn:9,list:[],live:1,livorno:9,lleida:9,lmv:9,lnd:9,lo4:9,load:[],load_exampl:4,local:4,localhost:4,localt:1,locat:1,lock:1,lodi:9,log:[1,5],logic:[1,4,7],login:4,loir:9,loiret:9,london:9,longer:1,longitud:7,look:[4,5,7],lookup:[0,6],lot:9,lothian:9,louisiana:9,lrn:9,lsb:9,lucca:9,luckili:7,lugo:9,luhan:9,lut:9,luton:9,luxembourg:9,macerata:9,made:[3,4,5,9],madrid:9,mag:9,maga:9,magherafelt:9,mai:[1,4,5,7,9],main:[1,4,9],
 
major:3,make:[],man:9,manag:[],manch:9,manchest:9,mani:[1,4,5,7],manifest:7,manner:3,mansii:9,mantua:9,manual:[0,5],mapbox_api_key:[1,4],mapshap:9,march:3,margin:7,marii:9,maritim:9,mark:7,markdown:8,marn:9,marrakech:9,maryland:9,massa:9,massachusett:9,match:7,matera:9,materi:1,mato:9,matrix:0,matrouh:9,max:[0,7],max__measurement_flag:7,maximum:[4,7],mayenn:9,mdb:9,mdw:9,mean:5,meantim:1,measur:7,measurement_d:7,measurement_flag:7,mecklenburg:9,medio:9,medwai:9,mek:9,melilla:9,mellal:9,melloul:9,memcach:4,memori:4,mention:1,menu:[1,4,5,7],mer:9,meren:9,merg:1,merseysid:9,merthyr:9,merton:9,messag:[1,4,5,7],messina:9,metadata:[1,4,6],metadata_param:4,method:6,metric:[],meurth:9,meus:9,mexico:9,mft:9,michigan:9,middl:7,middlesbrough:9,middlewar:4,middleware:[],midland:9,midlothian:9,might:[1,5,7],mik:9,milano:9,milton:9,min:[0,7],mina:9,minnesota:9,minufiyah:9,minut:4,minya:9,mississippi:9,missouri:9,mln:9,mmd:9,mnf:9,model:[3,5],modena:9,modern:[3,6],modul:[3,4,6],moh:9,mohammedia:9,
 
moment:7,mon:9,mongol:9,monmouthshir:9,montana:9,monza:9,morai:9,morbihan:9,mordovia:9,more:[1,4,5,6,7,9],moreov:7,morocco:9,mos:9,moscow:9,mosel:9,moskva:9,most:[1,3],mostli:5,mou:9,moulai:9,mourn:9,mow:9,moyl:9,mrt:9,mry:9,mssql:4,mty:9,mu6:9,much:0,multi:6,mur:9,murcia:9,murmansk:9,must:[4,7],my_crazy_macro:4,mykolayiv:9,myl:9,mysql:4,mysqlclient:4,na7:9,nad:9,nador:9,name:[1,3,4,5,7,9],nameofyourcountri:9,namespac:6,namur:9,napoli:9,nation:9,navarra:9,navig:[4,8],nay:9,nbl:9,ndn:9,neath:9,nebraska:9,necessari:4,necessarili:3,need:[],nei:9,nel:9,nell:9,nen:9,nenet:9,netherland:9,nevada:[7,9],never:1,newham:9,newli:3,newport:9,newri:9,newtownabbei:9,next:[1,4,5,7,9],nfk:9,nginx:[1,4],ngm:9,ngr:9,niedersachsen:9,ningxia:9,niz:9,nizhegorod:9,nlk:9,nln:9,non:1,none:[4,6],noord:9,nord:9,nordrhein:9,norfolk:9,norm:9,nort:9,north:9,northamptonshir:9,northumberland:9,note:[1,4,5,7],notic:0,nottingham:9,nottinghamshir:9,novara:9,novemb:3,novgorod:9,novosibirsk:9,now:[1,7],npm:4,nsm:9,nta:
 
9,nth:9,ntl:9,ntt:9,number:[7,9],numer:7,nuoro:9,nvs:9,nwm:9,nwp:9,nyk:9,nym:9,nyt:9,oauth:3,object:[4,5],obtain:9,odessa:9,offici:4,ogliastra:9,ogr2ogr:9,ohio:9,oise:9,oklahoma:9,olbia:9,omagh:9,omh:9,oms:9,omsk:9,once:[4,7],one:[1,5],onli:[1,5,7],ont:9,oost:9,openid:3,openldap:4,openssl:4,oper:4,opt:1,option:[4,7],optional:7,oracl:4,order:4,ore:9,oregon:9,orel:9,orenburg:9,org:[4,9],organ:7,organiz:9,oriental:9,origin:[3,5,7],oristano:9,ork:9,orknei:9,orl:9,orne:9,ossetia:9,ossola:9,osx:4,other:[3,4,5,7,8],otherwis:4,oua:9,ouarzaz:9,ouj:9,oujda:9,our:7,ourens:9,out:[],outlier:7,overijssel:9,overload:4,overrid:[],own:[],oxf:9,oxfordshir:9,packag:[1,4],padua:9,page:[0,3,4,5,7],palencia:9,palermo:9,palma:9,panoramix:3,param:6,paramat:6,paramet:[4,6],parameter:6,pari:9,parma:9,part:[4,9],partit:[1,6],partition_kei:6,pass:4,password:4,past:[4,6],path:4,paulo:9,pavia:9,pem:[4,9],pembrokeshir:9,pennsylvania:9,penza:9,peopl:[1,5],per:[],perform:1,perhap:5,period:[],perm:9,permiss:[],perna
 
mbuco:9,persist:[4,6],perthshir:9,perugia:9,pesaro:9,pescara:9,peterborough:9,petersburg:9,pfalz:9,phrase:7,piacenza:9,piceno:9,piec:7,pip:[],pisa:9,pistoia:9,pkg:4,pkn:9,place:[4,7],plai:4,plain:7,plan:[1,4],platform:4,pleas:[4,7],plu:[5,7],ply:9,plymouth:9,pnz:9,pocoo:4,point:[4,7],pol:9,poltava:9,pontevedra:9,pool:9,pop:4,popul:[1,4],popup:7,por:9,pordenon:9,port:[4,9],portion:7,portsmouth:9,possibl:[1,4,5],postagg:0,postgr:[],postgresql:[4,7],potenza:9,pow:9,power:[4,5,6],powi:9,practic:1,prato:9,precipit:7,prefer:[],prefix:4,present:7,presto:[4,6],prestotemplateprocessor:6,pretti:1,previou:0,pri:9,primor:9,princip:9,probabl:[1,5],process:[1,3,4],product:4,profil:5,program:6,project:[3,4],prompt:4,proto:4,provenc:9,provid:[],provinc:9,proxi:[1,4],psk:9,pskov:9,psycopg2:4,pte:9,pts:9,public_role_like_gamma:5,publish:9,pui:9,pull:1,purpos:[4,7,9],put:[4,9],pyathenajdbc:4,pyhiv:4,pylibmc:4,pymssql:4,pypi:4,python:[],pythonpath:[1,4],pyvenv:4,qahirah:9,qalyubiyah:9,qina:9,qinghai:9,
 
query_timeout_threshold:1,queue:[4,6],quick:[],rab:9,rabat:9,rabbitmq:4,ragusa:9,random:[4,6],rang:7,rapid:5,rate_limit:4,ravenna:9,rcc:9,rct:9,rdb:9,rdbms:3,react:6,read:7,readi:3,real:9,reason:1,rebuild:1,receiv:1,recommend:[4,5],record:[5,7,9],redbridg:9,redcar:9,redi:4,redirect:7,rediscach:4,redshift:[],reduc:9,refer:[4,7],referenc:4,reflect:[1,3],refresh:[1,4],refresh_druid:4,regex:0,reggio:9,region:9,region_nam:4,regist:1,rel:5,relat:[0,4,5],relativedelta:6,relev:9,reli:4,remote_user:[3,4],remoteusermiddlewar:4,remov:5,renam:3,renfrewshir:9,replac:7,repo:4,repres:9,request:[1,4],requir:[1,3,4,5,9],research:7,reserv:1,respons:[1,4],rest:7,result:[0,1,4,6,7],results_backend:4,retain:7,reusabl:4,revenu:5,revers:4,review:3,revok:5,rfw:9,rheinland:9,rhel:4,rhin:9,rhode:9,rhondda:9,ric:9,rich:[3,6],richmond:9,ride:9,rieti:9,right:[4,5,7],rimini:9,rio:9,rioja:9,rivn:9,role:[],roma:9,root:4,roraima:9,ros:9,rostov:9,roughli:7,rout:4,rovigo:9,row:[5,7],row_limit:4,rule:3,run:[0,1,4,5,6,
 
7],runserv:[1,4],russia:9,russian:9,rut:9,rutland:9,rya:9,ryazan:9,s3_cache_bucket:4,s3_cache_key_prefix:4,s3_staging_dir:4,s3cach:4,s3werkzeugcach:4,saarland:9,sachsen:9,saf:9,safi:9,sai:[4,5],saint:9,sak:9,sakha:9,sakhalin:9,sal:9,salamanca:9,salerno:9,sam:9,samara:9,same:[4,5],sampl:7,sandbox:1,santa:9,santo:9,sar:9,saratov:9,sarth:9,sassari:9,save:[0,1,5,7],savoi:9,savona:9,say:9,scan:1,scb:9,scene:1,schedul:1,schema:[],schema_nam:4,schleswig:9,scope:4,scottish:9,scratch:7,script:4,sea:9,search:[3,5,6],searchpath:4,second:[1,4,5,9],secret:4,secret_key:4,section:[1,7],secur:[],see:[1,5,7],seem:7,sef:9,sefrou:9,segovia:9,sein:9,select:[5,6,7],select_countri:9,selectcontrol:9,self:4,semant:[3,8],send:1,sensit:5,separ:[7,9],sergip:9,serv:[1,4],server:[1,4],set:[1,3,4,5,7,9],settat:9,setup:[],setuptool:4,sevastopol:9,sevilla:9,sfk:9,sgc:9,shaanxi:9,shamal:9,shandong:9,shanghai:9,shanxi:9,shapfil:9,share:[1,3],sharqiyah:9,shaykh:9,she:5,shetland:9,shg:9,ship:[4,5],shortcut:6,should:[1
 
,3,4,5,7,9],show:[1,3,4,7,8],shr:9,shropshir:9,siar:9,sichuan:9,side:[1,4],sidi:9,siena:9,sign:[4,5,7],sik:9,simpl:[1,3,4,5,7,8],simple_pag:4,simplecach:4,simpler:0,simpli:[4,5,7],sin:9,sina:9,sinc:[5,7],singapor:9,singl:[1,4,5],site:9,size:[7,9],skh:9,skhirat:9,slice:[],slice_id:1,sliceid:1,sliman:9,slk:9,slow:1,small:1,smaller:7,smo:9,smolensk:9,smooth:6,snippet:4,snowfal:7,softwar:3,solut:1,som:9,some:[],some_macro_cal:6,some_t:6,someon:7,somerset:9,someth:[4,7],sometim:5,somm:9,sondrio:9,soon:8,soria:9,sort:1,sos:9,sourc:[],south:9,southampton:9,southend:9,southwark:9,spain:9,sparksql:4,spe:9,speak:3,specif:[1,4,5,7],specifi:[0,1,4],spezia:9,sponsor:3,sql:[],sql_lab_result:4,sqlalchemi:[],sqlalchemy_database_uri:[1,4],sqlite:[1,4],sqllab_async_time_limit_sec:1,sraghna:9,sry:9,ssl:[],sslmode:4,sslrootcert:4,sta:9,stabil:3,staffordshir:9,stai:5,standard:[4,6,9],start_respons:4,state:9,statist:7,statu:[1,3,5],stavropol:9,stb:9,ste:9,stem:9,step:[4,9],stg:9,sth:9,still:5,stirl:9,stn
 
:9,stockton:9,stoke:9,store:[1,4,9],str:6,straban:9,straightforward:4,strategi:5,string:[4,7,9],sts:9,stt:9,subdivis:9,success:3,successfulli:7,sud:9,sudo:4,suffolk:9,suhaj:9,sul:9,sum:[0,7],sumi:9,summari:7,superset:[],superset_config:[1,4,5],superset_home:4,superset_result:4,superset_webserver_port:4,superset_workers:4,support_sqlalchemi:4,sure:[4,5],surfac:7,surrei:9,sussex:9,sutton:9,suwai:9,suwayf:9,suz:9,sve:9,sverdlovsk:9,swa:9,swansea:9,swd:9,swindon:9,swk:9,symlink:1,synchron:5,syntax:4,syracus:9,system:[4,9],tab:[0,1,5,6,7],tag:1,taken:7,talbot:9,tam:9,tambov:9,tan:9,tanan:9,tanger:9,tao:9,taounat:9,taourirt:9,tar:9,taranto:9,target:7,tarn:9,taroudannt:9,tarragona:9,task:4,tat:9,tata:9,tatarstan:9,taw:9,taz:9,taza:9,tee:9,telford:9,temp:4,temperatur:7,tempio:9,templat:[],template_fold:4,tempor:7,tenerif:9,tennesse:9,tenth:7,terabyt:1,teramo:9,terni:9,ternopil:9,territoir:9,territori:9,teruel:9,test:[0,4,7],tet:9,texa:9,text:7,tfw:9,thame:9,than:[7,9],thei:[0,4,5,6],them:[4
 
,5,8],theme:[],therefor:7,thi:[0,1,3,4,5,7,8,9],thing:[4,7],those:[1,5],though:[0,4,5,7],thr:9,three:9,through:[1,3,4,5,7,8],thurrock:9,tianjin:9,tick:7,timeout:[1,4],tiz:9,tiznit:9,tng:9,tnt:9,tob:9,tocantin:9,tof:9,toggl:8,toledo:9,tom:9,tomsk:9,tool:[],top:[1,4,5,7],torbai:9,torfaen:9,torino:9,tower:9,trani:9,transcarpathia:9,transform:1,trapani:9,trent:9,trento:9,treviso:9,triest:9,tul:9,tula:9,tutori:[],tuva:9,tve:9,tver:9,tweak:4,twh:9,twice:1,two:[7,9],tydfil:9,tyne:9,type:[],typeahead:5,typic:4,tyu:9,tyumen:9,ubuntu:4,udine:9,udmurt:9,ukrain:9,ultim:4,uly:9,uncommon:[],under:[6,7],undergo:3,unfortun:4,union:[1,5],uniqu:9,unleash:6,unlik:7,unpack:4,unreleas:4,until:[3,7],updat:4,upgrad:4,upgrade:[],upon:[0,5,9],upper:7,uqsur:9,urbino:9,uri:[4,7],url:[4,6],url_param:6,usa:9,user:[1,3,4,5,7],usernam:4,usr:5,usual:9,utah:9,utilis:4,utrecht:9,uuid:6,uygur:9,val:9,vale:9,valencia:9,valentia:9,valid:0,valladolid:9,valu:[1,4,5,6,7],van:9,vares:9,variabl:[1,4],vauclus:9,vbr:9,venezia
 
:9,venv:4,verbano:9,vercelli:9,veri:[4,5],vermont:9,verona:9,version:[0,4],vertica:4,vertica_python:4,vgg:9,vgl:9,via:9,vibo:9,vicenza:9,video:[],vienn:9,view:[0,1,4,5,7,8],vilain:9,vinnytsya:9,virginia:9,virtual:1,virtualenv:[],viterbo:9,viv:9,vizcaya:9,vla:9,vlaam:9,vlaanderen:9,vladimir:9,vlg:9,vli:9,volgograd:9,vologda:9,volyn:9,vor:9,voronezh:9,vorpommern:9,vosg:9,vov:9,vwv:9,wad:9,wadi:9,wai:[5,7],walk:[7,8],walkthrough:[7,8],wallon:9,waltham:9,wandsworth:9,want:[1,4,5,7,9],war:9,warn:1,warrington:9,warwickshir:9,washington:9,wbk:9,wbr:9,wdu:9,wealth:7,wear:9,weather:7,weather_descript:7,web:[1,3,4,5],webserv:4,well:[0,1,4,5],were:[5,7],werkzeug:4,west:9,westfalen:9,westminst:9,wft:9,what:[0,1,4,7],wheel:4,where:[1,4,6,7],whether:[1,4],which:[1,3,4,6,7,9],who:[1,3],wht:9,widget:[1,8],wight:9,wil:9,wiltshir:9,window:[4,5],wisconsin:9,within:[1,5,6],without:5,wlg:9,wln:9,wlx:9,wna:9,wnd:9,won:1,wor:9,worcestershir:9,work:[0,1,4,6,7,8],worker:[4,6],world:[],would:[0,1,4,5],wrekin
 
:9,wrexham:9,write:[4,6],written:6,wrt:9,wrx:9,wsm:9,wsx:9,wtf:4,wtf_csrf_enabled:4,www:9,wyom:9,xinjiang:9,xizang:9,yacoub:9,yamal:9,yan:9,yanovsk:9,yar:9,yaroslavl:9,year:7,yev:9,yevrei:9,yonn:9,yor:9,york:9,yorkshir:9,you:[],your:[],yourself:1,yum:4,yunnan:9,yvelin:9,zab:9,zabayk:9,zag:9,zagora:9,zamora:9,zaporizhzhya:9,zaragoza:9,zeeland:9,zeeuws:9,zet:9,zhejiang:9,zhytomyr:9,zouagha:9,zuid:9},titles:["Druid","FAQ","Gallery","Apache
 Superset (incubating)","Installation &amp; Configuration","Security","SQL 
Lab","Tutorial for Superset Administrators","Videos","Visualization 
Tools"],titleterms:{"new":[1,7,9],"public":5,about:1,access:[4,5],add:[1,9],adding:[7,8],admin:5,administr:7,aggregat:0,alpha:5,annotat:8,apach:3,athena:4,availabl:6,aws:4,balanc:4,behind:4,big:1,blueprint:4,build:4,cach:4,can:1,column:1,configur:4,connect:7,content:3,cors:4,countri:9,creat:[1,7],creation:8,css:8,custom:[5,8],dashboard:[1,7,8],data:[1,5,7],databas:[4,7],deeper:4,defin:8,depend:4,develop:1,direc
 
tori:1,document:[],doe:1,druid:[0,4],dynam:1,exist:1,explore:7,expression:8,extra:6,fabmanag:1,faq:1,featur:[3,6],filter:[1,8],freez:1,galleri:2,gamma:5,get:4,home:1,how:1,hung:1,incub:3,indice:3,initi:4,instal:4,installat:4,integr:4,intro:8,jinja:6,join:1,lab:[4,6],list:9,load:4,macro:6,make:4,manag:5,map:[1,9],mapbox:1,metric:5,middleware:4,mount:1,multipl:1,need:9,nfs:1,out:1,overview:[3,6],own:[1,4],per:5,permiss:5,pip:4,post:0,postgr:4,provid:5,python:4,queri:1,quick:8,redshift:4,respond:1,restrict:5,role:5,schema:4,secur:5,setup:4,slice:[7,8],some:5,sourc:[1,5],sql:[4,6,8],sql_lab:5,sqlalchemi:4,ssl:4,start:[1,4],subset:5,superset:[1,3,4,7],support:0,tabl:[1,3,7,8],templat:6,theme:8,time:1,tool:[4,9],tutori:7,type:1,upgrade:4,video:8,virtualenv:4,visibl:1,visual:[1,9],when:1,why:1,yet:0,you:9,your:[4,7]}})
\ No newline at end of file
+Search.setIndex({envversion:49,filenames:["druid","faq","gallery","index","installation","security","sqllab","tutorial","videos","visualization"],objects:{"superset.jinja_context":{PrestoTemplateProcessor:[6,0,1,""],url_param:[6,1,1,""]}},objnames:{"0":["py","class","Python
 class"],"1":["py","function","Python 
function"]},objtypes:{"0":"py:class","1":"py:function"},terms:{"1thisismyscretkei":4,"37k":7,"3aclose":1,"3aexampl":1,"\u00e1lava":9,"\u00e1vila":9,"a\u00eft":9,"abstract":1,"almer\u00eda":9,"amap\u00e1":9,"ard\u00e8che":9,"ari\u00e8g":9,"b\u00e9ni":9,"c\u00e1cere":9,"c\u00e1diz":9,"c\u00f3rdoba":9,"c\u00f4te":9,"case":[0,4,7],"castell\u00f3n":9,"cear\u00e1":9,"class":[4,6],"const":1,"corr\u00e8z":9,"coru\u00f1a":9,"d\u00f4me":9,"default":[1,4,5,6,7,9],"dr\u00f4me":9,"esp\u00edrito":9,"export":1,"final":7,"finist\u00e8r":9,"function":[3,4],"goi\u00e1":9,"guip\u00fazcoa":9,"h\u00e9rault":9,"hoce\u00efma":9,"import":[1,4,9],"is\u00e8re":9,"ja\u00e9n":9,"k\u00e9nitra":9,"kela\u00
 
e2":9,"kh\u00e9misset":9,"kh\u00e9nifra":9,"la\u00e2youn":9,"le\u00f3n":9,"li\u00e8g":9,"long":[1,4,6],"loz\u00e8r":9,"m\u00e1laga":9,"maranh\u00e3o":9,"mekn\u00e8":9,"new":[],"ni\u00e8vr":9,"par\u00e1":9,"para\u00edba":9,"paran\u00e1":9,"piau\u00ed":9,"pyr\u00e9n\u00e9":9,"return":[1,4,6],"rh\u00f4ne":9,"rond\u00f4nia":9,"s\u00e3o":9,"s\u00e8vre":9,"sa\u00f4n":9,"sal\u00e9":9,"short":[8,9],"switch":4,"t\u00e9mara":9,"t\u00e9touan":9,"th\u00fcringen":9,"true":[4,5],"var":9,"vend\u00e9":9,"w\u00fcrttemberg":9,"while":[0,3,4,5],__call__:4,__from:1,__init__:4,__name__:4,__to:1,abd:9,abe:9,aberdeen:9,aberdeenshir:9,abil:7,abl:[4,5,7],about:[],abov:[1,7],absenc:6,accept:[1,3],access:[],accord:1,account:4,acre:9,action:[4,5,9],activ:4,adapt:4,adding:[],addit:4,additional_middleware:4,address:1,adjust:7,admin:[],administr:[],advanc:[0,4,7],adventur:4,adygei:9,affect:[1,8],after:[1,4,7],afterward:1,agadir:9,again:[1,7],against:[0,4],agb:9,agd:9,aggreg:[0,3,5],ago:7,agrigento:9,agy:9,ahmar:9
 
,ain:9,airbnb:[0,1,4],airflow:[],aisn:9,alabama:9,alagoa:9,alaska:9,albacet:9,alessandria:9,alicant:9,all:[0,1,3,4,5,7,9],all_datasource_access:5,allier:9,allow:[1,3,4,5,6],alongsid:4,alpe:9,alphanumer:9,alreadi:[4,7,8,9],also:[1,4,5,6,7,9],alt:[6,9],altai:9,alter:[5,8],alx:9,amazona:9,amazonaw:4,ambigu:9,amu:9,amur:9,analys:7,analysi:[1,7],analyst:5,analyt:4,analyz:7,ancona:9,andria:9,angad:9,anglesei:9,angu:9,anhalt:9,anhui:9,ani:[1,4,5,6,7],anjra:9,annot:8,annotat:[],anonym:5,anoth:[4,5],another:1,ans:9,ant:9,antrim:9,antwerpen:9,any:5,aosta:9,api:[1,4],app:4,appbuilder:[3,5],appear:[0,7],appli:[1,6,7,8],applic:[3,4,5],appropri:1,apt:4,aquila:9,arbitrari:1,ard:9,ardenn:9,arezzo:9,argyll:9,arizona:9,ark:9,arkansa:9,arkhangel:9,arm:9,armagh:9,armor:9,around:1,arrai:[1,4],ascoli:9,asf:3,ash:9,ask:7,asn:9,aspect:8,assa:9,asset:[1,4,9],assign:5,assilah:9,associ:5,assum:[4,5,7],assumpt:5,ast:9,asti:9,astrakhan:9,asturia:9,aswan:9,async:[],asynchron:4,asyut:9,asz:9,athena:[],atlantiqu:9
 
,attempt:4,attribut:5,aube:9,aude:9,audienc:7,auth_remote_user:4,authent:[3,5,7],automag:5,automat:1,avail:[3,4,5,7,8],avellino:9,aveyron:9,avoid:1,awar:4,aws:[],aws_access_key_id:4,aws_secret_access_kei:4,awsathena:4,axi:7,ayrshir:9,ayshir:9,azi:9,azilal:9,back:[1,4,7],backend:[],badajoz:9,baden:9,baha:9,bahia:9,bahr:9,bake:7,balanc:[],balear:9,balkar:9,ballymena:9,ballymonei:9,banbridg:9,bani:9,bar:7,barcelona:9,bari:9,bark:9,barletta:9,bas:9,base:[1,5],basecach:4,bashkortostan:9,basi:5,basic:7,batch:1,bath:9,bayern:9,bbd:9,bdf:9,bdg:9,becaus:9,bedfordshir:9,been:[5,7],befor:[1,4],behalf:7,behind:[],beij:9,bel:9,belfast:9,belfort:9,belgium:9,belgorod:9,belluno:9,below:7,bem:9,ben:9,benevento:9,ber:9,bergamo:9,berkan:9,berkshir:9,berlin:9,bes:9,best:5,better:[4,7],bex:9,bexlei:9,beyond:4,bfs:9,bge:9,bgw:9,biella:9,bin:4,binari:4,bind:4,bit:[4,7],bkm:9,bla:9,blackburn:9,blaenau:9,blank:7,blob:[1,4],blueprint:[],blueprints:4,bly:9,bmh:9,bnb:9,bnh:9,bns:9,bologna:9,bolzano:9,bom:9,bor
 
der:9,both:[4,5],bottom:[5,7],bouch:9,bouleman:9,boundari:1,bournemouth:9,box:[1,7],brabant:9,brandenburg:9,brazil:9,bremen:9,brent:9,brescia:9,brew:4,brianza:9,bridgend:9,brighton:9,brindisi:9,bring:4,bristol:9,broad:7,broken:1,broker:4,broker_url:4,bromlei:9,brows:6,browser:4,bru:9,bruxel:9,bry:9,bryansk:9,bst:9,buckinghamshir:9,buhayrah:9,build:[],builder:4,built:[1,5],builtin:6,bundl:4,bur:9,burgo:9,buryat:9,buryatdan:9,busi:3,bute:9,button:[5,7],cach:[],cache_config:4,caerphilli:9,cagliari:9,calabria:9,calai:9,california:9,call:[4,7],caltanissetta:9,calvado:9,cam:9,cambridgeshir:9,camden:9,campidano:9,campobasso:9,can:[],can_add:5,can_delet:5,can_edit:5,can_list:5,can_show:5,cannot:5,cantabria:9,cantal:9,capabl:[1,6],captur:7,caravel:3,carbonia:9,cardiff:9,care:7,carmarthenshir:9,carolina:9,carrara:9,carrickfergu:9,cas:9,casablanca:9,caserta:9,castlereagh:9,catania:9,catanzaro:9,catarina:9,categori:5,caus:1,cay:9,celeri:[1,4,6],celery_annotations:4,celery_config:4,celery_import
 
s:4,celery_result_backend:4,celeryconfig:4,celsiu:7,ceredigion:9,certain:[1,6,8],cesena:9,ceuta:9,cflags:4,cgn:9,cgv:9,chanc:4,chang:[1,4,7],charact:9,charent:9,chart:[7,8],che:9,chechnya:9,check:[0,1,5,7],checkbox:[0,1,5],chefchaouen:9,chelsea:9,chelyabinsk:9,cher:9,cherkasi:9,cherkess:9,chernihiv:9,chernivtsi:9,cheshir:9,chi:9,chichaoua:9,chieti:9,china:9,choic:9,chongq:9,chs:9,cht:9,chtouka:9,chu:9,chukot:9,chuvash:9,citi:9,ciudad:9,ckf:9,ckt:9,clackmannanshir:9,clarifi:[0,1],clearli:7,cleveland:9,click:[0,1,5,7],clickhous:4,client:[1,4],clint:1,clk:9,clr:9,cluster1:5,cluster:4,cma:9,cmd:9,cmn:9,code:[1,3,4,6,9],colerain:9,collect:[5,8],colorado:9,columbia:9,column:[],com:[1,4],come:[1,4,5,6,8],comma:7,command:[4,5],comment:1,common:[0,1,4],commun:3,como:9,compat:4,complementari:5,complet:[3,9],compli:4,compon:9,compos:5,con:9,concept:4,concern:9,config:[4,7],configur:[],confin:4,confirm:[5,7],congrat:7,connect:[],connect_arg:4,connecticut:9,consist:[3,4,9],consolid:5,constant:[1
 
,4],consult:4,consum:5,contain:[1,4,9],context:[4,6],contrib:4,contribut:1,control:[3,9],conveni:9,convert:[7,9],conwi:9,cookstown:9,copi:4,cor:4,corner:7,cornwal:9,correctli:[4,7],correspond:0,cors:[],cors_options:4,corydolphin:4,cosenza:9,could:5,count:[0,7],countri:[],country_nam:1,coupl:7,cover:[0,7],craigavon:9,creat:[],create_engin:4,creation:[],credenti:4,cremona:9,creus:9,crf:9,crimea:9,criteria:[1,4],croton:9,croydon:9,cruz:9,cry:9,cryptographi:4,csr:9,csrf:4,csrf_enabled:[],css:[],cuenca:9,cumbria:9,cuneo:9,current:[0,3,4,5],cusio:9,custom:[],cwy:9,cx_oracl:4,cycl:1,d3format:7,dagenham:9,dagestan:9,dakota:9,dal:9,daqahliyah:9,darlington:9,darwen:9,databas:[],dataset:[3,5,7,8],datasourc:[0,1,4,5],datasource1:5,date:[1,5,7],datetim:6,dateutil:6,dby:9,deactiv:4,deal:1,debian:4,decis:3,deep:3,deeper:[],def:4,defin:[],definit:[0,1],degre:7,delawar:9,delet:5,demonstr:8,den:9,denbighshir:9,deni:[5,9],depart:[5,9],departmen:9,depend:[],deploi:[],der:9,derbi:9,derbyshir:9,deriv:[4,
 
8],derri:9,descend:1,describ:[1,4,5,6,7],descript:9,design:1,desir:7,detail:1,deux:9,dev:[4,9],devel:4,develop:[],devon:9,dgn:9,dgy:9,dialect:4,dictionari:4,did:1,didn:1,differ:[1,4,5,7,8],difficult:7,dimens:[1,7,8],direct:7,directli:[1,4],disclaim:3,discov:1,dispatch:6,displai:[1,3,9],disregard:1,distinct:[0,1,7],distribut:[1,6,7],district:9,distrito:9,diva:9,divis:9,dnd:9,dnipropetrov:9,doc:[0,4],document:[],don:1,done:4,donet:9,dor:9,dordogn:9,dorset:9,doub:9,dow:9,down:[1,3,7,9],download:4,drag:7,drenth:9,driver:4,drop:[3,7],dropdown:[0,1,5],dry:9,due:1,dumfri:9,dumyat:9,dunbartonshir:9,dunde:9,dungannon:9,dur:9,durat:4,durham:9,each:[5,9],eal:9,eale:9,easi:[1,3,4],easier:1,easili:6,east:9,eay:9,edh:9,edinburgh:9,edit:[0,1,4,5,7],editor:1,edu:9,effect:1,effort:3,egypt:9,eilean:9,elb:4,element:[0,4],eln:9,els:9,emilia:9,enabl:[1,4,5],enable_cors:4,enable_proxy_fix:4,encod:4,encount:4,encrypt:4,end:7,endors:3,endpoint:4,enf:9,enfield:9,engin:[],engine_param:4,enna:9,enough:1,ensur
 
:4,enter:[4,6],enterpris:3,entiti:[4,5],env:4,environ:[1,4,6],equal:7,err:9,errachidia:9,error:[4,5],erw:9,ery:9,escap:4,esi:9,especi:1,ess:9,essaouira:9,essenti:4,essex:9,essonn:9,establish:9,esx:9,etc:7,eure:9,even:[5,7],eventu:4,everi:1,everyth:4,evolv:[1,5],exampl:[1,4,5,7,9],exce:4,except:[1,4],exclud:1,execut:[1,4,5,6,7],exist:[],exit:4,expanded_slic:1,expect:4,experi:[1,7],explain:0,explicit:5,explor:[0,1,3,4,5,7],explore:[],explorev2:9,expos:[0,4,5,6,7,8],express:1,expression:[],extens:[3,4,7],extra:[],extract:4,fab:5,factor:1,fah:9,fahrenheit:7,fal:9,falkirk:9,fall:4,fashion:1,fast:1,fayyum:9,featur:[],feder:9,fedora:4,feel:7,fer:9,fermanagh:9,fermo:9,ferrara:9,fes:9,few:[1,4,5,7],field:[0,1,3,4,5,7],fif:9,fife:9,fig:9,figuig:9,file:[1,4,9],filesystem:4,filter:[],filter_immune_slic:1,filter_immune_slice_field:1,financ:5,financi:5,find:[4,6,7],fine:1,first:[0,4,5,7,9],fix:5,flag:[1,4],flask:[3,4,5],flevoland:9,flintshir:9,fln:9,florenc:9,florida:9,flow:6,foggia:9,folder:9,fo
 
llow:[0,1,4,7,9],foobar:4,forest:9,fork:4,forli:9,form:[1,4,9],format:7,forward:4,foundat:[3,5],frame:1,framework:[1,4,5],franc:9,frankiv:9,fresh:7,friesland:9,from:[0,1,4,5,6,7,8,9],frosinon:9,fujian:9,fulham:9,full:[7,9],fulli:3,further:3,futur:4,fym:9,gallowai:9,gamma:[],gansu:9,gard:9,garonn:9,gatewai:1,gather:5,gcc:4,gdal:9,gdata:9,gelderland:9,gener:6,genova:9,geojson:9,georgia:9,ger:9,gerai:9,germani:9,get:[],gharbiyah:9,gigant:1,girona:9,girond:9,git:4,github:[1,4],give:[1,5],given:5,glamorgan:9,glasgow:9,glg:9,global:4,gloucestershir:9,gls:9,goe:4,good:[1,7],googl:4,gorizia:9,gorno:9,granada:9,grand:9,grant:5,granular:[3,5],gre:9,great:5,green:7,greenplum:4,greenwich:9,groningen:9,grosseto:9,grosso:9,group:[1,7],groupabl:7,groupbi:0,guadalajara:9,guangdong:9,guangxi:9,gue:9,guelmim:9,guizhou:9,gunicorn:[1,4],gwent:9,gwn:9,gwynedd:9,hacknei:9,hainan:9,hainaut:9,haj:9,hajeb:9,hal:9,halton:9,ham:9,hamburg:9,hamlet:9,hammersmith:9,hampshir:9,handl:[4,5,6],hao:9,haouz:9,happen:[
 
1,5],haringei:9,harrow:9,hartlepool:9,haut:9,hav:9,have:[0,1,3,4,5,7],haven:7,haver:9,hawaii:9,hck:9,header:[4,7],health:4,healthcheck:4,heavi:1,hebei:9,hef:9,heilongjiang:9,help:[4,7],henan:9,here:[1,4,5,6,7,8],herefordshir:9,hertfordshir:9,hessen:9,high:[3,8],highest:7,highland:9,hil:9,hillingdon:9,hit:[1,4,6],hive:4,hld:9,hmf:9,hns:9,hoc:9,hold:7,holland:9,holstein:9,host:4,hostnam:4,hounslow:9,hour:[1,4],hove:9,how:[],howev:1,hpl:9,hrt:9,hrw:9,hry:9,html:[4,9],http:[1,4,9],http_x_proxy_remote_user:4,hubei:9,huelva:9,huesca:9,hui:9,hull:9,hunan:9,hyphen:9,icon:[1,7],ida:9,idaho:9,ide:[4,6],ideal:7,identifi:9,ifr:9,ifrane:9,iglesia:9,ijsselmeer:9,iliyah:9,ille:9,illinoi:9,immedi:7,immun:8,impala:4,impati:4,imperia:9,implement:[1,4],impyla:4,includ:[4,5],increas:1,incubat:3,index:[3,4,6],indiana:9,indic:[3,7],individu:[3,5],indre:9,ine:9,inezgan:9,inform:[1,4,7],infrastructur:3,ingush:9,init:[4,5],initi:[],initial:4,input:9,insert:4,insid:4,instal:[],install:4,installat:[],instanc:
 
[4,5,7],integr:[],integrat:3,intellig:3,intend:4,interact:1,interest:7,interfac:[3,4],intern:[1,9],internat:9,intric:3,intro:[],intuit:[],inverclyd:9,investig:7,iow:9,iowa:9,irk:9,irkutsk:9,isernia:9,iskandariyah:9,isl:9,island:9,isle:9,islington:9,isma:9,isn:[0,1,4],iso:9,issu:1,itali:9,item:[4,5],itself:[4,5,7,9],iva:9,ivano:9,ivanovo:9,ivc:9,jadid:9,jadida:9,janeiro:9,janub:9,javascript:[1,9],jdbc:4,jdi:9,jerada:9,jersei:9,jiangsu:9,jiangxi:9,jilin:9,jinja:[],jinja_context:6,jinja_context_addons:4,jizah:9,join:[],jra:9,json:[0,1,4],jsx:9,jura:9,just:[1,4,6,7],kabardin:9,kacem:9,kafr:9,kaliningrad:9,kalmyk:9,kaluga:9,kam:9,kamchatka:9,kansa:9,karachai:9,karelia:9,kda:9,kec:9,kei:[1,4],kem:9,kemerovo:9,ken:9,kensington:9,kent:9,kentucki:9,kes:9,key_prefix:4,keyboard:6,keyn:9,keyword:[1,4],kfs:9,kgd:9,kgn:9,kha:9,khabarovsk:9,khakass:9,khanti:9,kharkiv:9,khe:9,kherson:9,khl:9,khm:9,khmel:9,khn:9,kho:9,khouribga:9,kiev:9,kill:1,kingston:9,kinross:9,kir:9,kirov:9,kirovohrad:9,klu:9,kn
 
ow:4,known:1,komi:9,kos:9,kostroma:9,krasnodar:9,krasnoyarsk:9,krs:9,ktt:9,kurgan:9,kursk:9,kwarg:6,kya:9,kyi:9,laa:9,lab:[],label:[1,7,9],lambda:4,lambeth:9,lan:9,lanarkshir:9,lancashir:9,land:9,languag:[6,8],lar:9,larach:9,larg:[1,4],larn:9,last:4,latest:4,latest_partit:6,latina:9,latitud:7,laughingman7743:4,layer:[1,3],lbh:9,lce:9,ldap:3,ldflags:4,least:4,leav:7,lec:9,lecc:9,lecco:9,left:7,leicest:9,leicestershir:9,len:9,leningrad:9,less:9,let:7,level:[1,4,5,8],lew:9,lewisham:9,liaon:9,lib:4,libffi:4,libldap2:4,librari:[4,6],libsasl2:4,libssl:4,life:1,like:[0,1,4,5,7],limavadi:9,limburg:9,limit:[],lin:9,lincolnshir:9,link:7,lip:9,lipetsk:9,lisburn:9,list:[],live:1,livorno:9,lleida:9,lmv:9,lnd:9,lo4:9,load:[],load_exampl:4,local:4,localhost:4,localt:[],locat:1,lock:1,lodi:9,log:[1,5],logic:[1,4,7],login:4,loir:9,loiret:9,london:9,longer:1,longitud:7,look:[4,5,7],lookup:[0,6],lot:9,lothian:9,louisiana:9,lrn:9,lsb:9,lucca:9,luckili:7,lugo:9,luhan:9,lut:9,luton:9,luxembourg:9,macerat
 
a:9,made:[3,4,5,9],madrid:9,mag:9,maga:9,magherafelt:9,mai:[1,4,5,7,9],main:[1,4,9],major:3,make:[],man:9,manag:[],manch:9,manchest:9,mani:[1,4,5,7],manifest:7,manner:3,mansii:9,mantua:9,manual:[0,5],mapbox_api_key:[1,4],mapshap:9,march:3,margin:7,marii:9,maritim:9,mark:7,markdown:8,marn:9,marrakech:9,maryland:9,massa:9,massachusett:9,match:7,matera:9,materi:1,mato:9,matrix:0,matrouh:9,max:[0,7],max__measurement_flag:7,maximum:[4,7],mayenn:9,mdb:9,mdw:9,mean:5,meantim:1,measur:7,measurement_d:7,measurement_flag:7,mecklenburg:9,medio:9,medwai:9,mek:9,melilla:9,mellal:9,melloul:9,memcach:4,memori:4,mention:1,menu:[1,4,5,7],mer:9,meren:9,merg:1,merseysid:9,merthyr:9,merton:9,messag:[1,4,5,7],messina:9,metadata:[1,4,6],metadata_param:4,method:6,metric:[],meurth:9,meus:9,mexico:9,mft:9,michigan:9,microsoft:1,middl:7,middlesbrough:9,middlewar:4,middleware:[],midland:9,midlothian:9,might:[1,5,7],mik:9,milano:9,milton:9,min:[0,7],mina:9,minnesota:9,minufiyah:9,minut:4,minya:9,mississippi:9,
 
missouri:9,mln:9,mmd:9,mnf:9,model:[3,5],modena:9,modern:[3,6],modul:[3,4,6],moh:9,mohammedia:9,moment:7,mon:9,mongol:9,monmouthshir:9,montana:9,monza:9,morai:9,morbihan:9,mordovia:9,more:[1,4,5,6,7,9],moreov:7,morocco:9,mos:9,moscow:9,mosel:9,moskva:9,most:[1,3],mostli:5,mou:9,moulai:9,mourn:9,move:1,mow:9,moyl:9,mrt:9,mry:9,mssql:4,mty:9,mu6:9,much:[0,1],multi:6,mur:9,murcia:9,murmansk:9,must:[4,7],my_crazy_macro:4,mykolayiv:9,myl:9,mysql:[1,4],mysqlclient:4,na7:9,nad:9,nador:9,name:[1,3,4,5,7,9],nameofyourcountri:9,namespac:6,namur:9,napoli:9,nation:9,navarra:9,navig:[4,8],nay:9,nbl:9,ndn:9,neath:9,nebraska:9,necessari:4,necessarili:3,need:[],nei:9,nel:9,nell:9,nen:9,nenet:9,netherland:9,nevada:[7,9],never:1,newham:9,newli:3,newport:9,newri:9,newtownabbei:9,next:[1,4,5,7,9],nfk:9,nginx:[1,4],ngm:9,ngr:9,niedersachsen:9,ningxia:9,niz:9,nizhegorod:9,nlk:9,nln:9,non:1,none:[4,6],noord:9,nord:9,nordrhein:9,norfolk:9,norm:9,nort:9,north:9,northamptonshir:9,northumberland:9,note:[1,4,5
 
,7],notic:0,nottingham:9,nottinghamshir:9,novara:9,novemb:3,novgorod:9,novosibirsk:9,now:[1,7],npm:[],nsm:9,nta:9,nth:9,ntl:9,ntt:9,number:[7,9],numer:7,nuoro:9,nvs:9,nwm:9,nwp:9,nyk:9,nym:9,nyt:9,oauth:3,object:[4,5],obtain:9,odessa:9,offici:4,ogliastra:9,ogr2ogr:9,ohio:9,oise:9,oklahoma:9,olbia:9,oltp:1,omagh:9,omh:9,oms:9,omsk:9,once:[4,7],one:5,onli:[1,5,7],ont:9,oost:9,openid:3,openldap:4,openssl:4,oper:4,opt:1,option:[4,7],optional:7,oracl:[1,4],order:4,ore:9,oregon:9,orel:9,orenburg:9,org:[4,9],organ:7,organiz:9,oriental:9,origin:[3,5,7],oristano:9,ork:9,orknei:9,orl:9,orne:9,ossetia:9,ossola:9,osx:4,other:[1,3,4,5,7,8],otherwis:4,oua:9,ouarzaz:9,ouj:9,oujda:9,our:7,ourens:9,out:[],outlier:7,overijssel:9,overload:4,overrid:1,own:[],oxf:9,oxfordshir:9,packag:[1,4],padua:9,page:[0,3,4,5,7],palencia:9,palermo:9,palma:9,panoramix:3,param:6,paramat:6,paramet:[4,6],parameter:6,pari:9,parma:9,part:[4,9],partit:6,partition_kei:6,pass:4,password:4,past:[4,6],path:[1,4],paulo:9,pavia:9
 
,pem:[4,9],pembrokeshir:9,pennsylvania:9,penza:9,peopl:[1,5],per:[],perfectli:1,perform:1,perhap:5,period:[],perm:9,permiss:[],pernambuco:9,persist:[4,6],perthshir:9,perugia:9,pesaro:9,pescara:9,peterborough:9,petersburg:9,pfalz:9,phrase:7,piacenza:9,piceno:9,piec:7,pip:[],pisa:9,pistoia:9,pkg:4,pkn:9,place:[4,7],plai:4,plain:7,plan:[1,4],platform:4,pleas:[1,4,7],plu:[5,7],ply:9,plymouth:9,pnz:9,pocoo:4,point:[4,7],pol:9,poltava:9,pontevedra:9,pool:9,pop:4,popul:[1,4],popup:7,por:9,pordenon:9,port:[4,9],portion:7,portsmouth:9,possibl:[1,4,5],postagg:0,postgr:[],postgresql:[1,4,7],potenza:9,pow:9,power:[4,5,6],powi:9,practic:1,prato:9,precipit:7,prefer:[],prefix:4,present:7,presto:[1,4,6],prestotemplateprocessor:6,pretti:1,previou:0,pri:9,primor:9,princip:9,probabl:[1,5],process:[1,3,4],product:[1,4],profil:5,program:6,project:[3,4],prompt:4,proto:4,provenc:9,provid:[],provinc:9,proxi:[1,4],psk:9,pskov:9,psycopg2:4,pte:9,pts:9,public_role_like_gamma:5,publish:9,pui:9,pull:1,purpos:[4
 
,7,9],put:[4,9],pyathenajdbc:4,pyhiv:4,pylibmc:4,pymssql:4,pypi:4,python:[],pythonpath:[1,4],pyvenv:4,qahirah:9,qalyubiyah:9,qina:9,qinghai:9,query_timeout_threshold:1,queue:[4,6],quick:[],rab:9,rabat:9,rabbitmq:4,ragusa:9,random:[4,6],rang:7,rapid:5,rate_limit:4,ravenna:9,rcc:9,rct:9,rdb:9,rdbms:3,react:6,read:7,readi:3,real:9,reason:1,rebuild:1,receiv:1,recommend:[1,4,5],record:[5,7,9],redbridg:9,redcar:9,redi:4,redirect:7,rediscach:4,redshift:[],reduc:9,refer:[4,7],referenc:4,reflect:[1,3],refresh:[],refresh_druid:4,regex:0,reggio:9,region:9,region_nam:4,regist:1,rel:5,relat:[0,4,5],relativedelta:6,relev:9,reli:4,remote_user:[3,4],remoteusermiddlewar:4,remov:5,renam:3,renfrewshir:9,replac:7,repo:4,repres:9,requeri:1,request:[1,4],requir:[1,3,4,5,9],research:7,reserv:1,respons:[1,4],rest:7,result:[0,1,4,6,7],results_backend:4,retain:7,reusabl:4,revenu:5,revers:4,review:3,revok:5,rfw:9,rheinland:9,rhel:4,rhin:9,rhode:9,rhondda:9,ric:9,rich:[3,6],richmond:9,ride:9,rieti:9,right:[4,5
 
,7],rimini:9,rio:9,rioja:9,rivn:9,role:[],roma:9,root:4,roraima:9,ros:9,rostov:9,roughli:7,rout:4,rovigo:9,row:[5,7],row_limit:4,rule:3,run:[0,1,4,5,6,7],runserv:[1,4],russia:9,russian:9,rut:9,rutland:9,rya:9,ryazan:9,s3_cache_bucket:4,s3_cache_key_prefix:4,s3_staging_dir:4,s3cach:4,s3werkzeugcach:4,saarland:9,sachsen:9,saf:9,safi:9,sai:[4,5],saint:9,sak:9,sakha:9,sakhalin:9,sal:9,salamanca:9,salerno:9,sam:9,samara:9,same:[4,5],sampl:7,sandbox:1,santa:9,santo:9,sar:9,saratov:9,sarth:9,sassari:9,save:[0,1,5,7],savoi:9,savona:9,say:9,scan:1,scb:9,scene:1,schedul:1,schema:[],schema_nam:4,schleswig:9,scope:4,scottish:9,scratch:7,script:4,sea:9,search:[3,5,6],searchpath:4,second:[1,4,5,9],secret:4,secret_key:4,section:[1,7],secur:[],see:[1,5,7],seem:7,sef:9,sefrou:9,segovia:9,sein:9,select:[5,6,7],select_countri:9,selectcontrol:9,self:4,semant:[3,8],send:1,sensit:5,separ:[7,9],sergip:9,serv:[1,4],server:[1,4],set:[1,3,4,5,7,9],settat:9,setup:[],setuptool:4,sevastopol:9,sevilla:9,sfk:9,sg
 
c:9,shaanxi:9,shamal:9,shandong:9,shanghai:9,shanxi:9,shapfil:9,share:[1,3],sharqiyah:9,shaykh:9,she:5,shetland:9,shg:9,ship:[4,5],shortcut:6,should:[1,3,4,5,7,9],show:[1,3,4,7,8],shr:9,shropshir:9,siar:9,sichuan:9,side:[1,4],sidi:9,siena:9,sign:[4,5,7],sik:9,simpl:[1,3,4,5,7,8],simple_pag:4,simplecach:4,simpler:0,simpli:[1,4,5,7],sin:9,sina:9,sinc:[5,7],singapor:9,singl:[1,4,5],site:9,size:[7,9],skh:9,skhirat:9,slice:[],slice_id:1,sliceid:1,sliman:9,slk:9,slow:1,small:1,smaller:7,smo:9,smolensk:9,smooth:6,snippet:4,snowfal:7,softwar:3,solut:1,som:9,some:[],some_macro_cal:6,some_t:6,someon:7,somerset:9,someth:[4,7],sometim:[1,5],somm:9,sondrio:9,soon:8,soria:9,sort:1,sos:9,sourc:[],south:9,southampton:9,southend:9,southwark:9,spain:9,sparksql:4,spe:9,speak:3,specif:[1,4,5,7],specifi:[0,1,4],spezia:9,sponsor:3,sql:[],sql_lab_result:4,sqlalchemi:[],sqlalchemy_database_uri:[1,4],sqlite:[1,4],sqllab_async_time_limit_sec:1,sraghna:9,sry:9,ssl:[],sslmode:4,sslrootcert:4,sta:9,stabil:3,sta
 
ffordshir:9,stai:5,standard:[4,6,9],start_respons:4,state:9,statist:7,statu:[1,3,5],stavropol:9,stb:9,ste:9,stem:9,step:[4,9],stg:9,sth:9,still:5,stirl:9,stn:9,stockton:9,stoke:9,store:[1,4,9],str:6,straban:9,straightforward:4,strategi:5,string:[4,7,9],sts:9,stt:9,subdivis:9,success:3,successfulli:7,sud:9,sudo:4,suffolk:9,suhaj:9,sul:9,sum:[0,7],sumi:9,summari:7,superset:[],superset_config:[1,4,5],superset_home:[1,4],superset_result:4,superset_webserver_port:4,superset_workers:4,support_sqlalchemi:4,sure:[4,5],surfac:7,surrei:9,sussex:9,sutton:9,suwai:9,suwayf:9,suz:9,sve:9,sverdlovsk:9,swa:9,swansea:9,swd:9,swindon:9,swk:9,symlink:[],synchron:5,syntax:4,syracus:9,system:[4,9],tab:[0,1,5,6,7],tag:1,taken:7,talbot:9,tam:9,tambov:9,tan:9,tanan:9,tanger:9,tao:9,taounat:9,taourirt:9,tar:9,taranto:9,target:7,tarn:9,taroudannt:9,tarragona:9,task:4,tat:9,tata:9,tatarstan:9,taw:9,taz:9,taza:9,tee:9,telford:9,temp:4,temperatur:7,tempio:9,templat:[],template_fold:4,tempor:7,tenerif:9,tennesse
 
:9,tenth:7,terabyt:1,teramo:9,terni:9,ternopil:9,territoir:9,territori:9,teruel:9,test:[0,1,4,7],tet:9,texa:9,text:7,tfw:9,thame:9,than:[7,9],thei:[0,4,5,6],them:[4,5,8],theme:[],therefor:7,thi:[0,1,3,4,5,7,8,9],thing:[4,7],those:[1,5],though:[0,4,5,7],thr:9,three:9,through:[1,3,4,5,7,8],thurrock:9,tianjin:9,tick:7,timed_refresh_immune_slic:1,timeout:[1,4],tiz:9,tiznit:9,tng:9,tnt:9,tob:9,tocantin:9,tof:9,toggl:8,toledo:9,tom:9,tomsk:9,tool:[],top:[1,4,5,7],torbai:9,torfaen:9,torino:9,tower:9,trani:9,transcarpathia:9,transform:1,trapani:9,trent:9,trento:9,treviso:9,triest:9,tul:9,tula:9,tutori:[],tuva:9,tve:9,tver:9,tweak:4,twh:9,twice:1,two:[7,9],tydfil:9,tyne:9,type:[],typeahead:5,typic:4,tyu:9,tyumen:9,ubuntu:4,udine:9,udmurt:9,ukrain:9,ultim:4,uly:9,uncommon:[],under:[6,7],undergo:3,unfortun:4,union:[1,5],uniqu:9,unleash:6,unlik:7,unpack:4,unreleas:4,until:[3,7],updat:4,upgrad:4,upgrade:[],upon:[0,5,9],upper:7,uqsur:9,urbino:9,uri:[4,7],url:[4,6],url_param:6,usa:9,user:[1,3,4,5,
 
7],usernam:4,using:1,usr:5,usual:9,utah:9,utilis:4,utrecht:9,uuid:6,uygur:9,val:9,vale:9,valencia:9,valentia:9,valid:0,valladolid:9,valu:[1,4,5,6,7],van:9,vares:9,variabl:[1,4],vauclus:9,vbr:9,venezia:9,venv:4,verbano:9,vercelli:9,veri:[4,5],vermont:9,verona:9,version:[0,4],vertica:[1,4],vertica_python:4,vgg:9,vgl:9,via:9,vibo:9,vicenza:9,video:[],vienn:9,view:[0,1,4,5,7,8],vilain:9,vinnytsya:9,virginia:9,virtual:1,virtualenv:[],viterbo:9,viv:9,vizcaya:9,vla:9,vlaam:9,vlaanderen:9,vladimir:9,vlg:9,vli:9,volgograd:9,vologda:9,volyn:9,vor:9,voronezh:9,vorpommern:9,vosg:9,vov:9,vwv:9,wad:9,wadi:9,wai:[5,7],walk:[7,8],walkthrough:[7,8],wallon:9,waltham:9,wandsworth:9,want:[1,4,5,7,9],war:9,warn:1,warrington:9,warwickshir:9,washington:9,wbk:9,wbr:9,wdu:9,wealth:7,wear:9,weather:7,weather_descript:7,web:[1,3,4,5],webserv:4,well:[0,1,4,5],were:[5,7],werkzeug:4,west:9,westfalen:9,westminst:9,wft:9,what:[],wheel:4,where:[1,4,6,7],whether:[1,4],which:[1,3,4,6,7,9],who:[1,3],wht:9,widget:[1,8]
 
,wight:9,wil:9,wiltshir:9,window:[4,5],wisconsin:9,within:[1,5,6],without:5,wlg:9,wln:9,wlx:9,wna:9,wnd:9,won:1,wor:9,worcestershir:9,work:[0,1,4,6,7,8],worker:[4,6],workload:1,world:[],would:[0,1,4,5],wrekin:9,wrexham:9,write:[4,6],written:6,wrt:9,wrx:9,wsm:9,wsx:9,wtf:4,wtf_csrf_enabled:4,www:9,wyom:9,xinjiang:9,xizang:9,yacoub:9,yamal:9,yan:9,yanovsk:9,yar:9,yarn:4,yaroslavl:9,year:7,yev:9,yevrei:9,yonn:9,yor:9,york:9,yorkshir:9,you:[],your:[],yourself:1,yum:4,yunnan:9,yvelin:9,zab:9,zabayk:9,zag:9,zagora:9,zamora:9,zaporizhzhya:9,zaragoza:9,zeeland:9,zeeuws:9,zet:9,zhejiang:9,zhytomyr:9,zouagha:9,zuid:9},titles:["Druid","FAQ","Gallery","Apache
 Superset (incubating)","Installation &amp; Configuration","Security","SQL 
Lab","Tutorial for Superset Administrators","Videos","Visualization 
Tools"],titleterms:{"new":[1,7,9],"public":5,about:1,access:[4,5],add:[1,9],adding:[7,8],admin:5,administr:7,aggregat:0,alpha:5,annotat:8,apach:3,athena:4,availabl:6,aws:4,backend:1,balanc:4,behind:4
 
,big:1,blueprint:4,build:4,cach:4,can:1,column:1,configur:4,connect:7,content:3,cors:4,countri:9,creat:[1,7],creation:8,css:8,custom:[5,8],dashboard:[1,7,8],data:[1,5,7],databas:[1,4,7],deeper:4,defin:8,depend:4,develop:1,directori:1,document:[],doe:1,druid:[0,4],dynam:1,engin:1,exist:1,explore:7,expression:8,extra:6,fabmanag:1,faq:1,featur:[3,6],filter:[1,8],freez:1,galleri:2,gamma:5,get:4,home:1,how:1,hung:1,incub:3,indice:3,initi:4,instal:4,installat:4,integr:4,intro:8,jinja:6,join:1,lab:[4,6],limit:1,list:9,load:4,macro:6,make:4,manag:5,map:[1,9],mapbox:1,metric:5,middleware:4,mount:1,multipl:1,need:9,nfs:1,out:1,overview:[3,6],own:[1,4],per:5,permiss:5,pip:4,post:0,postgr:4,provid:5,python:4,queri:1,quick:8,redshift:4,refresh:1,respond:1,restrict:5,role:5,schema:4,secur:5,setup:4,slice:[7,8],some:5,sourc:[1,5],sql:[4,6,8],sql_lab:5,sqlalchemi:4,ssl:4,start:[1,4],subset:5,superset:[1,3,4,7],support:0,tabl:[1,3,7,8],templat:6,theme:8,time:1,tool:[4,9],tutori:7,type:1,upgrade:4,vi
 
deo:8,virtualenv:4,visibl:1,visual:[1,9],what:1,when:1,why:1,yet:0,you:9,your:[4,7]}})
\ No newline at end of file

Reply via email to