This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | |
|QUERY PLAN | | |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | |
|Limit (cost=0.09..552.94 rows=51 width=452) (actual time=157.297..480.580 rows=51 loops=1) | | |
| -> Index Scan Backward using bell_notification_history_pkey on bell_notification_history bnh1_0 (cost=0.09..89735.69 rows=8278 width=452) (actual time=157.296..480.567 rows=51 loops=1)| | |
| Filter: (manager_id = 91092) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Декомпозиция | |
Создание аккаунта | |
1. Первый шаг (создание аккаунта с вводом пароля) | |
[tms-api] мутация создания voximp интеграциии 0,5 | |
[tms-webcall] ручка создания аккаунта + консьюмер настройки (+ новый сервис) 2 | |
[tms-api] резолвер интеграции voximplant 0,5 | |
[tms-webcall] ручка получения аккаунта - 0,5 | |
2. Второй шаг верификация | |
[tms-api] добавление в резолвер интеграции данных выдача урла верификации - 0,25 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
+-----------+-----------------------+-------------------+--------------------------------+-------+-------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------+-------------------------------------------------------+------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------+------------------------+----------------------+----------------------+------------------------+ | |
|service |timestamp |observed_timestamp |trace_id |span_id|severity_text|body |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import argparse | |
import csv | |
import os.path | |
MAX_AVAILABLE_SIZE = 10_000_000 | |
def read_vacancies(vacancies_file_path): | |
if not vacancies_file_path: | |
return {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. Накатить версию эластика с установленным плагином | |
https://jira.hh.ru/browse/HH-245087 | |
cd /opt/deploy && git fetch && git co HH-245087 | |
ansible-playbook -vv -i /opt/deploy/testenv -i /opt/deploy/extenv -i /opt/deploy/public/playbooks/roles/search/search_inventory_test.py -e '@//opt/deploy/secure/utils/common_vars.json' -e '{"container_state": "restarted"}' --skip-tags=production-only,resolv --tags=all --limit='all:!skip-hosts' /opt/deploy/playbooks/tms-elasticsearch-teststands.yml | |
2. Создать новый индекс persons | |
Задача на эксп, на стенде можно сделать через команду | |
curl -XPUT "http://tms17.pyn.ru:7600/persons" -H 'Content-Type: application/json' -d' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import argparse | |
import csv | |
import os.path | |
MAX_AVAILABLE_SIZE = 10_000_000 | |
def main(file_path, output_directory_path): | |
header_row, data_rows = read_file_data(file_path) | |
vacancy_sizes = get_vacancy_rows_sizes(data_rows) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import argparse | |
import csv | |
import os.path | |
MAX_AVAILABLE_SIZE = 10_000_000 | |
def main(file_path, output_directory_path): | |
header_row, vacancy_rows, fields_index = read_file_data(file_path) | |
vacancy_sizes = get_vacancy_rows_sizes(vacancy_rows) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import argparse | |
import csv | |
import os.path | |
MAX_AVAILABLE_SIZE = 10_000_000 | |
def main(file_path, output_directory_path): | |
header_row, vacancy_rows, fields_index = read_file_data(file_path) | |
vacancy_sizes = get_vacancy_rows_sizes(vacancy_rows) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import argparse | |
import csv | |
import os.path | |
MAX_AVAILABLE_SIZE = 10_000_000 | |
def main(file_path, output_directory_path): | |
header_row, vacancy_rows, fields_index = read_file_data(file_path) | |
vacancy_sizes = get_vacancy_rows_sizes(vacancy_rows) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl -XDELETE "http://localhost:7600/person" |
NewerOlder