gpt4 book ai didi

postgresql - 扩展多维数据集的 pg_dump/pg_restore 错误

转载 作者:行者123 更新时间:2023-12-04 09:00:27 25 4
gpt4 key购买 nike

我一直在转储和恢复我的一个数据库时遇到问题,我认为这是因为公共(public)模式中的一些扩展。引发错误的扩展似乎是 Cube 扩展或 EarthDistance 扩展。这是我得到的错误:

pg_restore: [archiver (db)] Error from TOC entry 2983;
pg_restore: [archiver (db)] could not execute query: ERROR: type "earth" does not exist
LINE 1: ...ians($1))*sin(radians($2))),earth()*sin(radians($1)))::earth

QUERY: SELECT cube(cube(cube(earth()*cos(radians($1))*cos(radians($2))),earth()*cos(radians($1))*sin(radians($2))),earth()*sin(radians($1)))::earth
CONTEXT: SQL function "ll_to_earth" during inlining
Command was: REFRESH MATERIALIZED VIEW public.locationsearch

我自己编写的一些函数也遇到了类似的不同问题,最终问题出在搜索路径上,因此将这些函数的搜索路径明确设置为 public 解决了我的问题。我对 ll_to_earth 进行了同样的尝试,但似乎整个扩展都是问题所在。我真的不想尝试安装 pg_catalog 的扩展,因为这看起来不太好。

这是我的典型转储命令:

pg_dump -U postgres -h ipAddress -p 5432 -w -F t database > database.tar

其次是:

pg_restore -U postgres -h localhost -p 5432 -w -d postgres -C "database.tar"

包含数据的完整转储大约为 4gb,但我尝试使用 -s-F p 仅转储架构,有趣的是,这是开始:

--
-- PostgreSQL database dump
--

-- Dumped from database version 12.2
-- Dumped by pg_dump version 12.2

SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SELECT pg_catalog.set_config('search_path', '', false);
SET check_function_bodies = false;
SET xmloption = content;
SET client_min_messages = warning;
SET row_security = off;

--
-- Name: cube; Type: EXTENSION; Schema: -; Owner: -
--

CREATE EXTENSION IF NOT EXISTS cube WITH SCHEMA public;


--
-- Name: EXTENSION cube; Type: COMMENT; Schema: -; Owner:
--

COMMENT ON EXTENSION cube IS 'data type for multidimensional cubes';


--
-- Name: earthdistance; Type: EXTENSION; Schema: -; Owner: -
--

CREATE EXTENSION IF NOT EXISTS earthdistance WITH SCHEMA public;


--
-- Name: EXTENSION earthdistance; Type: COMMENT; Schema: -; Owner:
--

COMMENT ON EXTENSION earthdistance IS 'calculate great-circle distances on the surface of the Earth';

我想我很困惑……从逻辑上讲,这与我使用 tar 格式时的情况不一样吗?我知道问题在于,当 pg_restore 进入实体化 View 并尝试使用函数 ll_to_earth(float8, float8) 时,它失败了,因为该函数不在其搜索路径或还没有被恢复,但是这不是表明扩展是第一个被恢复的东西吗?这可以修复吗?

这是我编写的脚本的一部分,该脚本会将数据库转储到我的生产环境中,并每天在我的测试环境中恢复数据库,以便它们匹配。它工作了几个月,直到我开始使用这个扩展,但我不知道如何纠正它。

最佳答案

出于安全原因,pg_dumpsearch_path 设置为空,因此只有在系统模式pg_catalog 中的对象被引用时才会被找到模式限定。

现在您的 SQL 函数使用没有架构的数据类型 earth(可能是 public),因此您会收到错误消息。

您必须更改函数以使用限定名称,如 public.earth 扩展对象。或者,可能更好的方法是修复函数​​的 search_path:

ALTER FUNCTION myfun SET search_path = public;

无论如何这是个好主意,否则如果用户更改 search_path,您的函数将停止工作。根据定义或使用函数的方式,这甚至可能构成安全问题(这就是 pg_dump 这样做的原因)。

关于postgresql - 扩展多维数据集的 pg_dump/pg_restore 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63586022/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com