Altair 将数据保存到仪表板时出错

如何解决Altair 将数据保存到仪表板时出错

大家好,我在使用 Eltair 和 vega 时遇到了 Elasticsearch 交互方面的问题。详细发生的事情如下:我有一个由 38.8mb 的数据生成的索引模式,顺序为 90k 行。我想使用这个索引模式来创建一个可视化,让我可以根据两个值进行过滤。所以这个想法是我想及时表示数据并将这个可视化插入到 kibana 仪表板中。我应该能够与可视化进行交互,并且可以根据插入的过滤器进行交互。我设法做到了,详细地说,我设法用下面的代码部分创建了这个图:详细地说,我们可以看到 def saveVegaliteVis 和从 link 中取出的对象,然后我们可以看到构建的图表并作为我想要。我想在数据增加解决这个问题,因为数据小于 3 mb,所以在 10k 左右我没有可视化问题。

def saveVegaliteVis(client,index,visName,altairChart,resultSize=100,timeField=True):
    chart_json = json.loads(altairChart.to_json())
    chart_json['data']['url'] = {
        "%context%": True,"index": index,"body": {
            "size": resultSize
        }
    }

    if timeField:
      chart_json['data']['url']['%timefield%'] = "timestamp"

    visstate = {
      "type": "vega","aggs": [],"params": {
        "spec": json.dumps(chart_json,sort_keys=True,indent=4,separators=(',',': ')),},"title": visName
    }

    visSavedobject={
        "visualization" : {
          "title" : visName,"visstate" : json.dumps(visstate,"uiStateJSON" : "{}","description" : "","version" : 1,"kibanaSavedobjectMeta" : {
            "searchSourceJSON" : json.dumps({
              "query": {
                "language": "kuery","query": ""
              },"filter": []
            }),}
        },"type" : "visualization","references" : [ ],"migrationVersion" : {
          "visualization" : "7.7.0"
        },"updated_at" : datetime.datetime.Now().strftime("%Y-%m-%dT%H:%M:%s.000Z")
    }

    return client.index(index='.kibana',id='visualization:'+visName,body=visSavedobject)

def saveVegaVis(client,timeField=True):
    chart_json = json.loads(altairChart.to_json())
    chart_json['spec']['data']['url'] = {
        "%context%": True,"body": {
            "size": resultSize
        }
    }

    if timeField:
      chart_json['spec']['data']['url']['%timefield%'] = "timestamp"

    visstate = {
      "type": "vega",body=visSavedobject)
def getDataBasedonIndex(index,idValue,es):
    es.indices.refresh(index=index)
    res = es.get(index=index,id=idValue)
    print(res['_source'])



input_dropdown = alt.binding_select(options=[[1,2,3,4,5],[4],[3],[1],[2],[5],[1,[3,4],3],[4,2],[2,[5,3]])
selection = alt.selection_single(fields=['NUMBER'],bind=input_dropdown,name='FIELD: ')

#dropdown
input_dropdown1 = alt.binding_select(options=[['M3','M4','M5','M6'],['M4'],['M3'],['M6'],['M5']])
selection1 = alt.selection_single(fields=['SHAPE TYPE'],bind=input_dropdown1,name='FIELD2: ')
#shape
selection_Operation= alt.selection_multi(fields=['NUMBER:N'],bind='legend')
shape_Operation = alt.condition(selection_Operation,alt.Shape('NUMBER:N'),alt.value('lightgray'))

color = alt.condition(selection,alt.Color('SHAPE TYPE:N'),alt.value('lightgray'))

interaction1 = alt.selection_interval(bind='scales',on="[mousedown[event.altKey],mouseup] > mousemove",translate="[mousedown[event.altKey],mouseup] > mousemove!",zoom="wheel![event.altKey]"
)

interactionY = alt.selection_interval(bind='scales',encodings=['x'],on="[mousedown[event.shiftKey],translate="[mousedown[event.shiftKey],zoom="wheel![event.shiftKey]")
ScatterLine=alt.Chart(df).mark_point(filled=True).encode(x=alt.X('@timestamp:T',title='TIMESTAMP'),y=alt.Y('value:Q',title='value'),color=color,shape=shape_Operation,tooltip = ['value:N','NUMBER:N','SHAPE TYPE:N',alt.Tooltip('@timestamp:T',format = '%Y-%m-%d %H:%M'),'ID:N']
).add_selection(interaction1,interactionY,selection,selection1,selection_Operation).resolve_scale(  x='independent').transform_filter(selection & selection1)

ScatterLine 

saveVegaliteVis(es,'index-pattern1','RapresentationPoint',ScatterLine,timeField=True)

您怎么能在下面看到只有 saveVegaliteVis 例程生成错误。我正在尝试修改 saveVega 插入 resultSize=1000000 但同时生成以下错误。我该如何解决这个问题?我想确保问题仅在于保存此信息以便将信息插入仪表板。这意味着可视化本身有效。

---------------------------------------------------------------------------
timeout                                   Traceback (most recent call last)
/usr/lib/python3/dist-packages/urllib3/connectionpool.py in _make_request(self,conn,method,url,timeout,chunked,**httplib_request_kw)
    420                     # Otherwise it looks like a bug in the code.
--> 421                     six.raise_from(e,None)
    422         except (SocketTimeout,BaseSSLError,SocketError) as e:

/usr/lib/python3/dist-packages/six.py in raise_from(value,from_value)

/usr/lib/python3/dist-packages/urllib3/connectionpool.py in _make_request(self,**httplib_request_kw)
    415                 try:
--> 416                     httplib_response = conn.getresponse()
    417                 except BaseException as e:

/usr/lib/python3.8/http/client.py in getresponse(self)
   1346             try:
-> 1347                 response.begin()
   1348             except ConnectionError:

/usr/lib/python3.8/http/client.py in begin(self)
    306         while True:
--> 307             version,status,reason = self._read_status()
    308             if status != CONTINUE:

/usr/lib/python3.8/http/client.py in _read_status(self)
    267     def _read_status(self):
--> 268         line = str(self.fp.readline(_MAXLINE + 1),"iso-8859-1")
    269         if len(line) > _MAXLINE:

/usr/lib/python3.8/socket.py in readinto(self,b)
    668             try:
--> 669                 return self._sock.recv_into(b)
    670             except timeout:

timeout: timed out

During handling of the above exception,another exception occurred:

ReadTimeoutError                          Traceback (most recent call last)
~/.local/lib/python3.8/site-packages/elasticsearch/connection/http_urllib3.py in perform_request(self,params,body,ignore,headers)
    250 
--> 251             response = self.pool.urlopen(
    252                 method,retries=Retry(False),headers=request_headers,**kw

/usr/lib/python3/dist-packages/urllib3/connectionpool.py in urlopen(self,headers,retries,redirect,assert_same_host,pool_timeout,release_conn,body_pos,**response_kw)
    718 
--> 719             retries = retries.increment(
    720                 method,error=e,_pool=self,_stacktrace=sys.exc_info()[2]

/usr/lib/python3/dist-packages/urllib3/util/retry.py in increment(self,response,error,_pool,_stacktrace)
    375             # disabled,indicate to re-raise the error.
--> 376             raise six.reraise(type(error),_stacktrace)
    377 

/usr/lib/python3/dist-packages/six.py in reraise(tp,value,tb)
    702                 raise value.with_traceback(tb)
--> 703             raise value
    704         finally:

/usr/lib/python3/dist-packages/urllib3/connectionpool.py in urlopen(self,**response_kw)
    664             # Make the request on the httplib connection object.
--> 665             httplib_response = self._make_request(
    666                 conn,/usr/lib/python3/dist-packages/urllib3/connectionpool.py in _make_request(self,**httplib_request_kw)
    422         except (SocketTimeout,SocketError) as e:
--> 423             self._raise_timeout(err=e,url=url,timeout_value=read_timeout)
    424             raise

/usr/lib/python3/dist-packages/urllib3/connectionpool.py in _raise_timeout(self,err,timeout_value)
    329         if isinstance(err,SocketTimeout):
--> 330             raise ReadTimeoutError(
    331                 self,"Read timed out. (read timeout=%s)" % timeout_value

ReadTimeoutError: httpconnectionPool(host='localhost',port=9200): Read timed out. (read timeout=10)

During handling of the above exception,another exception occurred:

ConnectionTimeout                         Traceback (most recent call last)
<ipython-input-31-45635f0d8635> in <module>
----> 1 saveVegaliteVis(es,'index-pattern',timeField=True,resultSize=100000)

<ipython-input-3-984bfed0a208> in saveVegaliteVis(client,resultSize,timeField)
     46     }
     47 
---> 48     return client.index(index='.kibana',body=visSavedobject)
     49 
     50 def saveVegaVis(client,timeField=True):

~/.local/lib/python3.8/site-packages/elasticsearch/client/utils.py in _wrapped(*args,**kwargs)
    166                 if p in kwargs:
    167                     params[p] = kwargs.pop(p)
--> 168             return func(*args,params=params,headers=headers,**kwargs)
    169 
    170         return _wrapped

~/.local/lib/python3.8/site-packages/elasticsearch/client/__init__.py in index(self,doc_type,id,headers)
    404             doc_type = "_doc"
    405 
--> 406         return self.transport.perform_request(
    407             "POST" if id in SKIP_IN_PATH else "PUT",408             _make_path(index,id),~/.local/lib/python3.8/site-packages/elasticsearch/transport.py in perform_request(self,body)
    413                         raise e
    414                 else:
--> 415                     raise e
    416 
    417             else:

~/.local/lib/python3.8/site-packages/elasticsearch/transport.py in perform_request(self,body)
    379 
    380             try:
--> 381                 status,headers_response,data = connection.perform_request(
    382                     method,383                     url,~/.local/lib/python3.8/site-packages/elasticsearch/connection/http_urllib3.py in perform_request(self,headers)
    261                 raise SSLError("N/A",str(e),e)
    262             if isinstance(e,ReadTimeoutError):
--> 263                 raise ConnectionTimeout("TIMEOUT",e)
    264             raise ConnectionError("N/A",e)
    265 

ConnectionTimeout: ConnectionTimeout caused by - ReadTimeoutError(httpconnectionPool(host='localhost',port=9200): Read timed out. (read timeout=10))

解决方法

我设法解决了添加到 es 设置更高请求时间的问题。

es = Elasticsearch([{'host': HOST_ADDRESS,'port': THE_PORT}],timeout=30)

(此信息由另一个问题 link

为了避免系统崩溃,我还需要增加 kibana 所需的磁盘空间。为此,我在 kibana.yml 的环境部分插入 "--max-old.space-size=2048"

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐


Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其他元素将获得点击?
Python-如何使用点“。” 访问字典成员?
Java 字符串是不可变的。到底是什么意思?
Java中的“ final”关键字如何工作?(我仍然可以修改对象。)
“loop:”在Java代码中。这是什么,为什么要编译?
java.lang.ClassNotFoundException:sun.jdbc.odbc.JdbcOdbcDriver发生异常。为什么?
这是用Java进行XML解析的最佳库。
Java的PriorityQueue的内置迭代器不会以任何特定顺序遍历数据结构。为什么?
如何在Java中聆听按键时移动图像。
Java“Program to an interface”。这是什么意思?
Java在半透明框架/面板/组件上重新绘画。
Java“ Class.forName()”和“ Class.forName()。newInstance()”之间有什么区别?
在此环境中不提供编译器。也许是在JRE而不是JDK上运行?
Java用相同的方法在一个类中实现两个接口。哪种接口方法被覆盖?
Java 什么是Runtime.getRuntime()。totalMemory()和freeMemory()?
java.library.path中的java.lang.UnsatisfiedLinkError否*****。dll
JavaFX“位置是必需的。” 即使在同一包装中
Java 导入两个具有相同名称的类。怎么处理?
Java 是否应该在HttpServletResponse.getOutputStream()/。getWriter()上调用.close()?
Java RegEx元字符(。)和普通点?