投稿時間:2023-07-27 18:25:23 RSSフィード2023-07-27 18:00 分まとめ(28件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
ROBOT ロボスタ 産総研が「量子・AI融合技術ビジネス開発グローバル研究センター」を設立 量子コンピュータと既存AIの相互補完を促進 https://robotstart.info/2023/07/27/aist-g-quat.html 産総研が「量子・AI融合技術ビジネス開発グローバル研究センター」を設立量子コンピュータと既存AIの相互補完を促進シェアツイートはてブ国立研究開発法人産業技術総合研究所産総研は、年月日に新たに「量子・AI融合技術ビジネス開発グローバル研究センター」を設立した。 2023-07-27 08:24:33
IT ITmedia 総合記事一覧 [ITmedia News] セガアカウントにリスト型攻撃、「PSO2:NGS」で確認 パスワードの使いまわしに注意喚起 https://www.itmedia.co.jp/news/articles/2307/27/news159.html itmedia 2023-07-27 17:37:00
IT ITmedia 総合記事一覧 [ITmedia News] 真夏の夜、エアコンは「つけっぱなし」でいい 電気代は一晩20円ちょっと https://www.itmedia.co.jp/news/articles/2307/27/news157.html itmedia 2023-07-27 17:30:00
IT ITmedia 総合記事一覧 [ITmedia News] “非IT業界”の人向け「AI・ChatGPTとの“業務上”の付き合い方」 IIJが無料公開 https://www.itmedia.co.jp/news/articles/2307/27/news154.html chatgpt 2023-07-27 17:15:00
IT 情報システムリーダーのためのIT情報専門サイト IT Leaders PFU、工場に向いたネットワーク可視化装置「iNetSec FC」を強化、管理対象機器の設置場所を写真で登録可能に | IT Leaders https://it.impress.co.jp/articles/-/25155 今回の機能強化では、ネットワーク接続機器の情報として、機器の写真を登録できるようにした。 2023-07-27 17:42:00
python Pythonタグが付けられた新着投稿 - Qiita ラズパイとLCDディスプレイでお天気ディスプレイを作る https://qiita.com/Tomonobu3110/items/40fd60a14a93bd2bfc2c raspberrypi 2023-07-27 17:48:52
python Pythonタグが付けられた新着投稿 - Qiita pickleファイルの中身をVSCode上で確認しよう ~ vscode-pydata-viewerを使いこなす ~ https://qiita.com/take_me/items/d613072460e727e41cb7 vscodepydatavi 2023-07-27 17:10:44
海外TECH DEV Community Apache APISIX without etcd https://dev.to/apisix/apache-apisix-without-etcd-221f Apache APISIX without etcdetcd is an excellent key value distributed database used internally by Kubernetes and managed by the CNCF It s a great option and that s the reason why Apache APISIX uses it too Yet it s not devoid of issues First some mention scalability but one can expect this from a distributed data store that values consistency Another issue may be the need for more familiarity with etcd It s relatively new so your Ops team may need help operating it correctly while having decades of operating MySQL or Postgres Finally only a few etcd users are aware that it lacks maintainers In the last few months primary maintainers G L Amazon announcement and S B Red Hat have stopped actively participating in the project This leaves the project with only one active and two occasionally reviewing maintainers M S Google P T Google both are relatively new to the project month and year of tenure and S P Z IBM Other maintainers are either dormant or have very minimal activity over the last six months The project is effectively unmaintained emphasis mine Google Groups of Kubernetes Steering Committee March For all those reasons you may prefer to use a standard SQL database with Apache APISIX In this post I ll show how you can use MySQL The kine projectIt would be a lot of effort if each product had to introduce an abstraction layer and different adapters for both etcd and other databases kine is a project that aims to offer a translation step between etcd calls and other implementations Kine is an etcdshim that translates etcd API to SQLitePostgresMySQLNATS JetstreamFeaturesCan be ran standalone so any ks not just Ks can use KineImplements a subset of etcdAPI not usable at all for general purpose etcd Translates etcdTX calls into the desired API Create Update Delete Kine Kine is not etcd In essence kine is a Go library that translates etcd calls to the datastore you want among those implemented Yet using kine directly is a non trivial effort Fortunately api the company that gave Apache APISIX to the Apache Software Foundation provides a component already focused on APISIX usage ETCD adapterETCD adapter wraps kine to be APISIX specific ETCD Adapter mimics the ETCD V APIs best effort It incorporates the kine as the Server side implementation and it develops a totally in memory watchable backend Not all features in ETCD V APIs supported this is designed for Apache APISIX so it s inherently not a generic solution ETCD adapterTwo things of note At the moment of this writing the adapter supports either local in memory storage or MySQLIt s available as an embeddable library but also as a standalone componentTherefore we can design our architecture as the following DemoLet s implement the above architecture with an additional admin UI over MySQL I ll use Docker Compose version services apisix image apache apisix debian volumes config yaml usr local apisix conf config yaml ro ports depends on etcd adapter restart always etcd adapter build etcd adapter volumes adapter yml etcd adapter conf config yaml ro depends on mysql restart always mysql image bitnami mysql ports environment MYSQL ROOT PASSWORD root MYSQL USER etcd MYSQL PASSWORD etcd MYSQL DATABASE apisix adminer image adminer standalone ports environment ADMINER DEFAULT SERVER mysql depends on mysqlLatest version of Apache APISIX yeah To avoid any failure with dependencies between containers restart until it works Kubernetes s manifests would involve health checksapi ai still needs to provide a container We need to build from the source codeOverride the default configuration file with a context specific oneThe regular MySQL image didn t work for me Let s take the one from BitnamiAdminer formerly known as PHP myAdmin will help to visualize the database stateETCD adapter s configuration looks like this server host port log level infodatasource type mysql mysql host mysql port username etcd password etcd database apisixBind any IP since Docker will assign a random oneImplementation type The default is btree we need to change it As configured in the docker compose yml fileFinally here s Apache APISIX configuration deployment admin allow admin etcd host http etcd adapter Use this etcd instance which is the adapter TestingNow that we are set let s test our system by creating a route curl H X API KEY eddcfffadbcf X PUT d methods GET uris get upstream nodes httpbin org http localhost apisix admin routes We can now get it curl H X API KEY eddcfffadbcf http localhost apisix admin routes We can also check via the Adminer interface that it has been persisted via MySQL Unfortunately we need to stop at this point Getting all routes doesn t work curl H X API KEY eddcfffadbcf http localhost apisix admin routes header revision message Key not found Worse using the route fails curl localhost get error msg Route Not Found Conclusionetcd is an excellent piece of infrastructure Kubernetes uses but there might be better choices in some contexts Worse it might become a security threat in the future or is already one because of the lack of maintenance Being able to move away from etcd is a considerable benefit kine offers an etcd compatible facade and multiple implementations Using kine with Apache APISIX requires some adaptation effort already done in ETCD Adapter Currently ETCD Adapter is not feature complete to say the least and requires more love That s why it was not donated to the Apache Foundation yet If you re a Go developer and are interested in the project feel free to subscribe to the Apache APISIX mailing list and or join our Slack to offer your help The complete source code for this post can be found on GitHub ajavageek apisix mysql To go further KineETCD Adapter Goodbye etcd Hello PostgreSQL Running Kubernetes with an SQL Database Originally published at A Java Geek on July rd 2023-07-27 08:40:43
医療系 医療介護 CBnews 東京のコロナ入院患者増「注視する必要がある」-発熱患者の増加で救急医療に負荷も https://www.cbnews.jp/news/entry/20230727173656 入院患者 2023-07-27 17:48:00
医療系 医療介護 CBnews 認知症の人の視点重視し医療・行政が一体支援-島根県が計画の取り組み状況や今後の方向性公表 https://www.cbnews.jp/news/entry/20230727162351 介護保険 2023-07-27 17:01:00
金融 JPX マーケットニュース [東証]監理銘柄(確認中)の指定:(株)ビジョナリーホールディングス https://www.jpx.co.jp/news/1023/20230727-11.html 監理銘柄 2023-07-27 17:10:00
金融 金融庁ホームページ 金融庁の災害用備蓄食品において提供可能となる食品に関する情報を公表しました。 https://www.fsa.go.jp/choutatu/choutatu_j/choutatsu_saigaisyokuhin.html 食品 2023-07-27 10:00:00
金融 金融庁ホームページ 「ESG評価・データ提供機関に係る行動規範」の受入れを表明した評価機関等リストについて公表しました。 https://www.fsa.go.jp/news/r5/singi/20230727.html 評価 2023-07-27 10:00:00
ニュース BBC News - Home Sinéad O'Connor: Tributes flow for Irish singer dead at 56 https://www.bbc.co.uk/news/entertainment-arts-66321090?at_medium=RSS&at_campaign=KARANGA irish 2023-07-27 08:25:40
ニュース BBC News - Home British Gas: Anger as energy bill change leads to record profits https://www.bbc.co.uk/news/business-66315117?at_medium=RSS&at_campaign=KARANGA bills 2023-07-27 08:23:33
ニュース BBC News - Home Ukraine war: Western armour struggles against Russian defences https://www.bbc.co.uk/news/world-europe-66306150?at_medium=RSS&at_campaign=KARANGA front 2023-07-27 08:04:52
ニュース BBC News - Home Co-op warns rising crime could create 'no-go' areas for shops https://www.bbc.co.uk/news/business-66323140?at_medium=RSS&at_campaign=KARANGA areas 2023-07-27 08:46:35
ニュース BBC News - Home Myanmar Aung San Suu Kyi moved out of jail to house arrest https://www.bbc.co.uk/news/world-asia-66323190?at_medium=RSS&at_campaign=KARANGA sentence 2023-07-27 08:48:41
ニュース BBC News - Home Niger soldiers declare coup on national TV https://www.bbc.co.uk/news/world-africa-66320895?at_medium=RSS&at_campaign=KARANGA country 2023-07-27 08:01:35
ニュース BBC News - Home E-bike battery fires prompt call for better regulation https://www.bbc.co.uk/news/technology-66304564?at_medium=RSS&at_campaign=KARANGA approval 2023-07-27 08:10:54
ニュース BBC News - Home Women's World Cup: Lucy Bronze happy to take 1-0 as Lionesses seek last 16 https://www.bbc.co.uk/sport/football/66290755?at_medium=RSS&at_campaign=KARANGA Women x s World Cup Lucy Bronze happy to take as Lionesses seek last England defender Lucy Bronze says it would not matter if they won the Women s World Cup with scorelines in every game 2023-07-27 08:43:06
ニュース BBC News - Home Women's World Cup: England captain Millie Bright on her football motivations https://www.bbc.co.uk/sport/av/football/66323428?at_medium=RSS&at_campaign=KARANGA Women x s World Cup England captain Millie Bright on her football motivationsMillie Bright opens up about her experiences with childhood illness being made England captain and what drives the Lionesses ahead of Friday s game against Denmark 2023-07-27 08:10:28
IT 週刊アスキー 美食シーフードで心身を癒やす ヒルトン福岡シーホークにて「Heal & Rejuvenate~リカバリーの美食ビュッフェ~」9月29日~12月14日開催 https://weekly.ascii.jp/elem/000/004/147/4147154/ healamprejuvenate 2023-07-27 17:45:00
IT 週刊アスキー 日常使いしやすいアイテムおよそ300種が登場! 京王百貨店新宿店「リサとガスパールPOP UP SHOP」開催 https://weekly.ascii.jp/elem/000/004/147/4147153/ popupshop 2023-07-27 17:30:00
IT 週刊アスキー PC『ガンダムネットワーク大戦』でイベントバトル「激突!戦士、再び…」が開催! https://weekly.ascii.jp/elem/000/004/147/4147190/ 開催期間 2023-07-27 17:25:00
IT 週刊アスキー TP-Link、縦置き型Wi-Fi 6ルーター「Archer AX73V」Amazon限定の高コスパモデル https://weekly.ascii.jp/elem/000/004/147/4147168/ amazon 2023-07-27 17:15:00
IT 週刊アスキー 4KチューナーレスTV・4K対応TVと壁よせスタンドとのセット4モデル https://weekly.ascii.jp/elem/000/004/147/4147170/ bridge 2023-07-27 17:30:00
IT 週刊アスキー 楽天ペイメント、あらゆるキャッシュレス決済に対応するオールインワン決済端末「楽天ペイ ターミナル」 https://weekly.ascii.jp/elem/000/004/147/4147158/ 取り扱い 2023-07-27 17:15:00

コメント

このブログの人気の投稿

投稿時間:2021-06-17 05:05:34 RSSフィード2021-06-17 05:00 分まとめ(1274件)

投稿時間:2021-06-20 02:06:12 RSSフィード2021-06-20 02:00 分まとめ(3871件)

投稿時間:2020-12-01 09:41:49 RSSフィード2020-12-01 09:00 分まとめ(69件)