septfish commented on issue #36069:
URL: https://github.com/apache/superset/issues/36069#issuecomment-3520384245
Maybe I miss some config, it is the same error after I set the config as
below. pls tell me what I should do next.
my config.js:
{
"port": 8080,
"logLevel": "info",
"logToFile": false,
"logFilename": "app.log",
"statsd": {
"host": "127.0.0.1",
"port": 8125,
"globalTags": []
},
"redis": {
"port": 6379,
"host": "127.0.0.1",
"db": 2,
"ssl": false
},
"redisStreamPrefix": "async-events-",
"jwtSecret": "82PCGN7HG/rDIUBKOmhvKjX5D+naaG85S77PiyRm+xZ5LLdETuH4J5DY",
"jwtCookieName": "async-token"
}
my superset_config.py:
GLOBAL_ASYNC_QUERIES = True
GLOBAL_ASYNC_QUERIES_TRANSPORT = "ws"
GLOBAL_ASYNC_QUERIES_WEBSOCKET_URL = "ws://localhost:8080/"
GLOBAL_ASYNC_QUERIES_REDIS_CONFIG = {
"host": "127.0.0.1",
"port": 6379,
"db": 2,
"ssl": False
}
GLOBAL_ASYNC_QUERIES_JWT_SECRET =
"82PCGN7HG/rDIUBKOmhvKjX5D+naaG85S77PiyRm+xZ5LLdETuH4J5DY"
GLOBAL_ASYNC_QUERIES_JWT_COOKIE_NAME = "async-token"
GLOBAL_ASYNC_QUERIES_REDIS_STREAM_PREFIX = "async-events-"
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]