

 Amazon Redshift は、パッチ 198 以降、新しい Python UDF の作成をサポートしなくなります。既存の Python UDF は、2026 年 6 月 30 日まで引き続き機能します。詳細については、[ブログ記事](https://aws.amazon.com/blogs/big-data/amazon-redshift-python-user-defined-functions-will-reach-end-of-support-after-june-30-2026/)を参照してください。

# 設定リファレンス
<a name="cm_chap_ConfigurationRef"></a>

設定ファイルを使用して、環境をカスタマイズできます。Amazon Redshift では、さまざまなパラメータと設定によって、データウェアハウス環境をカスタマイズし最適化することができます。設定リファレンスには、使用可能なクラスタープロパティ、データベースパラメータ、ワークロード管理 (WLM) 設定オプションの概要が記載されています。このリファレンスを参照して、特定の要件に基づいてパフォーマンス、セキュリティ、リソース割り当てを調整できます。以下のリファレンスでは、必要なデータウェアハウス構成を実現するために、これらの設定を変更するための詳細なガイダンスを提供します。

**Topics**
+ [サーバー設定の変更](#t_Modifying_the_default_settings)
+ [analyze\$1threshold\$1percent](r_analyze_threshold_percent.md)
+ [cast\$1super\$1null\$1on\$1error](r_cast_super_null_on_error.md)
+ [datashare\$1break\$1glass\$1session\$1var](r_datashare_break_glass_session_var.md)
+ [datestyle](r_datestyle.md)
+ [default\$1array\$1search\$1null\$1handling](r_default_array_search_null_handling.md)
+ [default\$1geometry\$1encoding](r_default_geometry_encoding.md)
+ [describe\$1field\$1name\$1in\$1uppercase](r_describe_field_name_in_uppercase.md)
+ [downcase\$1delimited\$1identifier](r_downcase_delimited_identifier.md)
+ [enable\$1case\$1sensitive\$1identifier](r_enable_case_sensitive_identifier.md)
+ [enable\$1case\$1sensitive\$1super\$1attribute](r_enable_case_sensitive_super_attribute.md)
+ [enable\$1numeric\$1rounding](r_enable_numeric_rounding.md)
+ [enable\$1result\$1cache\$1for\$1session](r_enable_result_cache_for_session.md)
+ [enable\$1vacuum\$1boost](r_enable_vacuum_boost.md)
+ [error\$1on\$1nondeterministic\$1update](r_error_on_nondeterministic_update.md)
+ [extra\$1float\$1digits](r_extra_float_digits.md)
+ [interval\$1forbid\$1composite\$1literals](r_interval_forbid_composite_literals.md)
+ [json\$1serialization\$1enable](r_json_serialization_enable.md)
+ [json\$1serialization\$1parse\$1nested\$1strings](r_json_serialization_parse_nested_strings.md)
+ [max\$1concurrency\$1scaling\$1clusters](r_max_concurrency_scaling_clusters.md)
+ [max\$1cursor\$1result\$1set\$1size](max_cursor_result_set_size.md)
+ [mv\$1enable\$1aqmv\$1for\$1session](r_mv_enable_aqmv_for_session.md)
+ [navigate\$1super\$1null\$1on\$1error](r_navigate_super_null_on_error.md)
+ [parse\$1super\$1null\$1on\$1error](r_parse_super_null_on_error.md)
+ [pg\$1federation\$1repeatable\$1read](r_pg_federation_repeatable_read.md)
+ [query\$1group](r_query_group.md)
+ [search\$1path](r_search_path.md)
+ [spectrum\$1enable\$1pseudo\$1columns](r_spectrum_enable_pseudo_columns.md)
+ [enable\$1spectrum\$1oid](r_spectrum_enable_spectrum_oid.md)
+ [spectrum\$1query\$1maxerror](r_spectrum_query_maxerror.md)
+ [statement\$1timeout](r_statement_timeout.md)
+ [stored\$1proc\$1log\$1min\$1messages](r_stored_proc_log_min_messages.md)
+ [timezone](r_timezone_config.md)
+ [use\$1fips\$1ssl](use_fips_ssl.md)
+ [wlm\$1query\$1slot\$1count](r_wlm_query_slot_count.md)

## サーバー設定の変更
<a name="t_Modifying_the_default_settings"></a>

以下の方法でサーバー設定を変更できます。
+ [SET](r_SET.md) コマンドを使用して、現在のセッションの期間だけ設定をオーバーライドします。

  次に例を示します。

  ```
  set extra_float_digits to 2;
  ```
+ クラスターのパラメータグループ設定を変更します。パラメータグループ設定には、設定可能な追加のパラメータが含まれています。詳細については、「[Amazon Redshift 管理ガイド](https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-parameter-groups.html)」の「*Amazon Redshift パラメータグループ*」を参照してください。
+ [ALTER USER](r_ALTER_USER.md) コマンドを使用して、指定したユーザーによって実行されるすべてのセッションに対して、設定パラメータを新しいデフォルト値に設定します。

  ```
  ALTER USER username SET parameter { TO | = } { value | DEFAULT }
  ```

現在のパラメータ設定を見るには、SHOW コマンドを使用します。[SET](r_SET.md) コマンドを使用して設定できるすべての設定値を表示するには、SHOW ALL を使用します。

```
SHOW ALL;

name                      | setting      
--------------------------+--------------
analyze_threshold_percent | 10           
datestyle                 | ISO, MDY     
extra_float_digits        | 2            
query_group               | default      
search_path               | $user, public
statement_timeout         | 0            
timezone                  | UTC            
wlm_query_slot_count      | 1
```

**注記**  
設定パラメータは、データウェアハウス内の接続先のデータベースに適用されます。