並び順

ブックマーク数

期間指定

  • から
  • まで

1601 - 1640 件 / 1739件

新着順 人気順

postgresの検索結果1601 - 1640 件 / 1739件

  • Amazon Aurora MySQL 3.03 (compatible with MySQL 8.0.26) is generally available

    Starting today, Amazon Aurora MySQL-Compatible Edition 3 (with MySQL 8.0 compatibility) supports MySQL 8.0.26. In addition to several security enhancements and bug fixes, MySQL 8.0.26 includes several changes, such as enhanced tablespace file segment page configuration and new aliases for certain identifier names. For more details, please review Aurora MySQL 3 and MySQL 8.0.26 release notes. To up

      Amazon Aurora MySQL 3.03 (compatible with MySQL 8.0.26) is generally available
    • 地理情報・PostGISことはじめ - Qiita

      Deleted articles cannot be recovered. Draft of this article would be also deleted. Are you sure you want to delete this article? フューチャー Advent Calendar 2020 17日目です。 昨日は @alfe_below さんによる「package.json dependencies メンテの仕方 最短ルート」でした。 はじめに 地理情報を扱うアプリケーションを開発するにあたって、基礎知識として頭に入れておいたほうが良さそうなことと、PostGISの簡単な使い方をまとめてみました。 Google Maps JavaScript APIやLeaflet.jsなど、フロントエンドのライブラリの使い方については触れていません。また、測量に関する細かい話も書い

        地理情報・PostGISことはじめ - Qiita
      • M1Mac環境でDockerのMySQLを動かす - Qiita

        $ docker run -d --rm -e MYSQL_ROOT_PASSWORD=password mysql:8.0 Unable to find image 'mysql:8.0' locally 8.0: Pulling from library/mysql docker: no matching manifest for linux/arm64/v8 in the manifest list entries. この記事はM1MacでDockerを使ってMySQLのコンテナを立ち上げるためのものです。 事前準備 Docker Desktop(Preview)をインストール済 理由 M1Macのプラットフォームはarm64。 mysqlイメージのサポートプラットフォームはamd64。 イメージをプルする際に実行環境のプラットフォームに合わせて自動的にamd64のイメージを取得し、

          M1Mac環境でDockerのMySQLを動かす - Qiita
        • [MySQL] ERROR 1227 (42000) at line 18: Access denied; you need (at least one of) the SUPER privilege(s) for this operation - Qiita

          Deleted articles cannot be recovered. Draft of this article would be also deleted. Are you sure you want to delete this article?

            [MySQL] ERROR 1227 (42000) at line 18: Access denied; you need (at least one of) the SUPER privilege(s) for this operation - Qiita
          • PostgreSQLのXID周回問について学んだ - このすみノート

            PostgreSQLの勉強をしているのですが、XID周回問題について知りました。 どのような問題か気になり調査したので、その際の技術メモです。 ちなみに、『詳解PostgreSQL[10/11対応]―現場で役立つ新機能と実践知識』というgihyo.jpの特集記事が、わかりやすかったです。 gihyo.jp XIDとは XIDとは、トランザクションごとに自動で割り振られるトランザクション識別子です。 PostgreSQLはテーブルやレコードなどをオブジェクトとして扱い、それぞれにXIDを内部的に割り振ります。 詳解 PostgreSQL[10/11対応]―現場で役立つ新機能と実践知識 〜中略〜 XIDの回収についてですが,PostgreSQLはテーブルやレコードなどをそれぞれ一つ一つのオブジェクトとして扱っており,それぞれにIDを割り振っています。これがXIDです。 https://gihy

              PostgreSQLのXID周回問について学んだ - このすみノート
            • RDS for MySQL・Auroraの機能を改めて学び直す #AWSreInvent | DevelopersIO

              RDS for MySQLやAurora(MySQL)の基本的な話から、主要な機能紹介があったセッションでした。MySQLやAuroraの新機能をつまみ食い程度で情報取得していたので、改めて情報を得るのによい機会でした。 こんにちは。ゲームソリューション部の出村です。 AWS re:Invent 2023のセッションである「Why AWS is the place to build and grow your MySQL workloads」のレポートをお届けします。 概要 AWS has a rich tradition of innovating in the MySQL space. AWS built Amazon Aurora, a cloud-native managed database with MySQL compatibility. AWS also offers Am

                RDS for MySQL・Auroraの機能を改めて学び直す #AWSreInvent | DevelopersIO
              • What I Wish Someone Told Me About Postgres

                I’ve been working professionally for the better part of a decade on web apps and, in that time, I’ve had to learn how to use a lot of different systems and tools. During that education, I found that the official documentation typically proved to be the most helpful. Except…Postgres. It’s not because the official docs aren’t stellar (they are!)–they’re just massive. For the current version (17 at t

                • Clickhouseの採用経緯と運用フローについて - SO Technologies 開発者ブログ

                  こんにちは、ATOM事業本部のプロダクト開発グループの松尾です。 広告媒体からのデータ取得処理や集計前の加工処理などを中心にバックエンドエンジニアとして開発を行ってきました。 最近は新レポートや進捗管理機能の開発を行っています。 ATOMのリニューアル版では、新レポートや進捗管理機能の媒体データの実績値の集計をclickhouseというデータベースを採用しております。 長らく苦戦し続けていましたが運用が安定してきたので、採用経緯から苦戦してきた過程について、簡単にご紹介させていただければと思います。 採用経緯について mysqlから集計処理を切り出したいと思った際に、1つの候補として挙がるのではないしょうか? 実際に調査をしてみると、select, insertが圧倒的に早い!!となるはずです。 そして、扱うデータ量が多くなればなるほどに、mysqlとの集計処理の性能差に驚くはずです。 同

                    Clickhouseの採用経緯と運用フローについて - SO Technologies 開発者ブログ
                  • 【SQL】月別で集計するときに値がない月は0と表示したい - Sweet Escape

                    SQLに関するメモ。前提としてPostgreSQLを使っています。 以下のようなTimestamp型で日時の情報を持つテーブルがあるとする。 id: integer timestamp: timestamp with time zone 1 2022-01-01 00:00:00+00 2 2022-02-01 00:00:00+00 3 2022-10-01 00:00:00+00 4 2022-10-01 00:00:00+00 5 2022-12-01 00:00:00+00 で、月ごとの件数を集計をしたい場合、何も考えずにこんなSQLを書く。 SELECT to_char(timestamp, 'YYYYMM') AS MONTH, count(id) FROM table1 GROUP BY MONTH ORDER BY MONTH; そうすると得られるのはこんな結果。 mont

                      【SQL】月別で集計するときに値がない月は0と表示したい - Sweet Escape
                    • ruby-mysql - tmtms のメモ

                      これはMySQLアドベントカレンダーとRubyアドベントカレンダーの12日目の記事です。 qiita.com qiita.com ruby-mysql は Ruby だけで書かれた MySQL 用のクライアントライブラリです。 今は Ruby から MySQL を使う場合は普通は mysql2 を使うだろうから、たぶん誰も使ってない。 誰も使ってないだろうし、6年ほど放置してたんだけど、なぜかその気になったのでまたいじり始めた。退職前の有給消化期間で暇だったからかも。 MySQL 8.0 対応 MySQL 8.0 でデフォルトの認証方式が変更になって、そのままでは接続できなくなったので対応。 認証方式はユーザーごとに異なる場合があるので、サーバーのデフォルト認証方式、クライアントのデフォルト認証方式、ユーザーの認証方式が異なっていた場合のプロトコルに対応。 とりあえず、MySQL 5.7

                        ruby-mysql - tmtms のメモ
                      • PUBLICロールにREVOKEってるやついる? - Qiita

                        (ネタとしてはもう古い・・・) 本記事はPostgreSQL AdventCalenderの16日目の記事です。 はじめに 本記事はPostgreSQL 15develを対象に確認した結果を使用しています。開発中のものであるため、リリース時には挙動が変わっている可能性がある点にご注意ください。 元々はROLEの設計について書こうと思っていたのですが、定義済みロールに見かけない子(pg_database_owner)がいたので気になって調べていたら、皆様ご存知のPUBLICロールへのREVOKEがPostgreSQL 15からは不要になるという話があったので確認してみたという話になります。 (割とインパクトのある変更なので、既にご存知の方も多いかもですが汗。) 環境 CentOS 7 PostgreSQL 14.1 15devel(2021/12/8時点) 定義済みロール(Predifine

                          PUBLICロールにREVOKEってるやついる? - Qiita
                        • DockerでPHPとMySQLのシンプルすぎる環境構築を行う - Qiita

                          執筆に至った経緯 Docker使えたらカッコよくね? ↓ ネットに転がってる環境構築は強すぎて理解できなくね? ↓ 最小構成の環境構築を知って、そこから自分が必要な部分を拡張していったら理解できるんじゃね? 想定読者 Dockerの基礎的なことは何となく分かったが、実際に使ってみたい方。 他人の作ったDocker環境は使ったことがあるが、自分では構築したことがない方。 今回のゴール DockerでPHPとMySQLの環境構築を行う。 具体的には以下3つが実行できたら完了とする。 PHPコンテナ内に入り、helloworldを出力する。 MySQLコンテナ内に入り、適当なSQL文を実行する。 PHPからMySQLに接続する。 実行環境と筆者のレベル感 実行環境 OS : Windows10 Pro プロセッサ : 11th Gen Intel(R) Core(TM) i7-11370H @

                            DockerでPHPとMySQLのシンプルすぎる環境構築を行う - Qiita
                          • PostGISユーザがMySQL 8の空間拡張機能を少し触ってみた

                            はじめに https://www.slideshare.net/yoyamasaki/mysql-57gis-80822317 を見て「どうもMySQLの空間拡張の機能が随分良くなった」ようだと知りました。また、https://www.slideshare.net/NorvaldRyeng/mysql-80-gis-are-you-ready で、もう少し踏み込んだ説明もありました。 これはちょっと触ってみなければいけないと思った次第です。 使用したもの 基本的に MySQL 8.0.3-rc Windows x64用 zip版を使いました。インストール方法は http://www.uetyi.com/server-const/entry-1650.html を見ました。 ST_Transform()の記述では、MySQL 8,0.20 Windows x64用 zip版も使用しています(

                              PostGISユーザがMySQL 8の空間拡張機能を少し触ってみた
                            • Best practices for configuring parameters for Amazon RDS for MySQL, part 3: Parameters related to security, operational manageability, and connectivity timeout | Amazon Web Services

                              AWS Database Blog Best practices for configuring parameters for Amazon RDS for MySQL, part 3: Parameters related to security, operational manageability, and connectivity timeout This blog post was last reviewed or updated January, 2023. In the previous blog post of this series, I discuss MySQL parameters used to optimize replication in Amazon Relational Database Service (Amazon RDS) for MySQL and

                                Best practices for configuring parameters for Amazon RDS for MySQL, part 3: Parameters related to security, operational manageability, and connectivity timeout | Amazon Web Services
                              • GitHub - cybertec-postgresql/pg_squeeze: A PostgreSQL extension for automatic bloat cleanup

                                You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                                  GitHub - cybertec-postgresql/pg_squeeze: A PostgreSQL extension for automatic bloat cleanup
                                • Dockerコンテナ内のmysqlでタイムゾーンのロードを行う - Qiita

                                  Deleted articles cannot be recovered. Draft of this article would be also deleted. Are you sure you want to delete this article?

                                    Dockerコンテナ内のmysqlでタイムゾーンのロードを行う - Qiita
                                  • MariaDB/MySQL性能チューニング(パラメータ設定見直し)|ITの魔力

                                    ■設定ファイル(/etc/my.cnf , /etc/mysql/mariadb.conf.d/50-server.cnf) [mysqld] # ——————————————– # InnoDBのデータとインデックスをキャッシュするバッファのサイズ(推奨は物理メモリの7割) innodb_buffer_pool_size=2G # InnoDBの更新ログを記録するディスク上のファイルサイズ(innodb_buffer_pool_sizeの25%程度) # innodb_log_fileがいっぱいになると、メモリ上のinnodb_buffer_poolの中の更新された部分のデータをデータファイルに書き出す仕組み。 # innodb_buffer_pool_sizeを大きくしたら、innodb_log_file_sizeもあわせて調整しないとパフォーマンスが向上しない。 innodb_log

                                      MariaDB/MySQL性能チューニング(パラメータ設定見直し)|ITの魔力
                                    • Creating new PostgreSQL DB for every xUnit test

                                      Ideally, you would want to run all tests on the database same as on production, in separate/isolated databases, and quickly on top of it. Luckily, this is easily achievable with PostgreSQL and xUnit and it is one of the reasons I like using the PostgreSQL database. This is what we'll do: Create a base (template) database at the tests startup Create a copy of the template database at the individual

                                        Creating new PostgreSQL DB for every xUnit test
                                      • rails mysql5.7から8.0アップグレード時の注意点📝

                                        railsが参照しているrdsをmysql5.7から8.0にアップグレードした時の注意点メモ utf8mb4を指定した場合は以下のパラメーターグループをutf8mb4にする必要がある character_set_database データベースの文字セットを定義します。文字セットは、文字を数値で表現する方法を定義するデータエンコーディングの一種です。 この設定は、新しく作成されるテーブルとそのカラムに使用されるデフォルトの文字セットを指定します。特定のテーブルやカラムに対して異なる文字セットを設定することも可能ですが、character_set_databaseはデフォルトの設定で、特定でない指定がない場合はこれが適用されます。 character_set_client ユーザーからのSQLステートメントがエンコードされている方法を定義します。クライアントからデータベースサーバーに送信される

                                          rails mysql5.7から8.0アップグレード時の注意点📝
                                        • GitHub - benbjohnson/postlite: Postgres wire compatible SQLite proxy.

                                          You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                                            GitHub - benbjohnson/postlite: Postgres wire compatible SQLite proxy.
                                          • MySQLチューニング虎の巻/ソートに関連するトピックとクエリの書き換え

                                            EnterpriseZine(エンタープライズジン)編集部では、情報システム担当、セキュリティ担当の方々向けに、EnterpriseZine Day、Security Online Day、DataTechという、3つのイベントを開催しております。それぞれ編集部独自の切り口で、業界トレンドや最新事例を網羅。最新の動向を知ることができる場として、好評を得ています。

                                              MySQLチューニング虎の巻/ソートに関連するトピックとクエリの書き換え
                                            • Zero downtime Postgres upgrades | Knock

                                              👋 We’re Knock. We provide a set of simple APIs developers use to introduce notifications into their products, without needing to build and maintain a notification system in-house. Tl;dr: We recently upgraded from Postgres 11.9 to 15.3 with zero downtime by using logical replication, a suite of support scripts, and tools in Elixir & Erlang’s BEAM virtual machine. This post will go into far too muc

                                                Zero downtime Postgres upgrades | Knock
                                              • 今日は、SQL勉強して三年目だがUsingとOnの気づかなかった違いの日。 - 今日はなにの日。

                                                目次 目次 とある日 環境 USINGとONの違いについて 1. 同一列名 2.結合後列数減少 列数減少による問題 Using On 気づかなかった理由 Onの多用 結合列の参照をしない 〆 とある日 とある内容について検証しているときに気づいたSQLのUSINGとONの違いについて調べるとあまり解説されていなかったので各句の違いとなぜ気づかなかったかについての記録を残そうと思います。 環境 項目 詳細 DataBase MySQL 8.0.23 OS CentOS8 さらなる詳細は下記のテスト環境の記事を参照してください。 updraft.hatenadiary.com USINGとONの違いについて 一般的に一番知られているであろう違いと自分が知らなかった違いの2つを解説しようと思います。 1. 同一列名 一番知られている違いとしては、USINGは結合するテーブルに同一名の列が存在する

                                                  今日は、SQL勉強して三年目だがUsingとOnの気づかなかった違いの日。 - 今日はなにの日。
                                                • ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2) - Qiita

                                                  Deleted articles cannot be recovered. Draft of this article would be also deleted. Are you sure you want to delete this article?

                                                    ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2) - Qiita
                                                  • MySQLのInnoDB テーブルの断片化(フラグメンテーション)を解消する - Qiita

                                                    概要 InnoDB では、追加・更新・削除操作を繰り返していると、断片化(フラグメンテーション)という現象が発生します。 これはいわば、ゴミみたいなもので、テーブルのデータを削除してもディスク容量が減りません。 このゴミが増えてくると、クエリ処理が遅くなる可能性があリます。 例えばレコードが100万件あるテーブルの内、99万9999件を削除し1件の状態にしても、テーブルが占有している領域は100万件分使っているということになります。 今回は実際にテストデータを作成し、フラグメンテーションの発生とその解消法について確認していきたいと思います。 フラグメンテーションの詳細については本記事では述べないので、気になる方は下記記事が分かりやすかったのでご参照ください。 前提 MySQL 5.7.31 InnoDB テストデータの挿入 まずテスト用のDBとテーブルを作り、約100万件テストデータを挿入

                                                      MySQLのInnoDB テーブルの断片化(フラグメンテーション)を解消する - Qiita
                                                    • Analyzing the Limits of Connection Scalability in Postgres | Microsoft Community Hub

                                                      One common challenge with Postgres for those of you who manage busy Postgres databases, and those of you who foresee being in that situation, is that Postgres does not handle large numbers of connections particularly well. While it is possible to have a few thousand established connections without running into problems, there are some real and hard-to-avoid problems. Since joining Microsoft last y

                                                        Analyzing the Limits of Connection Scalability in Postgres | Microsoft Community Hub
                                                      • dockerでFastAPIとpostgresql - Qiita

                                                        はじめに FastAPIとpostgresqlの環境構築を行いました。 LaravelやRailsのフレームワークに慣れていたのもあり、FastAPIを導入する際に少し面倒くさく感じたので、 備忘録を兼ねて環境構築の手順を書きました。 各コードの詳細については省いてます。 忙しい人のために最終的なソースです。 https://github.com/nonamenme/docker-fastapi-postgres こちらをdocker-compose up -dで立ち上げれば、とりあえずFastAPIの環境は完成します。 1. 準備 以下の構成でファイルを用意 ─── project ├── docker-compose.yml ├── Dockerfile ├── requirements.txt └── fastapi └── main.py version: '3.7' servic

                                                          dockerでFastAPIとpostgresql - Qiita
                                                        • Explaining The Postgres Meme

                                                          AuthorsNameAryan EbrahimpourGitHub@avestura  79 min readTable of Content I spend a significant amount of my time online, and on a regular day, I am either learning about STEM topics, indulging in memes, or both. On one such day, I came across a meme that truly caught my attention. It sparked numerous questions above my head, leading to a moment of deafening silence within me: I already knew that d

                                                            Explaining The Postgres Meme
                                                          • 20x faster than pgvector: introducing pg_embedding extension for vector search in Postgres and LangChain - Neon

                                                            20x faster than pgvector: introducing pg_embedding extension for vector search in Postgres and LangChainHNSW Index for approximate nearest neighbor search in Postgres Back when we wrote this, we were proud to bring HNSW indexes to Postgres. Since then, pgvector has added support for the HNSW index, and we've chosen to pause the development of pg_embedding and contribute to pgvector instead. We pla

                                                              20x faster than pgvector: introducing pg_embedding extension for vector search in Postgres and LangChain - Neon
                                                            • Awesome Blog

                                                              Awesome Blogは、ITエンジニアに関する技術情報から働き方に関する記事まで多彩なトピックを紹介するメディアです。

                                                              • 私がMySQLを始めた理由

                                                                MySQL 8.0 GIS機能入門! 2020年9月19日 OSC Online 広島 日本MySQLユーザ会(MyNA) 山﨑 由章 発表者 • 山﨑 由章(やまさき よしあき) – Twitter ID: @yyamasaki1 • 2012年4月からMySQLの中の人として活動中 • 前職ではOracle Databaseのコンサルティング、 サポート等に従事 GISとは? • 地理情報システム(GIS:Geographic Information System)は、 地理的位置を手がかりに、位置に関する情報を持った データ(空間データ)を総合的に管理・加工し、視覚的に 表示し、高度な分析や迅速な判断を可能にする技術 MySQLのGIS機能でできる事は? • 位置情報などを扱えるデータ型があるので、GISデータを 保存できる • 空間データを扱える各種のSpatial関数があるので、

                                                                • PostgreSQL テクニカルウェビナーのご案内 | エンタープライズDB (EDB) ジャパンブログ

                                                                  はじめに EDB では製品の機能、更新情報、ロードマップ等を中心に、お客様にウェビナーを通じて情報を提供してまいりました。2020年10月の 2ndQuadrant 社の合併に伴い、EDB では PostgreSQL をはじめ、より多くの新たなオープンソース製品の提供とサポートを行ってきております。このようなことから、EDB では PostgreSQL を中心とする、内部実装やアーキテクチャといった技術情報も合わせてご提供するウェビナーを開催する運びとなりました。これによりユーザーの皆様が PostgreSQL 関連製品をより良くご活用いただけるものと確信しております。本企画においては、PostgreSQL のコアメンバーでもある Bruce Momjian の全面的な賛同と協力を得ております。氏のもつ豊富な技術情報も共有させていただきますので、PostgreSQL ユーザーの皆様にご活用

                                                                    PostgreSQL テクニカルウェビナーのご案内 | エンタープライズDB (EDB) ジャパンブログ
                                                                  • 8.0.22でのprepared statementの挙動変化 - tom__bo’s Blog

                                                                    概要 8.0.22のリリースノートを見るとprepared statementの挙動が変わっているらしい。 特にこれが気になったので、試してみる For a prepared statement of the form SELECT expr1, expr2, ... FROM table ORDER BY ?, passing an integer value N for the parameter no longer causes ordering of the results by the Nth expression in the select list; the results are no longer ordered, as is expected with ORDER BY constant. どうやら8.0.22からはSELECT expr1, expr2, ... FR

                                                                      8.0.22でのprepared statementの挙動変化 - tom__bo’s Blog
                                                                    • GitHub - dumblob/mysql2sqlite: Converts MySQL dump to SQLite3 compatible dump

                                                                      You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                                                                        GitHub - dumblob/mysql2sqlite: Converts MySQL dump to SQLite3 compatible dump
                                                                      • MySQL カバリングインデックス - Qiita

                                                                        データが欲しい時に、より小さなコストでやろうと思ったら、 行全体を取得するよりも、インデックスのみで処理するようが良いに決まっている。 そこで、クエリを処理するのに必要なデータを全て含んでいるようなインデックスをカバリングインデックスと呼ぶ。 これは非常に有効な手段で、特にInnnoDBにおいては、セカンダリインデックスは、主キーの値をそのままリーフノードに格納するため、クエリをカバーするセカンダリインデックスによって、主キーでもう1つのインデックスルックアップを回避することができる。 カバリングインデックスが実行された時、EXPLAIN句のEXTRA列にUsing Indexが表示される。 それでは、これから、複合インデックスを用いてカバリングインデックスを活用することを考える。 Userのageとnameがの一覧が必要であれば、(age, name)の複合インデックスをUserテーブル

                                                                          MySQL カバリングインデックス - Qiita
                                                                        • Improve PostgreSQL performance using the pgstattuple extension | Amazon Web Services

                                                                          AWS Database Blog Improve PostgreSQL performance using the pgstattuple extension As businesses continue to generate and store vast amounts of data, the need for efficient and reliable database management systems becomes increasingly important. PostgreSQL, an open source relational database management system (RDBMS), has established itself as a powerful solution for handling complex data requiremen

                                                                            Improve PostgreSQL performance using the pgstattuple extension | Amazon Web Services
                                                                          • MySQL Shell for VS Code - Visual Studio Marketplace

                                                                            MySQL Shell for VS Code 1.19.4+9.2.0 The MySQL Shell for VS Code extension integrates the powerful feature set of MySQL Shell - an advanced MySQL client for developers and DBAs - directly into VS Code. It provides a modern notebook interface to interactively work with and execute SQL against MySQL databases and the HeatWave service, as well as a traditional SQL script-based workflow. Tutorials How

                                                                              MySQL Shell for VS Code - Visual Studio Marketplace
                                                                            • Amazon Aurora MySQLで(5.7 → 8.0)のインプレイスアップグレードができるようになりました | DevelopersIO

                                                                              はじめに こんにちは、福岡オフィス所属のAWS事業本部サービス部所属の井手です。 MySQL5.7のEOLが2023/10までの為(※Amazon Aurora MySQL バージョン2は現在 2024 年 2 月 29 日予定)、8.0へのバージョンアップを検討されている方も多くなってきているのではないでしょうか。 今回Amazon Aurora MySQLの5.7->8.0のバージョンアップについてインプレイスアップグレードがサポートされたのでご紹介します。 Amazon Aurora supports in-place upgrades from MySQL 5.7 to 8.0 これまで、Amazon Aurora MySQLのインプレイスアップグレードは以下の状況でしたが、今回のサポートされた事で8.0への移行方法の選択肢が増えました。 5.6->5.7(Amazon Auror

                                                                                Amazon Aurora MySQLで(5.7 → 8.0)のインプレイスアップグレードができるようになりました | DevelopersIO
                                                                              • Quick Peek: MySQL 8.2 and 8.0.35

                                                                                Oracle recently made their quarterly releases with MySQL 8.0.35 and MySQL 8.2. This blog post is a quick look at the release notes to see what these new versions bring to the community. You’ll want to keep an eye on the deprecations in particular because some long-accepted behavior, including wildcards, will change eventually. We get 83 and 50 bug fixes, respectively. We also get 17 and 33 depreca

                                                                                  Quick Peek: MySQL 8.2 and 8.0.35
                                                                                • AWS が Amazon Aurora PostgreSQL Optimized Reads を発表

                                                                                  AWS は、データベースインスタンスのメモリ容量を超える大規模なデータセットを使用するアプリケーション向けに、新しい r6gd インスタンスと r6id インスタンスで利用可能な新しい料金/パフォーマンス最適化機能である Amazon Aurora Optimized Reads for Aurora PostgreSQL を発表しました。この機能を使用すると、使用しない場合と比べ、クエリのレイテンシーが最大 8 分の 1 に短縮され、コストが最大 30% 削減されます。 Optimized Reads では、r6gd インスタンスと r6id インスタンスで用意されている NVMe ベースのローカル SSD ブロックレベルストレージを使用してエフェメラルデータが保存されるため、ネットワークストレージとの間におけるデータアクセス量が減り、データ読み取りのレイテンシーが短縮されてスループット

                                                                                    AWS が Amazon Aurora PostgreSQL Optimized Reads を発表

                                                                                  新着記事