1

我刚刚开始在 10.13.2 上使用 TabPy。我使用了 conda pymysql 包(pymysql 和 PyMySQL-0.8.0-py2.7.egg-info)并将它们放在 anaconda 的站点包中,以便 Tableau 能够连接到数据库、检索数据集和保存在计算字段中。

我最初尝试了 mysql.connector,就像我在 PyCharm 和 CLI 中所做的那样,但 TabPy 使用 anaconda,它没有 mysql 的站点包。

无论如何,它最初连接到 TabPy 服务器,该服务器返回:

An error occurred while communicating with the Predictive Service.

但是,紧随其后的是接下来的两行:

Error processing script
TypeError : %d format: a number is required, not str

我已经对上述错误进行了一些挖掘,并且我尝试过的所有内容都产生了相同的错误。我找到了解决方案,但最后出现了另一个错误。

SCRIPT_REAL("
import pymysql

db = pymysql.connect(
                     host='localhost',
                     port='9999',
                     user='usern',
                     passwd='passw',
                     db='someDb'
                     )

cur = db.cursor()

t1 = int(0)

t2 = datetime.datetime(2018, 2, 1)

sqlStr = 'select distinct APPL_ID, APPL_SUBMIT_DT from APPL_APP where APPL_ACTIVE_FLAG > %d and APPL_SUBMIT_DT >= %d' % (t1, t2)

cur.execute()

for row in cur.fetchall():
    print row

db.close()
",
COUNT([Appl Id])
)

我不明白为什么脚本会返回这样的错误,直到我在 PyCharm 中运行它。我的端口号需要是数字而不是字符串。

import pymysql

db = pymysql.connect(
                     host='localhost',
                     port=9999,
                     user='usern',
                     passwd='passw',
                     db='someDb'
                     )

cur = db.cursor()

t1 = int(0)

t2 = (2018-02-01)

sqlStr = 'select distinct APPL_ID, APPL_SUBMIT_DT from APPL_APP where APPL_ACTIVE_FLAG > %d and APPL_SUBMIT_DT >= %d' % (t1, t2)

cur.execute(sqlStr)

for row in cur.fetchall():
    print row

db.close()

当然,虽然我可以看到通过 TabPy 服务器在我的终端中返回的所有数据,但它完成了以下操作:

(3957423, datetime.datetime(2018, 2, 27, 15, 30, 16))
(3957424, datetime.datetime(2018, 2, 27, 15, 31))
(3957425, datetime.datetime(2018, 2, 27, 15, 31, 4))
(3957426, datetime.datetime(2018, 2, 27, 15, 31, 55))
(3957428, datetime.datetime(2018, 2, 27, 15, 32, 17))
(3957429, datetime.datetime(2018, 2, 27, 15, 32, 18))
None
ERROR:__main__:{"info": null, "ERROR": "Error running script. No return value"}

这怎么可能?那里显然有数据。

4

1 回答 1

0

为了让您的脚本在 Tableau 中运行,您需要使用 python 命令return something,其中某些内容是包含适当返回类型的列表。否则这些值可能存在于 python 中,但 Tableau 看不到它们。

在您的情况下,您需要使用如下代码构建一个列表:

ReturnValues=[]
for row in cur.fetchall():
   ReturnValues.append(row)
return ReturnValues

然后将完整的行列表发送回 Tableau。但是,您可能仍然会遇到问题,因为 Tableau 将期望一个特定大小的列表,该列表与发送到 python 的输入列表相匹配。您没有这样的输入,这可能会导致问题。

于 2018-03-01T11:18:51.060 回答