apache/superset · error · ExplorePermalinkGetFailedError

An error occurred while accessing the value.

Error message

An error occurred while accessing the value.

What it means

Error "An error occurred while accessing the value." thrown in apache/superset.

Source

Thrown at superset/commands/explore/permalink/get.py:69

                datasource_id: int = (
                    value.get("datasourceId") or value.get("datasetId") or 0
                )
                datasource_type = DatasourceType(
                    value.get("datasourceType", DatasourceType.TABLE)
                )
                check_chart_access(datasource_id, chart_id, datasource_type)
                return value
            return None
        except (
            DatasetNotFoundError,
            KeyValueCodecDecodeException,
            KeyValueGetFailedError,
            KeyValueParseKeyError,
        ) as ex:
            raise ExplorePermalinkGetFailedError(message=ex.message) from ex
        except SQLAlchemyError as ex:
            logger.exception("Error running get command")
            raise ExplorePermalinkGetFailedError() from ex

    def validate(self) -> None:
        pass

View on GitHub (pinned to f4587218dd)

Solutions

  1. Verify the permalink key is correct and has not expired.
  2. Create a new permalink for the Explore state and retry.

When it happens

Trigger: Accessing an Explore permalink whose stored value is missing or unreadable.

Common situations: Fetching an Explore permalink whose stored key-value entry is missing, expired, or fails to deserialize.


AI-assisted analysis of apache/superset@f4587218dd (2026-08-14). Data as JSON: /api/errors/7edd834c8c3b4766. Report an issue: GitHub.