ablog

不器用で落着きのない技術者のメモ

2020-12-15から1日間の記事一覧

メモ

インストール 各種パッケージ $ sudo yum -y install htop strace perf iotop pidstat git gcc dstat sysdig sysdig でシステムワイドに実行回数が多いシステムコールを調べる - ablog 0x.tools Amazon Linux 2 に Tanel Poder の 0x.tools をインストールす…

AWS Security Hub のチェック結果を AWS CLI で取得して変更する

AWS

AWS Security Hub のチェック結果を AWS CLI で取得したい場合は get-findings で取得できる。 $ aws securityhub get-findings $ aws securityhub get-findings| jq -r '.Findings[] | @text "\(.Title)\t\(.Compliance.Status)\t\(.LastObservedAt)”’ さら…

Athena で Parquet にクエリすると "DELTA_BINARY_PACKED is only supported for type INT32"

AWS

事象 以下のエラーメッセージが表示される。 GENERIC_INTERNAL_ERROR: Encoding DELTA_BINARY_PACKED is only supported for type INT32 参考 Fix Parquet Encoding check with DELTA_BINARY_PACKED support INT64 by zhenxiao · Pull Request #334 · presto…

parquet-tools を macOS にインストールする

インストール JDK Java SE Development Kit 11- - Downloads から macOS Installer をダウンロード、jdk-11.0.9_osx-x64_bin.dmg を実行してウイザードに従ってインストール。 parquet-tools $ brew install parquet-tools 使ってみる $ parquet-tools meta …