Reasons and countermeasures for KEDA ScaledJob pods not being automatically deleted

In KEDA's ScaledJob, when the number exceeds the number specified by `successfulJobsHistoryLimit`, completed jobs will be deleted, but for some reason, the pods created by Job are not deleted. ```go

Complementing kaggle's titanic missing values and creating features

# Introduction Last time, I looked at Titanic's train data to see what features are related to survival rate. Last time: [Data analysis before kaggle's titanic feature generation](https://qiita.com/

Steps to change partition including Linux system area and boot area

# What to prepare ### GParted Live etc. Since the partition including the system area of the OS cannot be changed while the OS is booting, another OS must be booted and the partition must be change

Error resolution during Oracle installation "Error starting the target'irman ioracle idrdactl idrdalsnr idrdaproc'in the Make file'/home/oracle/database/rdbms/lib/ins_rdbms.mk'."

When installing Oracle 18c on CentOS 7 <font color = "Red"> <b> Error starting target'irman ioracle idrdactl idrdalsnr idrdaproc' for Make file'/home/oracle/database/rdbms/lib/ins_rdbms.mk'. See'/tm

Run Rotrics DexArm with python API

Now that we have Rotrics DexArm, let's run it with the python API. I use [Rotrics Studio](https://www.rotrics.com/pages/download) to adjust the arm position. ## environment * Windows10 * python 3

How to build Hello, World on #Nix

A note on how to build a program using Nix. ## Basic flow An overview of the basic build flow. First, create a `default.nix` file in your project directory. ```shell > mkdir myproject && cd mypr

PyAudio sample

This is a sample of PyAudio. recording #### **`record.py`** ```py #! /usr/bin/python # -*- coding: utf-8 -*- # # record.py # # Oct/02/2020 # ------------------------------------------------

Fedora 33 beta install

I have installed Fedora 33 beta. I didn't really like Fedora 32 in the first place I didn't have much chance to use it ... I immediately jumped at the news of the 33 Beta announcement (laughs) !

[Python] Memo about functions

** split function ** Separate and list character strings containing numbers, alphabets, symbols, etc. ```python test = orange,apple,banana,strawberry URL = https://aaaa/bbbb/cccc/dddd #The li

I tried to solve the soma cube with python

## Lottery 1.First of all 2. What is Soma Cube? 3. Past story 4. Ingenuity To improve processing speed 5. Difficulties To determine success 6. About algorithm and source code 7. Finally ## I

How to install graph-tool on macOS

# Introduction This article summarizes how to install the network analysis library [graph-tool](https://graph-tool.skewed.de/). This library is similar to [networkx](https://github.com/networkx) and

Create a virtual environment with conda in Python

# Introduction I stumbled upon using a virtual environment in Python, so I'll leave it as a note. Also, I would like to summarize the points that I did not understand well when using the virtual envi

How to deal with the problem that the current directory moves when Python is executed from Atom

You can run Python on Atom using atom-runner, one of Atom's packages. However, since the current directory at runtime becomes the project folder, the current directory changes depending on the open f

Let's try gRPC with Go and Docker

** * This article was created on November 7, 2019 [Let's try gRPC with Go and Docker --LiBz Tech Blog](https://tech.libinc.co.jp/entry/2019/11/07/111548 ) Is the same as ** # Introduction Hello! I'

I made a Python module to translate comment outs

## Introduction As the title suggests, I made a module that translates comment outs in the source file. Please see github or PyPi for how to use it. https://github.com/koboriakira/translate-comme

Deep Learning with Shogi AI on Mac and Google Colab Chapter 9

[TOP PAGE](https://qiita.com/kazunoriri/items/d7875d7f1121edcc807a) # Learning technique SGD lr = 0.01 ![image.png](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/485337/bfa3283b-2039-

Compare the speed of Python append and map

I will reprint what I wrote for the company ## Purpose Check what the difference between the processing speed and memory usage of the code you wrote first (using append) and the code pointed out in

Until you create an Ubuntu boot USB on your Macbook and install Ubuntu on your Thinkpad

## Introduction I mainly use Mac, but I want to use Linux soon I bought a Thinkpad X230 at Mercari. I'm going to put Ubuntu on this machine, so I'll leave a memorandum ## What to prepare ### hard

[Python memo] Be careful when creating a two-dimensional array (list of lists)

## 0. Problem __ Rows (n1) and columns (n2) are entered in the first row, and n2 columns. Or # are entered in the second and subsequent rows. Store the character strings on the second and subsequen

Ruby expert learned the basic grammar of Go language

# Overview Six months after learning Ruby, I wanted to learn another language, so I touched Go a little. # Difference between Ruby and Go (FizzBuzz) When solving the FizzBuzz problem with Ruby,

How to make an interactive CLI tool in Golang

Create an interactive CLI tool with golang. When you hit the command, it waits for input and Loop infinitely until you enter the appropriate value. ## Required packages - bufio - os ## Sample c

from sklearn.datasets import fetch_mldata-> fetch_openml

# background An event that occurred when I was trying to cluster with t-SNE and was fishing various sample codes I was coding with reference to this - https://towardsdatascience.com/visualising-hig

Hashing data in R and Python

The other day, I was asked to anonymize at work and had a lot of trouble. In the first place, most of the data was anonymized at the time of receiving the data, and almost no data was received that

[EDA super basic] Plotly and dynamic visualization [python3, table, bar, box, violin, joy]

python==3.8 plotly==4.10.0 # Show head The usual ```python import plotly.express as px df = px.data.tips() df.head() ``` ![image.png](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/

COCO'S Breakfast Buffet List PDF Converted to CSV

# Introduction [COCO'S breakfast buffet list store list Get PDF file and convert to CSV](https://qiita.com//dk4130523/items/b03be4a43afa606cb01b) For reference, I converted to PDF with camelot, data

AtCoder's greenery was far away

# Introduction It turned green in AtCoder. ![image.png](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/555125/07bb8aee-2db8-66d7-5e5e-ea597010cee4.png) You can find the color level fe

Unable to bind to interface error when using apollo federation with gqlgen

When I tried using gqlgen to use Apollo Federation for microservices, I got a ʻunable to bind to interface` error on` go run github.com/99designs/gqlgen`. I was mapping a go struct to a schema, and

Change the output without touching the code using Argparse

This time, I improved the mosaic automatic generation program that I made last time. There are quite a few types of Cascade detectors, so I'm wondering which one to use and which value is the best f

Python asynchronous processing ~ Full understanding of async and await ~

# About `Future` When you perform a time-consuming calculation in Python and want to get the result, you usually put the process into a function and get it as the return value when you execute the f

Data analysis before kaggle's titanic feature generation

# Introduction I tried to predict the survivors of the Titanic, which is a tutorial of kaggle. ** This time, instead of building a machine learning model to predict the probability of survival, we