• 點部落
  • 首頁
  • RSS
    • 登入

RiCo技術農場

後續文章將發佈在https://medium.com/ricos-note

2018-04-15

[SQL Server] AlwaysOn with HAproxy

  • 1061
  • 0
  • AlwaysOn
  • 2018-04-16

這篇來看看我如何在AlwaysOn中使用HAproxy,看看是否可以更有效利用Readable secondary。

...繼續閱讀 »
  • SQL2017
  • SQLServer_HA
  • HAproxy
  • KeepAlived
2018-04-14

[CentOS] Configure a high available load-balancer

  • 2465
  • 0
  • CentOS
  • 2018-04-16

這篇我將使用keepAlived達到Load-Balancing的高可用性

 

...繼續閱讀 »
  • CentOS_Admin
  • KeepAlived
  • HAproxy
2018-04-14

[CentOS] Install and tuning HAproxy1.8

  • 3722
  • 0
  • CentOS
  • 2018-04-16

我們將使用HAProxy當我們的Load-Balaning,雖然沒有L4/L7來的猛,但CP值絕對是讓人滿意的

 

...繼續閱讀 »
  • CentOS_Admin
  • HAproxy
2018-04-11

[SQL Server] Config SQL Server 2017 availability group on Windows

  • 860
  • 0
  • AlwaysOn

SQL Server 2017設定AG和SQL 2014/2016大同小異,差異部分就是Linux 平台專屬

...繼續閱讀 »
  • SQL2017
  • SQLServer_HA
2018-04-10

[netCore] Filter

  • 1615
  • 0
  • netCore

篩選條件可以方便讓我們針對request processing pipeline之前或之後進行額外的邏輯處理。

...繼續閱讀 »
  • C#
  • NetCore
2018-04-07

[netCore] how to capture data of coreprofiler then store data in sql server

  • 560
  • 0
  • netCore
  • 2018-04-10

預設coreprofiler使用記憶體存放200筆資料,如果你想要關閉監控功能,只需把circularBufferSize設定0即可,

由於記憶體資源不太可能都讓coreprofiler獨佔,所以我們必須將這些效能監控資料存放至SQL Server,

方便後續讓我們進行效能分析。

...繼續閱讀 »
  • C#
  • NetCore
  • CoreProfiler
2018-04-06

[netCore] Logging Framework

  • 2850
  • 0
  • netCore

NetCore 2.0 內建Logging Famework,預設我們可以直接透過DI方式取得Logging物件,

這篇紀錄一下使用心得及如何整合Nlog。

...繼續閱讀 »
  • C#
  • NetCore
2018-04-02

[netCore] monitor performance of webapi via CoreProfiler

  • 1099
  • 0
  • netCore
  • 2018-04-07

NanoProfiler的NetCore版本就是CoreProfiler,使用方式和以前幾乎相同,

對code也不會有太大的侵入性

...繼續閱讀 »
  • C#
  • NetCore
  • CoreProfiler
2018-03-31

[SQL Server] Setup SQL Server 2017 Failover Cluster AA Mode

  • 3219
  • 0
  • SQL Server 2017

SQL Server 2017安裝SQL Server Failover Cluster基本上和SQL2014/16大同小異,

這篇記錄一下AA mode設定過程,但我得老實說,還是用AlwaysOn比較好啦。

...繼續閱讀 »
  • SQLServer_HA
  • SQL2017
2018-03-22

[netCore] MiddleWare

  • 1480
  • 0
  • netCore

這篇記錄閱讀NetCore中介軟體的心得整理

...繼續閱讀 »
  • C#
  • NetCore
2018-03-16

[netCore] DI Framework

  • 2903
  • 0
  • netCore
  • 2018-03-22

由於我們未來系統將使用netCore開發,整理一下今天閱讀netcore DI framework心得。

...繼續閱讀 »
  • NetCore
  • DI
  • C#
2018-03-12

[Docker] Build Redis Cluster with Sentinel via Docker

  • 1509
  • 0
  • Docker

這篇記錄,如何透過Docker建立一套Redis cluster with Sentinel。

...繼續閱讀 »
  • Docker
2018-03-09

[Jenkins] Automated Deploy with Docker

  • 1666
  • 0
  • Jenkins
  • 2018-03-09

上一篇我透過jenkins完成自動build、publish相關NetCore application(MyAPI),

同時也自動建立相對應kestrel web,這篇來看看如何使用docker來取代。

...繼續閱讀 »
  • CI/CD
  • Docker
  • Jenkins
  • NetCore
2018-03-07

[Docker] Install Docker and Docker Compose on CentOS 7

  • 1368
  • 0
  • Docker
  • 2018-03-08

透過docker建置測試環境一整個快速,這篇記錄如何安裝docker and docker compose on CentOS 7

...繼續閱讀 »
  • CentOS_Admin
  • Docker
2018-03-05

[Jenkins]Automated deploy

  • 1106
  • 0
  • Jenkins
  • 2018-03-07

這篇來看看如何透過Jenkins進行automated deploy to environment of integration Test

...繼續閱讀 »
  • CI/CD
  • Jenkins
2018-03-04

[CentOS]transfer files between windows and Linux via PSCP

  • 1965
  • 0
  • CentOS

近來,我常會在windows和Linux之間傳送檔案,列如一些config或assembly,

雖然vsFTPd也很好用,但臨時性需求總感覺有殺雞焉用牛刀。

...繼續閱讀 »
  • CentOS_Admin
2018-03-04

[Jenkins] Automated Testing

  • 2472
  • 0
  • Jenkins
  • 2018-03-05

這篇來看看如何讓Jenkins幫我們pull code、build和run Unit Test

...繼續閱讀 »
  • Jenkins
  • CI/CD
2018-03-02

[Jenkins] Install Jenkins on CentOS7

  • 1224
  • 0
  • Jenkins
  • 2018-03-04

隨者DevOps文化興起,deploy和IT有了很大的改變,

CI tool算是一項很重要的基石,這篇我將實際介紹如何安裝和基本設定Jenkins在CentOS7。

...繼續閱讀 »
  • Jenkins
  • CI/CD
2018-02-25

[SQL Server]comparison of In-memory OLTP differences between SQL2016 and SQL2017

  • 633
  • 0
  • SQL Server 2017
  • 2018-02-27

SQL2017針對In-Memory OLTP又改善不少,這篇來整理一下和SQL2016的比較。

...繼續閱讀 »
  • In-Memory
  • SQL2017
  • SQLSERVER_TSQL
2018-02-20

[SQL Server]Adaptive query processing

  • 818
  • 0
  • SQL Server 2017

我在SQL效能調校課堂上有提到幾個常見查詢效能issues,

如不正確join type、謹慎使用MTVFs和低/高估記憶體大小,

現在SQL Server 2017可以更有效率自我修正這些效能問題。

...繼續閱讀 »
  • SQL2017
  • SQLSERVER_Performance
  • 2
  • 3
  • 4

RiCo技術農場粉絲頁

標籤雲

系列文章

最新留言

  • 服務規範
  • 聯絡我們
© 2025 點部落 Ver. 2022.9.27.1
電魔小鋪有限公司 製作、維運;登豐數位科技 提供資安檢測